-
Notifications
You must be signed in to change notification settings - Fork 2
/
helper_test.go
266 lines (258 loc) · 4.95 KB
/
helper_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
package verifier
import (
"fmt"
"regexp"
"testing"
)
func Test_randomNumericString(t *testing.T) {
type args struct {
n int
}
tests := []struct {
name string
args args
}{
// TODO: Add test cases.
{
name: "10 digits",
args: args{
n: 10,
},
},
{
name: "5 digits",
args: args{
n: 5,
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
regexNumeric := regexp.MustCompile(fmt.Sprintf("^([0-9]+){%d}", tt.args.n))
got := randomNumericString(tt.args.n)
if !regexNumeric.MatchString(got) {
t.Fatalf("Expected %d character numeric string, got '%s'", tt.args.n, got)
}
})
}
}
func Test_randomString(t *testing.T) {
type args struct {
n int
}
tests := []struct {
name string
args args
}{
// TODO: Add test cases.
{
name: "10 characters",
args: args{
n: 10,
},
},
{
name: "5 characters",
args: args{
n: 5,
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
regexAlphaNumeric := regexp.MustCompile(fmt.Sprintf("^([0-9a-zA-Z]+){%d}", tt.args.n))
got := randomString(tt.args.n)
if !regexAlphaNumeric.MatchString(got) {
t.Fatalf("Expected %d character alpha numeric string, got '%s'", tt.args.n, got)
}
})
}
}
func Test_validateEmailAddress(t *testing.T) {
type args struct {
email string
}
tests := []struct {
name string
args args
wantErr bool
}{
// TODO: Add test cases.
{
name: "Valid email",
args: args{
email: "[email protected]",
},
wantErr: false,
},
{
name: "Invalid email - no '@'",
args: args{
email: "example.com",
},
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if err := validateEmailAddress(tt.args.email); (err != nil) != tt.wantErr {
t.Errorf("validateEmailAddress() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}
func TestEmailCallbackURL(t *testing.T) {
type args struct {
baseurl string
email string
secret string
}
tests := []struct {
name string
args args
want string
wantErr bool
}{
// TODO: Add test cases.
{
name: "Valid callback",
args: args{
baseurl: "https://example.com",
email: "[email protected]",
secret: "secret with special chars!@to be encoded",
},
want: "https://example.com?email=hello%40example.com&secret=secret+with+special+chars%21%40to+be+encoded",
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := EmailCallbackURL(tt.args.baseurl, tt.args.email, tt.args.secret)
if (err != nil) != tt.wantErr {
t.Errorf("EmailCallbackURL() error = %v, wantErr %v", err, tt.wantErr)
return
}
if got != tt.want {
t.Errorf("EmailCallbackURL() = %v, want %v", got, tt.want)
}
})
}
}
func Test_validateMobile(t *testing.T) {
type args struct {
mobile string
}
tests := []struct {
name string
args args
wantErr bool
}{
// TODO: Add test cases.
{
name: "valid mobile",
args: args{
mobile: "+919876543210",
},
wantErr: false,
},
{
name: "invalid mobile (special symbols)",
args: args{
mobile: "#919876543210",
},
wantErr: true,
},
{
name: "invalid mobile (lesser than 7)",
args: args{
mobile: "919875",
},
wantErr: true,
},
{
name: "invalid mobile (greater than 24)",
args: args{
mobile: "919876543919876543919876543",
},
wantErr: true,
},
{
name: "invalid mobile (alpha numeric)",
args: args{
mobile: "91a87654321",
},
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if err := validateMobile(tt.args.mobile); (err != nil) != tt.wantErr {
t.Errorf("validateMobile() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}
func Test_emailBody(t *testing.T) {
type args struct {
callbackURL string
expiry string
}
tests := []struct {
name string
args args
want string
}{
// TODO: Add test cases.
{
name: "valid mail body",
args: args{
callbackURL: "https://example.com",
expiry: "expiry_date",
},
want: fmt.Sprintf(
DefaultEmailOTPPayload,
"https://example.com",
"expiry_date",
),
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := emailBody(tt.args.callbackURL, tt.args.expiry); got != tt.want {
t.Errorf("emailBody() = %v, want %v", got, tt.want)
}
})
}
}
func Test_smsBody(t *testing.T) {
type args struct {
secret string
expiry string
}
tests := []struct {
name string
args args
want string
}{
// TODO: Add test cases.
{
name: "valid body",
args: args{
secret: "<otp>",
expiry: "[expires at]",
},
want: fmt.Sprintf(
DefaultSMSOTPPayload,
"<otp>",
"[expires at]",
),
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := smsBody(tt.args.secret, tt.args.expiry); got != tt.want {
t.Errorf("smsBody() = %v, want %v", got, tt.want)
}
})
}
}