-
Notifications
You must be signed in to change notification settings - Fork 14
/
v_test.go
243 lines (206 loc) · 4.26 KB
/
v_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
package validate
import (
"fmt"
"testing"
)
func ExampleV_Validate() {
type X struct {
A string `validate:"long"`
B string `validate:"short"`
C string `validate:"long,short"`
D string
}
vd := make(V)
vd["long"] = func(i interface{}) error {
s := i.(string)
if len(s) < 5 {
return fmt.Errorf("%q is too short", s)
}
return nil
}
vd["short"] = func(i interface{}) error {
s := i.(string)
if len(s) >= 5 {
return fmt.Errorf("%q is too long", s)
}
return nil
}
fmt.Println(vd.Validate(X{
A: "hello there",
B: "hi",
C: "help me",
D: "I am not validated",
}))
// Output: [field C is invalid: "help me" is too long]
}
func TestV_Validate_allgood(t *testing.T) {
type X struct {
A int `validate:"odd"`
}
vd := make(V)
vd["odd"] = func(i interface{}) error {
n := i.(int)
if n&1 == 0 {
return fmt.Errorf("%d is not odd", n)
}
return nil
}
errs := vd.Validate(X{
A: 1,
})
if errs != nil {
t.Fatalf("unexpected errors for a valid struct: %v", errs)
}
}
func TestV_Validate_allgoodptr(t *testing.T) {
type X struct {
A int `validate:"odd"`
}
vd := make(V)
vd["odd"] = func(i interface{}) error {
n := i.(int)
if n&1 == 0 {
return fmt.Errorf("%d is not odd", n)
}
return nil
}
errs := vd.Validate(&X{
A: 1,
})
if errs != nil {
t.Fatalf("unexpected errors for a valid struct: %v", errs)
}
}
func TestV_Validate_undef(t *testing.T) {
type X struct {
A string `validate:"oops"`
}
vd := make(V)
errs := vd.Validate(X{
A: "oh my",
})
if len(errs) == 0 {
t.Fatal("no errors returned for an undefined validator")
}
if len(errs) > 1 {
t.Fatalf("too many errors returns for an undefined validator: %v", errs)
}
if errs[0].Error() != `field A is invalid: undefined validator: "oops"` {
t.Fatal("wrong message for an undefined validator:", errs[0].Error())
}
}
func TestV_Validate_multi(t *testing.T) {
type X struct {
A int `validate:"nonzero,odd"`
}
vd := make(V)
vd["nonzero"] = func(i interface{}) error {
n := i.(int)
if n == 0 {
return fmt.Errorf("should be nonzero")
}
return nil
}
vd["odd"] = func(i interface{}) error {
n := i.(int)
if n&1 == 0 {
return fmt.Errorf("%d is not odd", n)
}
return nil
}
errs := vd.Validate(X{
A: 0,
})
if len(errs) != 2 {
t.Fatalf("wrong number of errors for two failures: %v", errs)
}
if errs[0].Error() != "field A is invalid: should be nonzero" {
t.Fatal("first error should be nonzero:", errs[0])
}
if errs[1].Error() != "field A is invalid: 0 is not odd" {
t.Fatal("second error should be odd:", errs[1])
}
}
func ExampleV_Validate_struct() {
type X struct {
A int `validate:"nonzero"`
}
type Y struct {
X `validate:"struct,odd"`
}
vd := make(V)
vd["nonzero"] = func(i interface{}) error {
n := i.(int)
if n == 0 {
return fmt.Errorf("should be nonzero")
}
return nil
}
vd["odd"] = func(i interface{}) error {
x := i.(X)
if x.A&1 == 0 {
return fmt.Errorf("%d is not odd", x.A)
}
return nil
}
errs := vd.Validate(Y{X{
A: 0,
}})
for _, err := range errs {
fmt.Println(err)
}
// Output: field X.A is invalid: should be nonzero
// field X is invalid: 0 is not odd
}
func TestV_Validate_uninterfaceable(t *testing.T) {
type X struct {
a int `validate:"nonzero"`
}
vd := make(V)
vd["nonzero"] = func(i interface{}) error {
n := i.(int)
if n == 0 {
return fmt.Errorf("should be nonzero")
}
return nil
}
errs := vd.Validate(X{
a: 0,
})
if len(errs) != 0 {
t.Fatal("wrong number of errors for two failures:", errs)
}
}
func TestV_Validate_nonstruct(t *testing.T) {
vd := make(V)
vd["wrong"] = func(i interface{}) error {
return fmt.Errorf("WRONG: %v", i)
}
errs := vd.Validate(7)
if errs != nil {
t.Fatalf("non-structs should always pass validation: %v", errs)
}
}
func TestV_ValidateAndTag(t *testing.T) {
type X struct {
A int `validate:"odd" somethin:"hiya"`
}
vd := make(V)
vd["odd"] = func(i interface{}) error {
n := i.(int)
if n&1 == 0 {
return fmt.Errorf("%d is not odd", n)
}
return nil
}
errs := vd.ValidateAndTag(X{
A: 2,
}, "somethin")
if len(errs) != 1 {
t.Fatalf("unexpected quantity of errors: %v", errs)
}
bf := errs[0].(BadField)
if bf.Field != "hiya" {
t.Fatalf("wrong field name in BadField: %q", bf.Field)
}
}