mirror of https://github.com/dexidp/dex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
436 lines
9.3 KiB
436 lines
9.3 KiB
package user |
|
|
|
import ( |
|
"net/url" |
|
"testing" |
|
"time" |
|
|
|
"github.com/coreos/go-oidc/jose" |
|
"github.com/jonboulle/clockwork" |
|
"github.com/kylelemons/godebug/pretty" |
|
|
|
"github.com/coreos/dex/repo" |
|
) |
|
|
|
type testFixtures struct { |
|
ur UserRepo |
|
pwr PasswordInfoRepo |
|
mgr *Manager |
|
clock clockwork.Clock |
|
} |
|
|
|
func makeTestFixtures() *testFixtures { |
|
f := &testFixtures{} |
|
f.clock = clockwork.NewFakeClock() |
|
|
|
f.ur = NewUserRepoFromUsers([]UserWithRemoteIdentities{ |
|
{ |
|
User: User{ |
|
ID: "ID-1", |
|
Email: "Email-1@example.com", |
|
}, |
|
RemoteIdentities: []RemoteIdentity{ |
|
{ |
|
ConnectorID: "local", |
|
ID: "1", |
|
}, |
|
}, |
|
}, { |
|
User: User{ |
|
ID: "ID-2", |
|
Email: "Email-2@example.com", |
|
EmailVerified: true, |
|
}, |
|
RemoteIdentities: []RemoteIdentity{ |
|
{ |
|
ConnectorID: "local", |
|
ID: "2", |
|
}, |
|
}, |
|
}, |
|
}) |
|
f.pwr = NewPasswordInfoRepoFromPasswordInfos([]PasswordInfo{ |
|
{ |
|
UserID: "ID-1", |
|
Password: []byte("password-1"), |
|
}, |
|
{ |
|
UserID: "ID-2", |
|
Password: []byte("password-2"), |
|
}, |
|
}) |
|
f.mgr = NewManager(f.ur, f.pwr, repo.InMemTransactionFactory, ManagerOptions{}) |
|
f.mgr.Clock = f.clock |
|
return f |
|
} |
|
|
|
func TestRegisterWithRemoteIdentity(t *testing.T) { |
|
tests := []struct { |
|
email string |
|
emailVerified bool |
|
rid RemoteIdentity |
|
err error |
|
}{ |
|
{ |
|
email: "email@example.com", |
|
emailVerified: false, |
|
rid: RemoteIdentity{ |
|
ConnectorID: "local", |
|
ID: "1234", |
|
}, |
|
err: nil, |
|
}, |
|
{ |
|
emailVerified: false, |
|
rid: RemoteIdentity{ |
|
ConnectorID: "local", |
|
ID: "1234", |
|
}, |
|
err: ErrorInvalidEmail, |
|
}, |
|
{ |
|
email: "email@example.com", |
|
emailVerified: false, |
|
rid: RemoteIdentity{ |
|
ConnectorID: "local", |
|
ID: "1", |
|
}, |
|
err: ErrorDuplicateRemoteIdentity, |
|
}, |
|
} |
|
|
|
for i, tt := range tests { |
|
f := makeTestFixtures() |
|
userID, err := f.mgr.RegisterWithRemoteIdentity( |
|
tt.email, |
|
tt.emailVerified, |
|
tt.rid) |
|
|
|
if tt.err != nil { |
|
if tt.err != err { |
|
t.Errorf("case %d: want=%q, got=%q", i, tt.err, err) |
|
} |
|
continue |
|
} |
|
|
|
usr, err := f.ur.Get(nil, userID) |
|
if err != nil { |
|
t.Errorf("case %d: err != nil: %q", i, err) |
|
} |
|
|
|
if usr.Email != tt.email { |
|
t.Errorf("case %d: user.Email: want=%q, got=%q", i, tt.email, usr.Email) |
|
} |
|
if usr.EmailVerified != tt.emailVerified { |
|
t.Errorf("case %d: user.EmailVerified: want=%v, got=%v", i, tt.emailVerified, usr.EmailVerified) |
|
} |
|
|
|
ridUSR, err := f.ur.GetByRemoteIdentity(nil, tt.rid) |
|
if err != nil { |
|
t.Errorf("case %d: err != nil: %q", i, err) |
|
} |
|
if diff := pretty.Compare(usr, ridUSR); diff != "" { |
|
t.Errorf("case %d: Compare(want, got) = %v", i, diff) |
|
} |
|
} |
|
} |
|
|
|
func TestRegisterWithPassword(t *testing.T) { |
|
tests := []struct { |
|
email string |
|
plaintext string |
|
err error |
|
}{ |
|
{ |
|
email: "email@example.com", |
|
plaintext: "secretpassword123", |
|
err: nil, |
|
}, |
|
{ |
|
plaintext: "secretpassword123", |
|
err: ErrorInvalidEmail, |
|
}, |
|
{ |
|
email: "email@example.com", |
|
err: ErrorInvalidPassword, |
|
}, |
|
} |
|
|
|
for i, tt := range tests { |
|
f := makeTestFixtures() |
|
connID := "connID" |
|
userID, err := f.mgr.RegisterWithPassword( |
|
tt.email, |
|
tt.plaintext, |
|
connID) |
|
|
|
if tt.err != nil { |
|
if tt.err != err { |
|
t.Errorf("case %d: want=%q, got=%q", i, tt.err, err) |
|
} |
|
continue |
|
} |
|
|
|
usr, err := f.ur.Get(nil, userID) |
|
if err != nil { |
|
t.Errorf("case %d: err != nil: %q", i, err) |
|
} |
|
|
|
if usr.Email != tt.email { |
|
t.Errorf("case %d: user.Email: want=%q, got=%q", i, tt.email, usr.Email) |
|
} |
|
if usr.EmailVerified != false { |
|
t.Errorf("case %d: user.EmailVerified: want=%v, got=%v", i, false, usr.EmailVerified) |
|
} |
|
|
|
ridUSR, err := f.ur.GetByRemoteIdentity(nil, RemoteIdentity{ |
|
ID: userID, |
|
ConnectorID: connID, |
|
}) |
|
if err != nil { |
|
t.Errorf("case %d: err != nil: %q", i, err) |
|
} |
|
if diff := pretty.Compare(usr, ridUSR); diff != "" { |
|
t.Errorf("case %d: Compare(want, got) = %v", i, diff) |
|
} |
|
|
|
pwi, err := f.pwr.Get(nil, userID) |
|
if err != nil { |
|
t.Errorf("case %d: err != nil: %q", i, err) |
|
} |
|
ident, err := pwi.Authenticate(tt.plaintext) |
|
if err != nil { |
|
t.Errorf("case %d: err != nil: %q", i, err) |
|
} |
|
if ident.ID != userID { |
|
t.Errorf("case %d: ident.ID: want=%q, got=%q", i, userID, ident.ID) |
|
} |
|
|
|
_, err = pwi.Authenticate(tt.plaintext + "WRONG") |
|
if err == nil { |
|
t.Errorf("case %d: want non-nil err", i) |
|
} |
|
} |
|
} |
|
|
|
func TestVerifyEmail(t *testing.T) { |
|
now := time.Now() |
|
issuer, _ := url.Parse("http://example.com") |
|
clientID := "myclient" |
|
callback := "http://client.example.com/callback" |
|
expires := time.Hour * 3 |
|
|
|
makeClaims := func(usr User) jose.Claims { |
|
return map[string]interface{}{ |
|
"iss": issuer.String(), |
|
"aud": clientID, |
|
ClaimEmailVerificationCallback: callback, |
|
ClaimEmailVerificationEmail: usr.Email, |
|
"exp": float64(now.Add(expires).Unix()), |
|
"sub": usr.ID, |
|
"iat": float64(now.Unix()), |
|
} |
|
} |
|
|
|
tests := []struct { |
|
evClaims jose.Claims |
|
wantErr bool |
|
}{ |
|
{ |
|
// happy path |
|
evClaims: makeClaims(User{ID: "ID-1", Email: "Email-1@example.com"}), |
|
}, |
|
{ |
|
// non-matching email |
|
evClaims: makeClaims(User{ID: "ID-1", Email: "Email-2@example.com"}), |
|
wantErr: true, |
|
}, |
|
{ |
|
// already verified email |
|
evClaims: makeClaims(User{ID: "ID-2", Email: "Email-2@example.com"}), |
|
wantErr: true, |
|
}, |
|
{ |
|
// non-existent user. |
|
evClaims: makeClaims(User{ID: "ID-UNKNOWN", Email: "noone@example.com"}), |
|
wantErr: true, |
|
}, |
|
} |
|
|
|
for i, tt := range tests { |
|
f := makeTestFixtures() |
|
cb, err := f.mgr.VerifyEmail(EmailVerification{tt.evClaims}) |
|
if tt.wantErr { |
|
if err == nil { |
|
t.Errorf("case %d: want non-nil err", i) |
|
} |
|
continue |
|
} |
|
|
|
if err != nil { |
|
t.Errorf("case %d: want err=nil got=%q", i, err) |
|
} |
|
|
|
if cb.String() != tt.evClaims[ClaimEmailVerificationCallback] { |
|
t.Errorf("case %d: want=%q, got=%q", i, cb.String(), |
|
tt.evClaims[ClaimEmailVerificationCallback]) |
|
} |
|
} |
|
} |
|
|
|
func TestChangePassword(t *testing.T) { |
|
now := time.Now() |
|
issuer, _ := url.Parse("http://example.com") |
|
clientID := "myclient" |
|
callback := "http://client.example.com/callback" |
|
expires := time.Hour * 3 |
|
password := "password-1" |
|
|
|
makeClaims := func(usrID, callback string) jose.Claims { |
|
return map[string]interface{}{ |
|
"iss": issuer.String(), |
|
"aud": clientID, |
|
ClaimPasswordResetCallback: callback, |
|
ClaimPasswordResetPassword: password, |
|
"exp": float64(now.Add(expires).Unix()), |
|
"sub": usrID, |
|
"iat": float64(now.Unix()), |
|
} |
|
} |
|
|
|
tests := []struct { |
|
pwrClaims jose.Claims |
|
newPassword string |
|
wantErr bool |
|
}{ |
|
{ |
|
// happy path |
|
pwrClaims: makeClaims("ID-1", callback), |
|
newPassword: "password-1.1", |
|
}, |
|
{ |
|
// happy path with no callback |
|
pwrClaims: makeClaims("ID-1", ""), |
|
newPassword: "password-1.1", |
|
}, |
|
{ |
|
// passwords don't match changed |
|
pwrClaims: makeClaims("ID-2", callback), |
|
newPassword: "password-1.1", |
|
wantErr: true, |
|
}, |
|
{ |
|
// user doesn't exist |
|
pwrClaims: makeClaims("ID-123", callback), |
|
newPassword: "password-1.1", |
|
wantErr: true, |
|
}, |
|
} |
|
|
|
for i, tt := range tests { |
|
f := makeTestFixtures() |
|
cb, err := f.mgr.ChangePassword(PasswordReset{tt.pwrClaims}, tt.newPassword) |
|
if tt.wantErr { |
|
if err == nil { |
|
t.Errorf("case %d: want non-nil err", i) |
|
} |
|
continue |
|
} |
|
|
|
if err != nil { |
|
t.Errorf("case %d: want err=nil got=%q", i, err) |
|
continue |
|
} |
|
|
|
var cbString string |
|
if cb != nil { |
|
cbString = cb.String() |
|
} |
|
if cbString != tt.pwrClaims[ClaimPasswordResetCallback] { |
|
t.Errorf("case %d: want=%q, got=%q", i, cb.String(), |
|
tt.pwrClaims[ClaimPasswordResetCallback]) |
|
} |
|
} |
|
} |
|
|
|
func TestCreateUser(t *testing.T) { |
|
tests := []struct { |
|
usr User |
|
hashedPW Password |
|
|
|
wantErr bool |
|
}{ |
|
{ |
|
usr: User{ |
|
DisplayName: "Bob Exampleson", |
|
Email: "bob@example.com", |
|
}, |
|
hashedPW: Password("I am a hash"), |
|
}, |
|
{ |
|
usr: User{ |
|
DisplayName: "Al Adminson", |
|
Email: "al@example.com", |
|
Admin: true, |
|
}, |
|
hashedPW: Password("I am a hash"), |
|
}, |
|
{ |
|
usr: User{ |
|
DisplayName: "Ed Emailless", |
|
}, |
|
hashedPW: Password("I am a hash"), |
|
wantErr: true, |
|
}, |
|
} |
|
|
|
for i, tt := range tests { |
|
f := makeTestFixtures() |
|
id, err := f.mgr.CreateUser(tt.usr, tt.hashedPW, "local") |
|
if tt.wantErr { |
|
if err == nil { |
|
t.Errorf("case %d: want non-nil err", i) |
|
} |
|
continue |
|
} |
|
if id == "" { |
|
t.Errorf("case %d: want non-empty id", i) |
|
} |
|
|
|
if err != nil { |
|
t.Errorf("case %d: unexpected err: %v", i, err) |
|
continue |
|
} |
|
|
|
gotUsr, err := f.ur.Get(nil, id) |
|
if err != nil { |
|
t.Errorf("case %d: unexpected err: %v", i, err) |
|
} |
|
|
|
tt.usr.ID = id |
|
tt.usr.CreatedAt = f.clock.Now() |
|
if diff := pretty.Compare(tt.usr, gotUsr); diff != "" { |
|
t.Errorf("case %d: Compare(want, got) = %v", i, diff) |
|
} |
|
|
|
pwi, err := f.pwr.Get(nil, id) |
|
if err != nil { |
|
t.Errorf("case %d: unexpected err: %v", i, err) |
|
} |
|
|
|
if string(pwi.Password) != string(tt.hashedPW) { |
|
t.Errorf("case %d: want=%q, got=%q", i, tt.hashedPW, pwi.Password) |
|
} |
|
|
|
ridUser, err := f.ur.GetByRemoteIdentity(nil, RemoteIdentity{ |
|
ID: id, |
|
ConnectorID: "local", |
|
}) |
|
if err != nil { |
|
t.Errorf("case %d: err != nil: %q", i, err) |
|
} |
|
if diff := pretty.Compare(gotUsr, ridUser); diff != "" { |
|
t.Errorf("case %d: Compare(want, got) = %v", i, diff) |
|
} |
|
} |
|
}
|
|
|