-
Notifications
You must be signed in to change notification settings - Fork 2
/
verifier_test.go
331 lines (318 loc) · 6.93 KB
/
verifier_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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
// Package verifier is used for validation & verification of email, sms etc.
package verifier
import (
"errors"
"fmt"
"reflect"
"regexp"
"testing"
"time"
"github.com/naughtygopher/verifier/awsses"
"github.com/naughtygopher/verifier/awssns"
)
type mockstore struct {
data map[string]*Request
}
func (ms *mockstore) Create(ver *Request) (*Request, error) {
key := fmt.Sprintf(
"%s-%s",
ver.Type,
ver.Recipient,
)
ms.data[key] = ver
return ver, nil
}
func (ms *mockstore) ReadLastPending(ctype CommType, recipient string) (*Request, error) {
key := fmt.Sprintf(
"%s-%s",
ctype,
recipient,
)
req, ok := ms.data[key]
if !ok {
return nil, errors.New("not found")
}
return req, nil
}
func (ms *mockstore) Update(verID string, ver *Request) (*Request, error) {
key := fmt.Sprintf(
"%s-%s",
ver.Type,
ver.Recipient,
)
ms.data[key] = ver
return ver, nil
}
func TestConfig_init(t *testing.T) {
type fields struct {
MailCfg *awsses.Config
MobileCfg *awssns.Config
MaxVerifyAttempts int
EmailOTPExpiry time.Duration
MobileOTPExpiry time.Duration
EmailCallbackURL string
DefaultFromEmail string
DefaultEmailSub string
}
tests := []struct {
name string
fields fields
}{
// TODO: Add test cases.
{
name: "max attempts lesser than 1",
fields: fields{
MaxVerifyAttempts: 0,
},
},
{
name: "max attempts equal to 1",
fields: fields{
MaxVerifyAttempts: 1,
},
},
{
name: "max attempts greater than 1",
fields: fields{
MaxVerifyAttempts: 2,
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
cfg := &Config{
MaxVerifyAttempts: tt.fields.MaxVerifyAttempts,
EmailOTPExpiry: tt.fields.EmailOTPExpiry,
MobileOTPExpiry: tt.fields.MobileOTPExpiry,
EmailCallbackURL: tt.fields.EmailCallbackURL,
DefaultFromEmail: tt.fields.DefaultFromEmail,
DefaultEmailSub: tt.fields.DefaultEmailSub,
}
cfg.init()
fmt.Println(
"tt.fields.MaxVerifyAttempts < 1 && cfg.MaxVerifyAttempts != 3",
tt.fields.MaxVerifyAttempts,
tt.fields.MaxVerifyAttempts < 1,
cfg.MaxVerifyAttempts != 3,
)
if tt.fields.MaxVerifyAttempts < 1 && cfg.MaxVerifyAttempts != 3 {
t.Fatalf("Expected max attempts 3, got %d", cfg.MaxVerifyAttempts)
} else if tt.fields.MaxVerifyAttempts >= 1 {
if tt.fields.MaxVerifyAttempts != cfg.MaxVerifyAttempts {
t.Fatalf(
"Expected max attempts %d, got %d",
tt.fields.MaxVerifyAttempts,
cfg.MaxVerifyAttempts,
)
}
}
})
}
}
func TestVerifier_validate(t *testing.T) {
now := time.Now()
validExpiry := now.Add(time.Minute * 30)
invalidExpiry := now.Add(-(time.Minute * 30))
type fields struct {
cfg *Config
emailHandler emailService
mobileHandler mobileService
store store
}
type args struct {
secret string
verreq *Request
}
tests := []struct {
name string
fields fields
args args
wantErr bool
}{
// TODO: Add test cases.
{
name: "valid",
fields: fields{
cfg: &Config{
MaxVerifyAttempts: 3,
},
},
args: args{
secret: "helloworld",
verreq: &Request{
Secret: "helloworld",
SecretExpiry: &validExpiry,
},
},
wantErr: false,
},
{
name: "exceeded attempts",
fields: fields{
cfg: &Config{
MaxVerifyAttempts: 1,
},
},
args: args{
secret: "helloworld",
verreq: &Request{
Secret: "helloworld",
SecretExpiry: &validExpiry,
Attempts: 2,
},
},
wantErr: true,
},
{
name: "invalid expiry",
fields: fields{
cfg: &Config{
MaxVerifyAttempts: 3,
},
},
args: args{
secret: "helloworld",
verreq: &Request{
Secret: "helloworld",
SecretExpiry: &invalidExpiry,
},
},
wantErr: true,
},
{
name: "invalid secret",
fields: fields{
cfg: &Config{
MaxVerifyAttempts: 3,
},
},
args: args{
secret: "helloworld",
verreq: &Request{
Secret: "helloworld-2",
SecretExpiry: &validExpiry,
},
},
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
ver := &Verifier{
cfg: tt.fields.cfg,
emailHandler: tt.fields.emailHandler,
mobileHandler: tt.fields.mobileHandler,
store: tt.fields.store,
}
if err := ver.validate(tt.args.secret, tt.args.verreq); (err != nil) != tt.wantErr {
t.Errorf("Verifier.validate() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}
func Test_newID(t *testing.T) {
regex := regexp.MustCompile("^[0-9a-zA-Z]{32}$")
tests := []struct {
name string
want string
}{
// TODO: Add test cases.
{
name: "alpha numeric 32 char long random string",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := newID()
if !regex.MatchString(got) {
t.Fatalf("Expected 32 chr long alpha numeric random string, got '%s'", got)
}
})
}
}
func TestRequest_setStatus(t *testing.T) {
type fields struct {
ID string
Type CommType
Sender string
Recipient string
Data map[string]string
Secret string
SecretExpiry *time.Time
Attempts int
CommStatus []CommStatus
Status verificationStatus
CreatedAt *time.Time
UpdatedAt *time.Time
}
type args struct {
status interface{}
err error
}
tests := []struct {
name string
fields fields
args args
}{
// TODO: Add test cases.
{
name: "with status",
args: args{
status: "hello world",
},
fields: fields{},
},
{
name: "with error",
args: args{
status: nil,
err: errors.New("some error"),
},
fields: fields{},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
v := &Request{
ID: tt.fields.ID,
Type: tt.fields.Type,
Sender: tt.fields.Sender,
Recipient: tt.fields.Recipient,
Data: tt.fields.Data,
Secret: tt.fields.Secret,
SecretExpiry: tt.fields.SecretExpiry,
Attempts: tt.fields.Attempts,
CommStatus: tt.fields.CommStatus,
Status: tt.fields.Status,
CreatedAt: tt.fields.CreatedAt,
UpdatedAt: tt.fields.UpdatedAt,
}
v.setStatus(tt.args.status, tt.args.err)
if tt.args.err != nil {
got := v.CommStatus[0]
if got.Status != "failed" {
t.Fatalf("expected status 'failed', got '%s'", got.Status)
}
wantData := map[string]interface{}{
"error": tt.args.err.Error(),
}
if !reflect.DeepEqual(wantData, got.Data) {
t.Fatalf("expected '%v', got '%v'", wantData, got.Data)
}
return
}
if tt.args.status != nil {
got := v.CommStatus[0]
if got.Status != "queued" {
t.Fatalf("expected status 'queued', got '%s'", got.Status)
}
wantData := map[string]interface{}{
"status": tt.args.status,
}
if !reflect.DeepEqual(wantData, got.Data) {
t.Fatalf("expected '%v', got '%v'", wantData, got.Data)
}
}
})
}
}