mirror of
https://github.com/volatiletech/authboss.git
synced 2024-12-04 10:24:52 +02:00
f12f10fa43
- This change was necessary because multi-tenancy sites could not use authboss properly.
135 lines
2.8 KiB
Go
135 lines
2.8 KiB
Go
package authboss
|
|
|
|
import (
|
|
"database/sql"
|
|
"errors"
|
|
"io/ioutil"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
)
|
|
|
|
func TestAuthBossInit(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
ab := New()
|
|
ab.LogWriter = ioutil.Discard
|
|
err := ab.Init()
|
|
if err != nil {
|
|
t.Error("Unexpected error:", err)
|
|
}
|
|
}
|
|
|
|
func TestAuthBossCurrentUser(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
ab := New()
|
|
ab.LogWriter = ioutil.Discard
|
|
ab.Storer = mockStorer{"joe": Attributes{"email": "john@john.com", "password": "lies"}}
|
|
ab.SessionStoreMaker = func(_ http.ResponseWriter, _ *http.Request) ClientStorer {
|
|
return mockClientStore{SessionKey: "joe"}
|
|
}
|
|
ab.CookieStoreMaker = func(_ http.ResponseWriter, _ *http.Request) ClientStorer {
|
|
return mockClientStore{}
|
|
}
|
|
|
|
if err := ab.Init(); err != nil {
|
|
t.Error("Unexpected error:", err)
|
|
}
|
|
|
|
rec := httptest.NewRecorder()
|
|
req, _ := http.NewRequest("GET", "localhost", nil)
|
|
|
|
userStruct := ab.CurrentUserP(rec, req)
|
|
us := userStruct.(*mockUser)
|
|
|
|
if us.Email != "john@john.com" || us.Password != "lies" {
|
|
t.Error("Wrong user found!")
|
|
}
|
|
}
|
|
|
|
func TestAuthbossUpdatePassword(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
ab := New()
|
|
session := mockClientStore{}
|
|
cookies := mockClientStore{}
|
|
ab.SessionStoreMaker = func(_ http.ResponseWriter, _ *http.Request) ClientStorer {
|
|
return session
|
|
}
|
|
ab.CookieStoreMaker = func(_ http.ResponseWriter, _ *http.Request) ClientStorer {
|
|
return cookies
|
|
}
|
|
|
|
called := false
|
|
ab.Callbacks.After(EventPasswordReset, func(ctx *Context) error {
|
|
called = true
|
|
return nil
|
|
})
|
|
|
|
user1 := struct {
|
|
Password string
|
|
}{}
|
|
user2 := struct {
|
|
Password sql.NullString
|
|
}{}
|
|
|
|
r, _ := http.NewRequest("GET", "http://localhost", nil)
|
|
|
|
called = false
|
|
err := ab.UpdatePassword(nil, r, "newpassword", &user1, func() error { return nil })
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
if len(user1.Password) == 0 {
|
|
t.Error("Password not updated")
|
|
}
|
|
if !called {
|
|
t.Error("Callbacks should have been called.")
|
|
}
|
|
|
|
called = false
|
|
err = ab.UpdatePassword(nil, r, "newpassword", &user2, func() error { return nil })
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
if !user2.Password.Valid || len(user2.Password.String) == 0 {
|
|
t.Error("Password not updated")
|
|
}
|
|
if !called {
|
|
t.Error("Callbacks should have been called.")
|
|
}
|
|
|
|
called = false
|
|
oldPassword := user1.Password
|
|
err = ab.UpdatePassword(nil, r, "", &user1, func() error { return nil })
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
if user1.Password != oldPassword {
|
|
t.Error("Password not updated")
|
|
}
|
|
if called {
|
|
t.Error("Callbacks should not have been called")
|
|
}
|
|
}
|
|
|
|
func TestAuthbossUpdatePasswordFail(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
ab := New()
|
|
|
|
user1 := struct {
|
|
Password string
|
|
}{}
|
|
|
|
anErr := errors.New("AnError")
|
|
err := ab.UpdatePassword(nil, nil, "update", &user1, func() error { return anErr })
|
|
if err != anErr {
|
|
t.Error("Expected an specific error:", err)
|
|
}
|
|
}
|