-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathverify_test.go
284 lines (261 loc) · 5.94 KB
/
verify_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
package verify_test
import (
"strings"
"testing"
"github.com/codyoss/verify"
)
func TestItInputTypes(t *testing.T) {
var va Aer = valueAer{}
var pa Aer = &pointerAer{}
tests := []struct {
name string
input interface{}
wantErr bool
}{
{"bool input", true, true},
{"string input", "", true},
{"int input", 0, true},
{"float64 input", 1.4, true},
{"*string input", new(string), true},
{"struct input", valueAer{}, false},
{"*struct input", &pointerAer{}, false},
{"interface struct input", va, false},
{"interface *struct input", pa, false},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := verify.It(tt.input)
if (tt.wantErr && got == nil) || (!tt.wantErr && got != nil) {
t.Errorf("wantErr is %v, while got is %v", tt.wantErr, got)
}
})
}
}
func TestItMinSize(t *testing.T) {
type A struct {
A bool `verify:"minSize"`
}
type B struct {
A bool `verify:"minSize=abc"`
}
type C struct {
A bool `verify:"minSize=5"`
}
type D struct {
A string `verify:"minSize=5"`
}
tests := []struct {
name string
input interface{}
wantErr bool
}{
{"missing value", A{}, true},
{"can't parse value", B{}, true},
{"field wrong type", C{}, true},
{"field too short", D{}, true},
{"works", D{"12345"}, false},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := verify.It(tt.input)
if (tt.wantErr && got == nil) || (!tt.wantErr && got != nil) {
t.Errorf("wantErr is %v, while got is %v", tt.wantErr, got)
}
})
}
}
func TestItMaxSize(t *testing.T) {
type A struct {
A bool `verify:"maxSize"`
}
type B struct {
A bool `verify:"maxSize=abc"`
}
type C struct {
A bool `verify:"maxSize=5"`
}
type D struct {
A string `verify:"maxSize=5"`
}
tests := []struct {
name string
input interface{}
wantErr bool
}{
{"missing value", A{}, true},
{"can't parse value", B{}, true},
{"field wrong type", C{}, true},
{"field too long", D{"123456"}, true},
{"works", D{"12345"}, false},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := verify.It(tt.input)
if (tt.wantErr && got == nil) || (!tt.wantErr && got != nil) {
t.Errorf("wantErr is %v, while got is %v", tt.wantErr, got)
}
})
}
}
func TestItMin(t *testing.T) {
type A struct {
A bool `verify:"min"`
}
type B struct {
A bool `verify:"min=abc"`
}
type C struct {
A bool `verify:"min=3"`
}
type D struct {
A float64 `verify:"min=2"`
}
type E struct {
A int64 `verify:"min=2.1"`
}
type F struct {
A float64 `verify:"min=2.1"`
}
type G struct {
A int64 `verify:"min=2"`
}
tests := []struct {
name string
input interface{}
wantErr bool
}{
{"missing value", A{}, true},
{"can't parse value", B{}, true},
{"field wrong type", C{}, true},
{"field type does not match tag type", D{3.1}, true},
{"tag type does not match field type", E{3}, true},
{"too small float", F{1.1}, true},
{"too small int", G{1}, true},
{"works float", F{3.1}, false},
{"works int", G{3}, false},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := verify.It(tt.input)
if (tt.wantErr && got == nil) || (!tt.wantErr && got != nil) {
t.Errorf("wantErr is %v, while got is %v", tt.wantErr, got)
}
})
}
}
func TestItMax(t *testing.T) {
type A struct {
A bool `verify:"max"`
}
type B struct {
A bool `verify:"max=abc"`
}
type C struct {
A bool `verify:"max=3"`
}
type D struct {
A float64 `verify:"max=2"`
}
type E struct {
A int64 `verify:"max=2.1"`
}
type F struct {
A float64 `verify:"max=2.1"`
}
type G struct {
A int64 `verify:"max=2"`
}
tests := []struct {
name string
input interface{}
wantErr bool
}{
{"missing value", A{}, true},
{"can't parse value", B{}, true},
{"field wrong type", C{}, true},
{"field type does not match tag type", D{1.1}, true},
{"tag type does not match field type", E{1}, true},
{"too large float", F{3.1}, true},
{"too large int", G{3}, true},
{"works float", F{1.1}, false},
{"works int", G{1}, false},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := verify.It(tt.input)
if (tt.wantErr && got == nil) || (!tt.wantErr && got != nil) {
t.Errorf("wantErr is %v, while got is %v", tt.wantErr, got)
}
})
}
}
func TestItRequired(t *testing.T) {
type Zero struct {
A string
}
type A struct {
A string `verify:"required"`
}
type B struct {
A bool `verify:"required"`
}
type C struct {
A int `verify:"required"`
}
type D struct {
A float64 `verify:"required"`
}
type E struct {
A Zero `verify:"required"`
}
type F struct {
A *Zero `verify:"required"`
}
type G struct {
A []int `verify:"required"`
}
tests := []struct {
name string
input interface{}
wantErr bool
}{
{"deafult string", A{}, true},
{"deafult bool", B{}, true},
{"deafult int", C{}, true},
{"deafult float64", D{}, true},
{"deafult struct", E{}, false},
{"deafult *struct", F{}, true},
{"deafult slice", G{}, true},
{"non-deafult string", A{"a"}, false},
{"non-deafult bool", B{true}, false},
{"non-deafult int", C{1}, false},
{"non-deafult float64", D{1.1}, false},
{"non-deafult struct", E{Zero{"a"}}, false},
{"non-deafult *struct", F{&Zero{"a"}}, false},
{"non-deafult slice", G{[]int{1}}, false},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := verify.It(tt.input)
if (tt.wantErr && got == nil) || (!tt.wantErr && got != nil) {
t.Errorf("wantErr is %v, while got is %v", tt.wantErr, got)
}
})
}
}
func TestItMultipleValidationsFail(t *testing.T) {
type A struct {
A int `verify:"required,max=-1"`
}
err := verify.It(A{})
if err == nil || !strings.Contains(err.Error(), "zero value") || !strings.Contains(err.Error(), "greater than max") {
t.Error("expected err two contain two messages")
}
}
type Aer interface {
A()
}
type valueAer struct{}
func (a valueAer) A() {}
type pointerAer struct{}
func (a *pointerAer) A() {}