forked from go-ozzo/ozzo-validation
-
Notifications
You must be signed in to change notification settings - Fork 1
/
validation_test.go
371 lines (329 loc) · 7.14 KB
/
validation_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
// Copyright 2016 Qiang Xue. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package validation
import (
"context"
"errors"
"strings"
"testing"
"github.com/stretchr/testify/assert"
)
func TestValidate(t *testing.T) {
slice := []String123{
String123("abc"),
String123("123"),
String123("xyz"),
}
ctxSlice := []Model4{
{A: "abc"},
{A: "def"},
}
mp := map[string]String123{
"c": String123("abc"),
"b": String123("123"),
"a": String123("xyz"),
}
mpCtx := map[string]StringValidateContext{
"c": StringValidateContext("abc"),
"b": StringValidateContext("123"),
"a": StringValidateContext("xyz"),
}
var (
ptr *string
noCtx StringValidate = "abc"
withCtx StringValidateContext = "xyz"
)
tests := []struct {
tag string
value any
err string
errWithContext string
}{
{
"t1",
123,
"",
"",
},
{
"t2",
String123("123"),
"",
"",
},
{
"t3",
String123("abc"),
"error 123",
"error 123",
},
{
"t4",
[]String123{},
"",
"",
},
{
"t4.1",
[]StringValidateContext{},
"",
"",
},
{
"t4.2",
map[string]StringValidateContext{},
"",
"",
},
{
"t5",
slice,
"0: error 123; 2: error 123.",
"0: error 123; 2: error 123.",
},
{
"t6",
&slice,
"0: error 123; 2: error 123.",
"0: error 123; 2: error 123.",
},
{
"t7",
ctxSlice,
"",
"1: (A: error abc.).",
},
{
"t8",
mp,
"a: error 123; c: error 123.",
"a: error 123; c: error 123.",
},
{
"t8.1",
mpCtx,
"a: must be abc; b: must be abc.",
"a: must be abc with context; b: must be abc with context.",
},
{
"t9",
&mp,
"a: error 123; c: error 123.",
"a: error 123; c: error 123.",
},
{
"t10",
map[string]String123{},
"",
"",
},
{
"t11",
ptr,
"",
"",
},
{
"t12",
noCtx,
"called validate",
"called validate",
},
{
"t13",
withCtx,
"must be abc",
"must be abc with context",
},
}
for _, test := range tests {
err := Validate(test.value)
assertError(t, test.err, err, test.tag)
// rules that are not context-aware should still be applied in context-aware validation
err = ValidateWithContext(context.Background(), test.value)
assertError(t, test.errWithContext, err, test.tag)
}
// with rules
err := Validate("123", &validateAbc{}, &validateXyz{})
assert.EqualError(t, err, "error abc")
err = Validate("abc", &validateAbc{}, &validateXyz{})
assert.EqualError(t, err, "error xyz")
err = Validate("abcxyz", &validateAbc{}, &validateXyz{})
assert.NoError(t, err)
err = Validate("123", &validateAbc{}, Skip, &validateXyz{})
assert.EqualError(t, err, "error abc")
err = Validate("abc", &validateAbc{}, Skip, &validateXyz{})
assert.NoError(t, err)
err = Validate("123", &validateAbc{}, Skip.When(true), &validateXyz{})
assert.EqualError(t, err, "error abc")
err = Validate("abc", &validateAbc{}, Skip.When(true), &validateXyz{})
assert.NoError(t, err)
err = Validate("123", &validateAbc{}, Skip.When(false), &validateXyz{})
assert.EqualError(t, err, "error abc")
err = Validate("abc", &validateAbc{}, Skip.When(false), &validateXyz{})
assert.EqualError(t, err, "error xyz")
}
func stringEqual(str string) RuleFunc {
return func(value any) error {
s, _ := value.(string)
if s != str {
return errors.New("unexpected string")
}
return nil
}
}
func TestBy(t *testing.T) {
abcRule := By(
func(value any) error {
s, _ := value.(string)
if s != "abc" {
return errors.New("must be abc")
}
return nil
},
)
assert.Nil(t, Validate("abc", abcRule))
err := Validate("xyz", abcRule)
if assert.NotNil(t, err) {
assert.Equal(t, "must be abc", err.Error())
}
xyzRule := By(stringEqual("xyz"))
assert.Nil(t, Validate("xyz", xyzRule))
assert.NotNil(t, Validate("abc", xyzRule))
assert.Nil(t, ValidateWithContext(context.Background(), "xyz", xyzRule))
assert.NotNil(t, ValidateWithContext(context.Background(), "abc", xyzRule))
}
type key int
func TestByWithContext(t *testing.T) {
k := key(1)
abcRule := WithContext(
func(ctx context.Context, value any) error {
if ctx.Value(k) != value.(string) {
return errors.New("must be abc")
}
return nil
},
)
ctx := context.WithValue(context.Background(), k, "abc")
assert.Nil(t, ValidateWithContext(ctx, "abc", abcRule))
err := ValidateWithContext(ctx, "xyz", abcRule)
if assert.NotNil(t, err) {
assert.Equal(t, "must be abc", err.Error())
}
assert.NotNil(t, Validate("abc", abcRule))
}
func Test_skipRule_Validate(t *testing.T) {
assert.Nil(t, Skip.Validate(100))
}
func assertError(t *testing.T, expected string, err error, tag string) {
if expected == "" {
assert.NoError(t, err, tag)
} else {
assert.EqualError(t, err, expected, tag)
}
}
type validateAbc struct{}
func (v *validateAbc) Validate(obj any) error {
if !strings.Contains(obj.(string), "abc") {
return errors.New("error abc")
}
return nil
}
type validateContextAbc struct{}
func (v *validateContextAbc) Validate(obj any) error {
return v.ValidateWithContext(context.Background(), obj)
}
func (v *validateContextAbc) ValidateWithContext(_ context.Context, obj any) error {
if !strings.Contains(obj.(string), "abc") {
return errors.New("error abc")
}
return nil
}
type validateXyz struct{}
func (v *validateXyz) Validate(obj any) error {
if !strings.Contains(obj.(string), "xyz") {
return errors.New("error xyz")
}
return nil
}
type validateContextXyz struct{}
func (v *validateContextXyz) Validate(obj any) error {
return v.ValidateWithContext(context.Background(), obj)
}
func (v *validateContextXyz) ValidateWithContext(_ context.Context, obj any) error {
if !strings.Contains(obj.(string), "xyz") {
return errors.New("error xyz")
}
return nil
}
type validateInternalError struct{}
func (v *validateInternalError) Validate(obj any) error {
if strings.Contains(obj.(string), "internal") {
return NewInternalError(errors.New("error internal"))
}
return nil
}
type Model1 struct {
A string
B string
c string
D *string
E String123
F *String123
G string `json:"g"`
H []string
I map[string]string
}
type String123 string
func (s String123) Validate() error {
if !strings.Contains(string(s), "123") {
return errors.New("error 123")
}
return nil
}
type Model2 struct {
Model3
M3 Model3
B string
}
type Model3 struct {
A string
}
func (m Model3) Validate() error {
return ValidateStruct(
&m,
Field(&m.A, &validateAbc{}),
)
}
type Model4 struct {
A string
}
func (m Model4) ValidateWithContext(ctx context.Context) error {
return ValidateStructWithContext(
ctx, &m,
Field(&m.A, &validateContextAbc{}),
)
}
type Model5 struct {
Model4
M4 Model4
B string
}
type StringValidate string
func (s StringValidate) Validate() error {
return errors.New("called validate")
}
type StringValidateContext string
func (s StringValidateContext) Validate() error {
if string(s) != "abc" {
return errors.New("must be abc")
}
return nil
}
func (s StringValidateContext) ValidateWithContext(context.Context) error {
if string(s) != "abc" {
return errors.New("must be abc with context")
}
return nil
}