-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathuser_test.go
136 lines (121 loc) · 3.85 KB
/
user_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
package mfa
import (
"context"
"net/http"
"testing"
"github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/aws-sdk-go-v2/service/dynamodb"
"github.com/aws/aws-sdk-go-v2/service/dynamodb/types"
)
func (ms *MfaSuite) Test_User_DeleteCredential() {
baseConfigs := getDBConfig(ms)
users := getTestWebauthnUsers(ms, baseConfigs)
testUser0, testUser1, testUser2 := users[0], users[1], users[2]
dbParams := &dynamodb.ScanInput{
TableName: aws.String(baseConfigs.EnvConfig.WebauthnTable),
}
tests := []struct {
name string
user DynamoUser
credID string
wantErrContains string
wantStatus int
wantCredIDs [][]byte
dontWantCredID []byte
verifyFn func(*dynamodb.ScanOutput)
}{
{
name: "no webauthn credentials",
user: testUser0,
credID: "noMatchingCredID",
wantStatus: http.StatusNotFound,
wantErrContains: "No webauthn credentials available.",
verifyFn: func(results *dynamodb.ScanOutput) {
found := false
for i := range results.Items {
if results.Items[i]["encryptedAppId"].(*types.AttributeValueMemberS).Value == "someEncryptedAppId" {
found = true
}
}
ms.True(found)
},
},
{
name: "legacy u2f credential",
user: testUser0,
credID: LegacyU2FCredID,
wantStatus: http.StatusNoContent,
verifyFn: func(results *dynamodb.ScanOutput) {
for i := range results.Items {
ms.Equal("", results.Items[i]["encryptedAppId"].(*types.AttributeValueMemberS).Value)
}
},
},
{
name: "one credential but bad credential ID",
user: testUser1,
credID: "badCredID",
wantErrContains: "Credential not found with id: badCredID",
wantCredIDs: [][]byte{testUser1.Credentials[0].ID},
wantStatus: http.StatusNotFound,
},
{
name: "one credential gets deleted",
user: testUser1,
credID: hashAndEncodeKeyHandle(testUser1.Credentials[0].ID),
wantStatus: http.StatusNoContent,
dontWantCredID: testUser1.Credentials[0].ID,
},
{
name: "two credentials and one is deleted",
user: testUser2,
credID: hashAndEncodeKeyHandle(testUser2.Credentials[0].ID),
wantStatus: http.StatusNoContent,
wantCredIDs: [][]byte{testUser2.Credentials[1].ID},
dontWantCredID: testUser2.Credentials[0].ID,
verifyFn: func(results *dynamodb.ScanOutput) {
ms.Equal(int32(3), results.Count)
want := []string{testUser0.ID, testUser1.ID, testUser2.ID}
got := make([]string, len(want))
for i := range want {
got[i] = results.Items[i]["uuid"].(*types.AttributeValueMemberS).Value
}
ms.ElementsMatch(got, want)
},
},
}
for _, tt := range tests {
ms.T().Run(tt.name, func(t *testing.T) {
status, err := tt.user.DeleteCredential(tt.credID)
ms.Equal(tt.wantStatus, status, "incorrect http status")
if tt.wantErrContains != "" {
ms.Error(err, "expected an error but didn't get one")
ms.Contains(err.Error(), tt.wantErrContains, "incorrect error")
} else {
ms.NoError(err, "unexpected error")
}
ctx := context.Background()
results, err := baseConfigs.Storage.client.Scan(ctx, dbParams)
ms.NoError(err, "failed to scan storage for results")
if tt.verifyFn != nil {
tt.verifyFn(results)
}
gotUser := DynamoUser{
ID: tt.user.ID,
ApiKey: tt.user.ApiKey,
Store: baseConfigs.Storage,
}
gotUser.Load()
ms.Len(gotUser.Credentials, len(tt.wantCredIDs), "incorrect remaining credential ids")
for i, w := range tt.wantCredIDs {
ms.Equal(string(w), string(gotUser.Credentials[i].ID), "incorrect credential id")
}
if len(tt.dontWantCredID) == 0 {
return
}
for _, g := range gotUser.Credentials {
ms.NotEqual(string(tt.dontWantCredID), string(g.ID), "unexpected credential id")
}
})
}
}