Clean up token tests with helper functions

This commit is contained in:
Daniel Krol 2022-06-23 20:33:49 -04:00
parent 9ece00c128
commit 157f1233d7

View file

@ -9,6 +9,23 @@ import (
"orblivion/lbry-id/wallet" "orblivion/lbry-id/wallet"
) )
func expectTokenExists(t *testing.T, s *Store, token auth.TokenString, expected auth.AuthToken) {
gotToken, err := s.GetToken(token)
if err != nil {
t.Fatalf("Unexpected error in GetToken: %+v", err)
}
if gotToken == nil || !reflect.DeepEqual(*gotToken, expected) {
t.Fatalf("token: \n expected %+v\n got: %+v", expected, *gotToken)
}
}
func expectTokenNotExists(t *testing.T, s *Store, token auth.TokenString) {
gotToken, err := s.GetToken(token)
if gotToken != nil || err != ErrNoToken {
t.Fatalf("Expected ErrNoToken. token: %+v err: %+v", gotToken, err)
}
}
// Test insertToken, using GetToken as a helper // Test insertToken, using GetToken as a helper
// Try insertToken twice with the same user and device, error the second time // Try insertToken twice with the same user and device, error the second time
func TestStoreInsertToken(t *testing.T) { func TestStoreInsertToken(t *testing.T) {
@ -26,10 +43,7 @@ func TestStoreInsertToken(t *testing.T) {
expiration := time.Now().Add(time.Hour * 24 * 14).UTC() expiration := time.Now().Add(time.Hour * 24 * 14).UTC()
// Get a token, come back empty // Get a token, come back empty
gotToken, err := s.GetToken(authToken1.Token) expectTokenNotExists(t, &s, authToken1.Token)
if gotToken != nil || err != ErrNoToken {
t.Fatalf("Expected ErrNoToken. token: %+v err: %+v", gotToken, err)
}
// Put in a token // Put in a token
if err := s.insertToken(&authToken1, expiration); err != nil { if err := s.insertToken(&authToken1, expiration); err != nil {
@ -41,13 +55,7 @@ func TestStoreInsertToken(t *testing.T) {
authToken1Expected.Expiration = &expiration authToken1Expected.Expiration = &expiration
// Get and confirm the token we just put in // Get and confirm the token we just put in
gotToken, err = s.GetToken(authToken1.Token) expectTokenExists(t, &s, authToken1.Token, authToken1Expected)
if err != nil {
t.Fatalf("Unexpected error in GetToken: %+v", err)
}
if gotToken == nil || !reflect.DeepEqual(*gotToken, authToken1Expected) {
t.Fatalf("token: \n expected %+v\n got: %+v", authToken1Expected, *gotToken)
}
// Try to put a different token, fail because we already have one // Try to put a different token, fail because we already have one
authToken2 := authToken1 authToken2 := authToken1
@ -58,13 +66,7 @@ func TestStoreInsertToken(t *testing.T) {
} }
// Get the same *first* token we successfully put in // Get the same *first* token we successfully put in
gotToken, err = s.GetToken(authToken1.Token) expectTokenExists(t, &s, authToken1.Token, authToken1Expected)
if err != nil {
t.Fatalf("Unexpected error in GetToken: %+v", err)
}
if gotToken == nil || !reflect.DeepEqual(*gotToken, authToken1Expected) {
t.Fatalf("token: expected %+v, got: %+v", authToken1Expected, gotToken)
}
} }
// Test updateToken, using GetToken and insertToken as helpers // Test updateToken, using GetToken and insertToken as helpers
@ -85,10 +87,7 @@ func TestStoreUpdateToken(t *testing.T) {
expiration := time.Now().Add(time.Hour * 24 * 14).UTC() expiration := time.Now().Add(time.Hour * 24 * 14).UTC()
// Try to get a token, come back empty because we're just starting out // Try to get a token, come back empty because we're just starting out
gotToken, err := s.GetToken(authTokenUpdate.Token) expectTokenNotExists(t, &s, authTokenUpdate.Token)
if gotToken != nil || err != ErrNoToken {
t.Fatalf("Expected ErrNoToken. token: %+v err: %+v", gotToken, err)
}
// Try to update the token - fail because we don't have an entry there in the first place // Try to update the token - fail because we don't have an entry there in the first place
if err := s.updateToken(&authTokenUpdate, expiration); err != ErrNoToken { if err := s.updateToken(&authTokenUpdate, expiration); err != ErrNoToken {
@ -96,10 +95,7 @@ func TestStoreUpdateToken(t *testing.T) {
} }
// Try to get a token, come back empty because the update attempt failed to do anything // Try to get a token, come back empty because the update attempt failed to do anything
gotToken, err = s.GetToken(authTokenUpdate.Token) expectTokenNotExists(t, &s, authTokenUpdate.Token)
if gotToken != nil || err != ErrNoToken {
t.Fatalf("Expected ErrNoToken. token: %+v err: %+v", gotToken, err)
}
// Put in a different token, just so we have something to test that // Put in a different token, just so we have something to test that
// updateToken overwrites it // updateToken overwrites it
@ -120,19 +116,10 @@ func TestStoreUpdateToken(t *testing.T) {
authTokenUpdateExpected.Expiration = &expiration authTokenUpdateExpected.Expiration = &expiration
// Get and confirm the token we just put in // Get and confirm the token we just put in
gotToken, err = s.GetToken(authTokenUpdate.Token) expectTokenExists(t, &s, authTokenUpdate.Token, authTokenUpdateExpected)
if err != nil {
t.Fatalf("Unexpected error in GetToken: %+v", err)
}
if gotToken == nil || !reflect.DeepEqual(*gotToken, authTokenUpdateExpected) {
t.Fatalf("token: \n expected %+v\n got: %+v", authTokenUpdateExpected, *gotToken)
}
// Fail to get the token we previously inserted, because it's now been overwritten // Fail to get the token we previously inserted, because it's now been overwritten
gotToken, err = s.GetToken(authTokenInsert.Token) expectTokenNotExists(t, &s, authTokenInsert.Token)
if gotToken != nil || err != ErrNoToken {
t.Fatalf("Expected ErrNoToken. token: %+v err: %+v", gotToken, err)
}
} }
// Test that a user can have two different devices. // Test that a user can have two different devices.
@ -160,20 +147,14 @@ func TestStoreSaveToken(t *testing.T) {
authToken_d2_1.Token = "seekrit-d2-1" authToken_d2_1.Token = "seekrit-d2-1"
// Try to get the tokens, come back empty because we're just starting out // Try to get the tokens, come back empty because we're just starting out
gotToken, err := s.GetToken(authToken_d1_1.Token) expectTokenNotExists(t, &s, authToken_d1_1.Token)
if gotToken != nil || err != ErrNoToken { expectTokenNotExists(t, &s, authToken_d2_1.Token)
t.Fatalf("Expected ErrNoToken. token: %+v err: %+v", gotToken, err)
}
gotToken, err = s.GetToken(authToken_d2_1.Token)
if gotToken != nil || err != ErrNoToken {
t.Fatalf("Expected ErrNoToken. token: %+v err: %+v", gotToken, err)
}
// Save Version 1 tokens for both devices // Save Version 1 tokens for both devices
if err = s.SaveToken(&authToken_d1_1); err != nil { if err := s.SaveToken(&authToken_d1_1); err != nil {
t.Fatalf("Unexpected error in SaveToken: %+v", err) t.Fatalf("Unexpected error in SaveToken: %+v", err)
} }
if err = s.SaveToken(&authToken_d2_1); err != nil { if err := s.SaveToken(&authToken_d2_1); err != nil {
t.Fatalf("Unexpected error in SaveToken: %+v", err) t.Fatalf("Unexpected error in SaveToken: %+v", err)
} }
@ -187,20 +168,8 @@ func TestStoreSaveToken(t *testing.T) {
} }
// Get and confirm the tokens we just put in // Get and confirm the tokens we just put in
gotToken, err = s.GetToken(authToken_d1_1.Token) expectTokenExists(t, &s, authToken_d1_1.Token, authToken_d1_1)
if err != nil { expectTokenExists(t, &s, authToken_d2_1.Token, authToken_d2_1)
t.Fatalf("Unexpected error in GetToken: %+v", err)
}
if gotToken == nil || !reflect.DeepEqual(*gotToken, authToken_d1_1) {
t.Fatalf("token: \n expected %+v\n got: %+v", authToken_d1_1, gotToken)
}
gotToken, err = s.GetToken(authToken_d2_1.Token)
if err != nil {
t.Fatalf("Unexpected error in GetToken: %+v", err)
}
if gotToken == nil || !reflect.DeepEqual(*gotToken, authToken_d2_1) {
t.Fatalf("token: expected %+v, got: %+v", authToken_d2_1, gotToken)
}
// Version 2 of the token for both devices // Version 2 of the token for both devices
authToken_d1_2 := authToken_d1_1 authToken_d1_2 := authToken_d1_1
@ -210,10 +179,10 @@ func TestStoreSaveToken(t *testing.T) {
authToken_d2_2.Token = "seekrit-d2-2" authToken_d2_2.Token = "seekrit-d2-2"
// Save Version 2 tokens for both devices // Save Version 2 tokens for both devices
if err = s.SaveToken(&authToken_d1_2); err != nil { if err := s.SaveToken(&authToken_d1_2); err != nil {
t.Fatalf("Unexpected error in SaveToken: %+v", err) t.Fatalf("Unexpected error in SaveToken: %+v", err)
} }
if err = s.SaveToken(&authToken_d2_2); err != nil { if err := s.SaveToken(&authToken_d2_2); err != nil {
t.Fatalf("Unexpected error in SaveToken: %+v", err) t.Fatalf("Unexpected error in SaveToken: %+v", err)
} }
@ -227,20 +196,8 @@ func TestStoreSaveToken(t *testing.T) {
} }
// Get and confirm the tokens we just put in // Get and confirm the tokens we just put in
gotToken, err = s.GetToken(authToken_d1_2.Token) expectTokenExists(t, &s, authToken_d1_2.Token, authToken_d1_2)
if err != nil { expectTokenExists(t, &s, authToken_d2_2.Token, authToken_d2_2)
t.Fatalf("Unexpected error in GetToken: %+v", err)
}
if gotToken == nil || !reflect.DeepEqual(*gotToken, authToken_d1_2) {
t.Fatalf("token: \n expected %+v\n got: %+v", authToken_d1_2, gotToken)
}
gotToken, err = s.GetToken(authToken_d2_2.Token)
if err != nil {
t.Fatalf("Unexpected error in GetToken: %+v", err)
}
if gotToken == nil || !reflect.DeepEqual(*gotToken, authToken_d2_2) {
t.Fatalf("token: expected %+v, got: %+v", authToken_d2_2, gotToken)
}
} }
// test GetToken using insertToken and updateToken as helpers (so we can set expiration timestamps) // test GetToken using insertToken and updateToken as helpers (so we can set expiration timestamps)