-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequired_test.go
574 lines (547 loc) · 12.9 KB
/
required_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
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
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
package validator_test
import (
"reflect"
"testing"
"time"
"github.com/go-jstmpl/go-jsvalidator"
"github.com/gocraft/dbr"
)
func TestNewRequiredValidator(t *testing.T) {
type Case struct {
Message string
Definition validator.RequiredValidatorDefinition
Error error
}
cases := []Case{
{
Message: "single element",
Definition: validator.RequiredValidatorDefinition{Required: []string{"foo"}},
Error: nil,
},
{
Message: "multi elements",
Definition: validator.RequiredValidatorDefinition{Required: []string{"foo", "bar"}},
Error: nil,
},
{
Message: "empty slice",
Definition: validator.RequiredValidatorDefinition{Required: []string{}},
Error: validator.RequiredDefinitionEmptyError,
},
{
Message: "duplicated elements",
Definition: validator.RequiredValidatorDefinition{Required: []string{"foo", "foo"}},
Error: validator.RequiredDefinitionDuplicationError,
},
{
Message: "duplicated elements at first and second",
Definition: validator.RequiredValidatorDefinition{Required: []string{"foo", "foo", "bar"}},
Error: validator.RequiredDefinitionDuplicationError,
},
{
Message: "duplicated elements at first and end",
Definition: validator.RequiredValidatorDefinition{Required: []string{"foo", "bar", "foo"}},
Error: validator.RequiredDefinitionDuplicationError,
},
{
Message: "duplicated elements at second end end",
Definition: validator.RequiredValidatorDefinition{Required: []string{"bar", "foo", "foo"}},
Error: validator.RequiredDefinitionDuplicationError,
},
{
Message: "duplicated all elements",
Definition: validator.RequiredValidatorDefinition{Required: []string{"foo", "foo", "foo"}},
Error: validator.RequiredDefinitionDuplicationError,
},
}
for _, c := range cases {
_, err := validator.NewRequiredValidator(c.Definition)
if err != c.Error {
t.Errorf("Test with %s: fail to NewPatternValidator with error %v", c.Message, err)
}
}
}
func TestValidateOfRequiredValidator(t *testing.T) {
type Sample struct {
ID int
Name string
Message dbr.NullString
Items []string
}
type Input struct {
Sample Sample
Definition validator.RequiredValidatorDefinition
}
type Case struct {
Description string
Input Input
Expected error
}
cases := []Case{
{
Description: "complete struct against required",
Input: Input{
Sample: Sample{
ID: 1,
Name: "Hoge",
Message: dbr.NewNullString("Foo bar."),
Items: []string{"A", "B", "C"},
},
Definition: validator.RequiredValidatorDefinition{
Required: []string{
"ID",
"Name",
"Message",
"Items",
},
},
},
Expected: nil,
},
{
Description: "Name is empty string",
Input: Input{
Sample: Sample{
ID: 1,
Name: "",
Message: dbr.NewNullString("Foo bar."),
Items: []string{"A", "B", "C"},
},
Definition: validator.RequiredValidatorDefinition{
Required: []string{
"Name",
},
},
},
Expected: &validator.RequiredValidationError{
Input: Sample{
ID: 1,
Name: "",
Message: dbr.NewNullString("Foo bar."),
Items: []string{"A", "B", "C"},
},
Definition: validator.RequiredValidatorDefinition{
Required: []string{
"Name",
},
},
},
},
{
Description: "Message is nil",
Input: Input{
Sample: Sample{
ID: 1,
Name: "Hoge",
Message: dbr.NewNullString(nil),
Items: []string{"A", "B", "C"},
},
Definition: validator.RequiredValidatorDefinition{
Required: []string{
"Message",
},
},
},
Expected: &validator.RequiredValidationError{
Input: Sample{
ID: 1,
Name: "Hoge",
Message: dbr.NewNullString(nil),
Items: []string{"A", "B", "C"},
},
Definition: validator.RequiredValidatorDefinition{
Required: []string{
"Message",
},
},
},
},
{
Description: "Items is empty",
Input: Input{
Sample: Sample{
ID: 1,
Name: "Hoge",
Message: dbr.NewNullString("Foo bar."),
Items: []string{},
},
Definition: validator.RequiredValidatorDefinition{
Required: []string{
"Items",
},
},
},
Expected: &validator.RequiredValidationError{
Input: Sample{
ID: 1,
Name: "Hoge",
Message: dbr.NewNullString("Foo bar."),
Items: []string{},
},
Definition: validator.RequiredValidatorDefinition{
Required: []string{
"Items",
},
},
},
},
}
for _, c := range cases {
definition := c.Input.Definition
va, err := validator.NewRequiredValidator(definition)
if err != nil {
t.Errorf("test with %s: fail to create new required validator: %s", c.Description, err)
continue
}
err = va.Validate(c.Input.Sample)
if !reflect.DeepEqual(err, c.Expected) {
t.Errorf("test with %s: expected %+v, but actual %+v", c.Description, c.Expected, err)
}
}
}
func TestConvertToConcreteValue(t *testing.T) {
// Output expected is always Kind of non Ptr
type Case struct {
Message string
Input reflect.Value
}
var (
stringValue = "string"
intValue = 1
floatValue = 1.1
boolValue = true
structValue = time.Now()
)
cases := []Case{
{
Message: "kind of string",
Input: reflect.ValueOf(stringValue),
},
{
Message: "kind of int",
Input: reflect.ValueOf(intValue),
},
{
Message: "kind of float",
Input: reflect.ValueOf(floatValue),
},
{
Message: "kind of bool",
Input: reflect.ValueOf(boolValue),
},
{
Message: "kind of struct",
Input: reflect.ValueOf(structValue),
},
{
Message: "kind of pointer of string",
Input: reflect.ValueOf(&stringValue),
},
{
Message: "kind of pointer of int",
Input: reflect.ValueOf(&intValue),
},
{
Message: "kind of pointer of float",
Input: reflect.ValueOf(&floatValue),
},
{
Message: "kind of pointer of bool",
Input: reflect.ValueOf(&boolValue),
},
{
Message: "kind of pointer of struct",
Input: reflect.ValueOf(&structValue),
},
}
for _, c := range cases {
v, ok := validator.ConvertToConcreteValue(c.Input)
if !ok {
t.Errorf("test with %s: fail to convert to concrete value %v", c.Message, c.Input)
}
if v.Kind() == reflect.Ptr {
t.Errorf("test with %s: expected non Ptr but not", c.Message)
}
}
}
func TestGetFieldByName(t *testing.T) {
type Sample struct {
Hoge string
Foo string
Bar string
}
v, ok := validator.GetFieldByName(
reflect.ValueOf(
Sample{
Hoge: "hoge",
Foo: "foo",
Bar: "bar",
},
),
"Foo",
)
if !ok {
t.Fatal("test with existing field key: expected true but not")
}
i := v.Interface()
if i.(string) != "foo" {
t.Errorf("test with existing field: expected `foo` but not")
}
_, ok = validator.GetFieldByName(
reflect.ValueOf(
Sample{
Hoge: "hoge",
Foo: "foo",
Bar: "bar",
},
),
"Piyo",
)
if ok {
t.Errorf("test with not existing field: expected false but not")
}
}
func TestIsPresentString(t *testing.T) {
type Case struct {
Description string
Input string
ExpectedIsPresent bool
}
cases := []Case{
{
Description: "presented value",
Input: "value",
ExpectedIsPresent: true,
},
{
Description: "empty",
Input: "",
ExpectedIsPresent: false,
},
{
Description: "single space",
Input: " ",
ExpectedIsPresent: false,
},
{
Description: "double space",
Input: " ",
ExpectedIsPresent: false,
},
{
Description: "many space",
Input: " ",
ExpectedIsPresent: false,
},
{
Description: "horizontal tab",
Input: "\t",
ExpectedIsPresent: false,
},
{
Description: "newline",
Input: "\n",
ExpectedIsPresent: false,
},
{
Description: "vertical tab character",
Input: "\v",
ExpectedIsPresent: false,
},
{
Description: "form feed",
Input: "\f",
ExpectedIsPresent: false,
},
{
Description: "carriage return",
Input: "\r",
ExpectedIsPresent: false,
},
{
Description: "whitespace",
Input: "\t\n\v\f\r ",
ExpectedIsPresent: false,
},
{
Description: "whitespace with value",
Input: "\t\n\v\f\r value",
ExpectedIsPresent: true,
},
}
for _, c := range cases {
ok := validator.IsPresentString(c.Input)
if ok != c.ExpectedIsPresent {
t.Errorf("test with %s: expected %t but not", c.Description, c.ExpectedIsPresent)
}
}
}
func TestIsPresentArray(t *testing.T) {
type Case struct {
Description string
Input reflect.Value
ExpectedIsPresent bool
}
cases := []Case{
{
Description: "empty array of int",
Input: reflect.ValueOf([]int{}),
ExpectedIsPresent: false,
},
{
Description: "empty array of string",
Input: reflect.ValueOf([]string{}),
ExpectedIsPresent: false,
},
{
Description: "empty array of float64",
Input: reflect.ValueOf([]float64{}),
ExpectedIsPresent: false,
},
{
Description: "empty array of bool",
Input: reflect.ValueOf([]bool{}),
ExpectedIsPresent: false,
},
{
Description: "empty array of struct",
Input: reflect.ValueOf([]time.Time{}),
ExpectedIsPresent: false,
},
{
Description: "array of int with one element",
Input: reflect.ValueOf([]int{1}),
ExpectedIsPresent: true,
},
{
Description: "array of string with one element",
Input: reflect.ValueOf([]string{"value"}),
ExpectedIsPresent: true,
},
{
Description: "array of float64 with one element",
Input: reflect.ValueOf([]float64{1.1}),
ExpectedIsPresent: true,
},
{
Description: "array of bool with one element",
Input: reflect.ValueOf([]bool{true}),
ExpectedIsPresent: true,
},
{
Description: "array of struct with one element",
Input: reflect.ValueOf([]time.Time{time.Now()}),
ExpectedIsPresent: true,
},
{
Description: "array of int with many element",
Input: reflect.ValueOf([]int{1, 2, 3, 4, 5}),
ExpectedIsPresent: true,
},
}
for _, c := range cases {
ok := validator.IsPresentArray(c.Input)
if ok != c.ExpectedIsPresent {
t.Errorf("test with %s: expected %t but not", c.Description, c.ExpectedIsPresent)
}
}
}
func IsPresentStruct(t *testing.T) {
type Case struct {
Description string
Input reflect.Value
ExpectedIsPresent bool
}
type emptyStruct struct{}
type nonEmptyStruct struct {
field string
}
cases := []Case{
{
Description: "empty struct",
Input: reflect.ValueOf(emptyStruct{}),
ExpectedIsPresent: false,
},
{
Description: "non empty struct",
Input: reflect.ValueOf(nonEmptyStruct{field: "value"}),
ExpectedIsPresent: true,
},
}
for _, c := range cases {
ok := validator.IsPresentStruct(c.Input)
if ok != c.ExpectedIsPresent {
t.Errorf("test with %s: expected %t but not", c.Description, c.ExpectedIsPresent)
}
}
}
func TestIsValid(t *testing.T) {
type Case struct {
Description string
Input interface{}
ExpectedIsValid bool
}
cases := []Case{
{
Description: "primitive value",
Input: "value",
ExpectedIsValid: true,
},
{
Description: "valid nullable string",
Input: dbr.NewNullString("value"),
ExpectedIsValid: true,
},
{
Description: "valid nullable int",
Input: dbr.NewNullInt64(1),
ExpectedIsValid: true,
},
{
Description: "valid nullable float",
Input: dbr.NewNullFloat64(1.1),
ExpectedIsValid: true,
},
{
Description: "valid nullable bool",
Input: dbr.NewNullBool(true),
ExpectedIsValid: true,
},
{
Description: "valid nullable time",
Input: dbr.NewNullTime(time.Now()),
ExpectedIsValid: true,
},
{
Description: "invalid nullable string",
Input: dbr.NewNullString(nil),
ExpectedIsValid: false,
},
{
Description: "invalid nullable int",
Input: dbr.NewNullInt64(nil),
ExpectedIsValid: false,
},
{
Description: "invalid nullable float",
Input: dbr.NewNullFloat64(nil),
ExpectedIsValid: false,
},
{
Description: "invalid nullable bool",
Input: dbr.NewNullBool(nil),
ExpectedIsValid: false,
},
{
Description: "invalid nullable time",
Input: dbr.NewNullTime(nil),
ExpectedIsValid: false,
},
}
for _, c := range cases {
ok := validator.IsValid(c.Input)
if ok != c.ExpectedIsValid {
t.Errorf("test with %s: expected %t but not", c.Description, c.ExpectedIsValid)
}
}
}