-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvalidator_test.go
More file actions
489 lines (435 loc) · 11.6 KB
/
validator_test.go
File metadata and controls
489 lines (435 loc) · 11.6 KB
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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
package validator
import (
"strings"
"testing"
)
type testStructNotNull struct {
Field string `validate:"notNull"`
}
type testStructEmail struct {
Field string `validate:"email"`
}
type testStructNumeric struct {
Field string `validate:"numeric"`
}
type testStructContainsString struct {
Field string `validate:"containsString"`
}
type testStructContainsNumber struct {
Field string `validate:"containsNumber"`
}
type testStructContainsSpecialChars struct {
Field string `validate:"containsSpecialChars"`
}
type testStructEqString struct {
Field string `validate:"eq=10"`
}
type testStructGtString struct {
Field string `validate:"gt=10"`
}
type testStructLtString struct {
Field string `validate:"lt=10"`
}
type testStructGteString struct {
Field string `validate:"gte=10"`
}
type testStructLteString struct {
Field string `validate:"lte=10"`
}
type testStructNeString struct {
Field string `validate:"ne=10"`
}
type testStructEqNumber struct {
Field int `validate:"eq=10"`
}
type testStructGtNumber struct {
Field int `validate:"gt=10"`
}
type testStructLtNumber struct {
Field int `validate:"lt=10"`
}
type testStructGteNumber struct {
Field int `validate:"gte=10"`
}
type testStructLteNumber struct {
Field int `validate:"lte=10"`
}
type testStructNeNumber struct {
Field int `validate:"ne=10"`
}
type testStructContains struct {
Field string `validate:"contains=engineer"`
}
type testStructNotContains struct {
Field string `validate:"notContains=war"`
}
type testStructBegin struct {
Field string `validate:"begin=peace"`
}
type testStructNotBegin struct {
Field string `validate:"notBegin=war"`
}
type testStructEnd struct {
Field string `validate:"end=peace"`
}
type testStructNotEnd struct {
Field string `validate:"notEnd=war"`
}
func TestNotNull(t *testing.T) {
tests := []struct {
testStruct testStructNotNull
expected bool
}{
{testStructNotNull{}, false},
{testStructNotNull{""}, false},
{testStructNotNull{"not null value"}, true},
}
for _, test := range tests {
if ok, _ := Validate(&test.testStruct); ok != test.expected {
t.Errorf("Test Failed for NotNull. Expected: %v Output: %v", test.expected, ok)
}
}
}
func TestEmail(t *testing.T) {
tests := []struct {
testStruct testStructEmail
expected bool
}{
{testStructEmail{}, false},
{testStructEmail{"notemail"}, false},
{testStructEmail{"example@example.com"}, true},
}
for _, test := range tests {
if ok, _ := Validate(&test.testStruct); ok != test.expected {
t.Errorf("Test Failed for Email. Expected: %v Output: %v", test.expected, ok)
}
}
}
func TestNumeric(t *testing.T) {
tests := []struct {
testStruct testStructNumeric
expected bool
}{
{testStructNumeric{"not numeric 123"}, false},
{testStructNumeric{"10"}, true},
}
for _, test := range tests {
if ok, _ := Validate(&test.testStruct); ok != test.expected {
t.Errorf("Test Failed for Numeric. Expected: %v Output: %v", test.expected, ok)
}
}
}
func TestContainsString(t *testing.T) {
tests := []struct {
testStruct testStructContainsString
expected bool
}{
{testStructContainsString{"123123"}, false},
{testStructContainsString{"123123asd"}, true},
}
for _, test := range tests {
if ok, _ := Validate(&test.testStruct); ok != test.expected {
t.Errorf("Test Failed for containsString. Expected: %v Output: %v", test.expected, ok)
}
}
}
func TestContainsNumber(t *testing.T) {
tests := []struct {
testStruct testStructContainsNumber
expected bool
}{
{testStructContainsNumber{"asdasd"}, false},
{testStructContainsNumber{"asdasd123"}, true},
}
for _, test := range tests {
if ok, _ := Validate(&test.testStruct); ok != test.expected {
t.Errorf("Test Failed for containsNumber. Expected: %v Output: %v", test.expected, ok)
}
}
}
func TestContainsSpecialChars(t *testing.T) {
tests := []struct {
testStruct testStructContainsSpecialChars
expected bool
}{
{testStructContainsSpecialChars{"asd123"}, false},
{testStructContainsSpecialChars{"asd123?"}, true},
}
for _, test := range tests {
if ok, _ := Validate(&test.testStruct); ok != test.expected {
t.Errorf("Test Failed for containsSpecialChars. Expected: %v Output: %v", test.expected, ok)
}
}
}
func TestEqString(t *testing.T) {
tests := []struct {
testStruct testStructEqString
expected bool
}{
{testStructEqString{"asdasdasd"}, false},
{testStructEqString{"asdasdasda"}, true},
}
for _, test := range tests {
if ok, _ := Validate(&test.testStruct); ok != test.expected {
t.Errorf("Test Failed for eqString. Expected: %v Output: %v", test.expected, ok)
}
}
}
func TestEqNumber(t *testing.T) {
tests := []struct {
testStruct testStructEqNumber
expected bool
}{
{testStructEqNumber{120}, false},
{testStructEqNumber{10}, true},
}
for _, test := range tests {
if ok, _ := Validate(&test.testStruct); ok != test.expected {
t.Errorf("Test Failed for eqNumber. Expected: %v Output: %v", test.expected, ok)
}
}
}
func TestGtString(t *testing.T) {
tests := []struct {
testStruct testStructGtString
expected bool
}{
{testStructGtString{"asdasdasda"}, false},
{testStructGtString{"asdasdasdaa"}, true},
}
for _, test := range tests {
if ok, _ := Validate(&test.testStruct); ok != test.expected {
t.Errorf("Test Failed for gtString. Expected: %v Output: %v", test.expected, ok)
}
}
}
func TestGtNumber(t *testing.T) {
tests := []struct {
testStruct testStructGtNumber
expected bool
}{
{testStructGtNumber{10}, false},
{testStructGtNumber{11}, true},
}
for _, test := range tests {
if ok, _ := Validate(&test.testStruct); ok != test.expected {
t.Errorf("Test Failed for gtNumber. Expected: %v Output: %v", test.expected, ok)
}
}
}
func TestLtString(t *testing.T) {
tests := []struct {
testStruct testStructLtString
expected bool
}{
{testStructLtString{"asdasdasda"}, false},
{testStructLtString{"asdasdasd"}, true},
}
for _, test := range tests {
if ok, _ := Validate(&test.testStruct); ok != test.expected {
t.Errorf("Test Failed for ltString. Expected: %v Output: %v", test.expected, ok)
}
}
}
func TestLtNumber(t *testing.T) {
tests := []struct {
testStruct testStructLtNumber
expected bool
}{
{testStructLtNumber{10}, false},
{testStructLtNumber{9}, true},
}
for _, test := range tests {
if ok, _ := Validate(&test.testStruct); ok != test.expected {
t.Errorf("Test Failed for ltNumber. Expected: %v Output: %v", test.expected, ok)
}
}
}
func TestGteString(t *testing.T) {
tests := []struct {
testStruct testStructGteString
expected bool
}{
{testStructGteString{"asdasdasd"}, false},
{testStructGteString{"asdasdasda"}, true},
}
for _, test := range tests {
if ok, _ := Validate(&test.testStruct); ok != test.expected {
t.Errorf("Test Failed for gteString. Expected: %v Output: %v", test.expected, ok)
}
}
}
func TestGteNumber(t *testing.T) {
tests := []struct {
testStruct testStructGteNumber
expected bool
}{
{testStructGteNumber{9}, false},
{testStructGteNumber{10}, true},
}
for _, test := range tests {
if ok, _ := Validate(&test.testStruct); ok != test.expected {
t.Errorf("Test Failed for gteNumber. Expected: %v Output: %v", test.expected, ok)
}
}
}
func TestLteString(t *testing.T) {
tests := []struct {
testStruct testStructLteString
expected bool
}{
{testStructLteString{"asdasdasdaa"}, false},
{testStructLteString{"asdasdasda"}, true},
}
for _, test := range tests {
if ok, _ := Validate(&test.testStruct); ok != test.expected {
t.Errorf("Test Failed for lteString. Expected: %v Output: %v", test.expected, ok)
}
}
}
func TestLteNumber(t *testing.T) {
tests := []struct {
testStruct testStructLteNumber
expected bool
}{
{testStructLteNumber{11}, false},
{testStructLteNumber{10}, true},
}
for _, test := range tests {
if ok, _ := Validate(&test.testStruct); ok != test.expected {
t.Errorf("Test Failed for lteNumber. Expected: %v Output: %v", test.expected, ok)
}
}
}
func TestNeString(t *testing.T) {
tests := []struct {
testStruct testStructNeString
expected bool
}{
{testStructNeString{"asdasdasda"}, false},
{testStructNeString{"a"}, true},
}
for _, test := range tests {
if ok, _ := Validate(&test.testStruct); ok != test.expected {
t.Errorf("Test Failed for neString. Expected: %v Output: %v", test.expected, ok)
}
}
}
func TestNeNumber(t *testing.T) {
tests := []struct {
testStruct testStructNeNumber
expected bool
}{
{testStructNeNumber{10}, false},
{testStructNeNumber{1}, true},
}
for _, test := range tests {
if ok, _ := Validate(&test.testStruct); ok != test.expected {
t.Errorf("Test Failed for neNumber. Expected: %v Output: %v", test.expected, ok)
}
}
}
func TestContains(t *testing.T) {
tests := []struct {
testStruct testStructContains
expected bool
}{
{testStructContains{"hello"}, false},
{testStructContains{"helloengineerhello"}, true},
}
for _, test := range tests {
if ok, _ := Validate(&test.testStruct); ok != test.expected {
t.Errorf("Test Failed for contains. Expected: %v Output: %v", test.expected, ok)
}
}
}
func TestNotContains(t *testing.T) {
tests := []struct {
testStruct testStructNotContains
expected bool
}{
{testStructNotContains{"world war"}, false},
{testStructNotContains{"world peace"}, true},
}
for _, test := range tests {
if ok, _ := Validate(&test.testStruct); ok != test.expected {
t.Errorf("Test Failed for notContains. Expected: %v Output: %v", test.expected, ok)
}
}
}
func TestBegin(t *testing.T) {
tests := []struct {
testStruct testStructBegin
expected bool
}{
{testStructBegin{"war at home,war in the world"}, false},
{testStructBegin{"peace at home,peace in the world"}, true},
}
for _, test := range tests {
if ok, _ := Validate(&test.testStruct); ok != test.expected {
t.Errorf("Test Failed for begin. Expected: %v Output: %v", test.expected, ok)
}
}
}
func TestNotBegin(t *testing.T) {
tests := []struct {
testStruct testStructNotBegin
expected bool
}{
{testStructNotBegin{"war at home,war in the world"}, false},
{testStructNotBegin{"peace at home,peace in the world"}, true},
}
for _, test := range tests {
if ok, _ := Validate(&test.testStruct); ok != test.expected {
t.Errorf("Test Failed for begin. Expected: %v Output: %v", test.expected, ok)
}
}
}
func TestEnd(t *testing.T) {
tests := []struct {
testStruct testStructEnd
expected bool
}{
{testStructEnd{"world war"}, false},
{testStructEnd{"world peace"}, true},
}
for _, test := range tests {
if ok, _ := Validate(&test.testStruct); ok != test.expected {
t.Errorf("Test Failed for end. Expected: %v Output: %v", test.expected, ok)
}
}
}
func TestNotEnd(t *testing.T) {
tests := []struct {
testStruct testStructNotEnd
expected bool
}{
{testStructNotEnd{"world war"}, false},
{testStructNotEnd{"world peace"}, true},
}
for _, test := range tests {
if ok, _ := Validate(&test.testStruct); ok != test.expected {
t.Errorf("Test Failed for notEnd. Expected: %v Output: %v", test.expected, ok)
}
}
}
type testStructCustomValidation struct {
Field string `validate:"containsAmp"`
}
func TestAddCustomValidation(t *testing.T) {
AddCustomValidation("containsAmp", func(field Field, value string) (bool, string) {
if ok := strings.Contains(field.Value.String(), "&"); !ok {
return ok, "Field must contain '&'"
}
return true, ""
})
var struct1 testStructCustomValidation
var struct2 testStructCustomValidation
struct1.Field = "hello world"
struct2.Field = "hello world&universe"
test1, _ := Validate(&struct1)
test2, _ := Validate(&struct2)
if test1 || !test2 {
t.Error("Test Failed: AddCustomValidation")
}
}