-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalidate_test.go
76 lines (69 loc) · 1.62 KB
/
validate_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
package validate
import (
"fmt"
"reflect"
"testing"
)
func TestParseValidateOptions(t *testing.T) {
tests := []struct {
name string
input string
options validateOptions
expectedErr error
}{
{
name: "required",
input: "required",
options: validateOptions{Required: true},
expectedErr: nil,
},
{
name: "nothing",
input: "",
options: validateOptions{},
expectedErr: nil,
},
{
name: "regex",
input: "regex=hello world",
options: validateOptions{Regex: "hello world"},
expectedErr: nil,
},
{
name: "regex and required",
input: "regex=hello world,required",
options: validateOptions{Required: true, Regex: "hello world"},
expectedErr: nil,
},
// TODO: this should throw an error
{
name: "invalid",
input: "inv",
options: validateOptions{},
expectedErr: nil,
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
options, err := parseValidateOptions(test.input)
if err != test.expectedErr {
t.Errorf("parseValidateOptions failed on test '%s'. Expected error '%v'. Got '%v'", test.name, test.expectedErr, err)
}
if !reflect.DeepEqual(options, test.options) {
t.Errorf("parseValidateOptions failed on test '%s'. Expected options '%+v'. Got '%+v'", test.name, test.options, options)
}
})
}
}
func TestValidate(t *testing.T) {
type myStruct struct {
Col1 string `validate:"required"`
Col2 string `validate:"regex=hello$"`
}
s := myStruct{
Col1: "",
Col2: "hello",
}
err := Validate(s)
fmt.Println(err)
}