-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspec_string_test.go
421 lines (408 loc) · 8.94 KB
/
spec_string_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
package vd
import (
"testing"
)
type SpecStringMinLen struct {
Name string
}
func (s SpecStringMinLen) VD(r *Rule) (err error){
r.String(s.Name, StringSpec{
Name: "姓名",
Path: "name",
MinRuneLen: 4,
})
return nil
};
type SpecStringMinLenCustomMessage struct {
Name string
}
func (s SpecStringMinLenCustomMessage) VD(r *Rule) (err error){
r.String(s.Name, StringSpec{
Name: "姓名",
MinRuneLen: 4,
MinRuneLenMessage: "姓名长度不能小于{{MinRuneLen}}位,你输入的是{{Value}}",
})
return nil
}
type SpecStringRuneLen struct {
Name string
}
func (s SpecStringRuneLen) VD(r *Rule) (err error){
r.String(s.Name, StringSpec{
Name: "姓名",
Path: "name",
RuneLen: 4,
})
return nil
};
type SpecStringRuneLenCustomMessage struct {
Name string
}
func (s SpecStringRuneLenCustomMessage) VD(r *Rule) (err error){
r.String(s.Name, StringSpec{
Name: "姓名",
RuneLen: 4,
RuneLenMessage: "姓名长度必须是{{RuneLen}}你输入的是{{Value}}",
})
return nil
}
func Test_SpecString_RuneLen(t *testing.T) {
c := NewCN()
CheckEqualAndNoError(t, c, SpecStringRuneLen{Name:"ni"}, Report{
Fail: true,
Path: "name",
Message: "姓名长度需等于4",
})
CheckEqualAndNoError(t, c, SpecStringRuneLen{Name:"nim"}, Report{
Fail: true,
Path: "name",
Message: "姓名长度需等于4",
})
CheckEqualAndNoError(t, c, SpecStringRuneLen{Name:"nimo"}, Report{
Fail: false,
Message: "",
})
CheckEqualAndNoError(t, c, SpecStringRuneLen{Name:"nimoc"}, Report{
Fail: true,
Message: "姓名长度需等于4",
Path: "name",
})
CheckEqualAndNoError(t, c, SpecStringRuneLenCustomMessage{Name:"ni"}, Report{
Fail: true,
Message: "姓名长度必须是4你输入的是ni",
})
}
func Test_SpecString_MinLen(t *testing.T) {
c := NewCN()
CheckEqualAndNoError(t, c, SpecStringMinLen{Name:"ni"}, Report{
Fail: true,
Path: "name",
Message: "姓名长度不能小于4",
})
CheckEqualAndNoError(t, c, SpecStringMinLen{Name:"nim"}, Report{
Fail: true,
Path: "name",
Message: "姓名长度不能小于4",
})
CheckEqualAndNoError(t, c, SpecStringMinLen{Name:"nimo"}, Report{
Fail: false,
Message: "",
})
CheckEqualAndNoError(t, c, SpecStringMinLen{Name:"nimoc"}, Report{
Fail: false,
Message: "",
})
CheckEqualAndNoError(t, c, SpecStringMinLenCustomMessage{Name:"ni"}, Report{
Fail: true,
Message: "姓名长度不能小于4位,你输入的是ni",
})
}
type SpecStringMaxLen struct {
Name string
}
func (s SpecStringMaxLen) VD(r *Rule) (err error){
r.String(s.Name, StringSpec{
Name: "姓名",
MaxRuneLen: 4,
})
return nil
}
type SpecStringMaxLenCustomMessage struct {
Name string
}
func (s SpecStringMaxLenCustomMessage) VD(r *Rule) (err error){
r.String(s.Name, StringSpec{
Name: "姓名",
MaxRuneLen: 4,
MaxRuneLenMessage: "姓名长度不能大于{{MaxRuneLen}}位,你输入的是{{Value}}",
})
return nil
}
func Test_SpecString_MaxLen(t *testing.T) {
c := NewCN()
CheckEqualAndNoError(t, c, SpecStringMaxLen{Name:"nimoc"}, Report{
Fail: true,
Message: "姓名长度不能大于4",
})
CheckEqualAndNoError(t, c, SpecStringMaxLen{Name:"nimo"}, Report{
Fail: false,
Message: "",
})
CheckEqualAndNoError(t, c, SpecStringMaxLen{Name:"nim"}, Report{
Fail: false,
Message: "",
})
CheckEqualAndNoError(t, c, SpecStringMaxLenCustomMessage{Name:"nimoc"}, Report{
Fail: true,
Message: "姓名长度不能大于4位,你输入的是nimoc",
})
}
type SpecStringPattern struct {
Name string
Title string
More string
}
func (s SpecStringPattern) VD (r *Rule) (err error){
r.String(s.Name, StringSpec{
Name: "姓名",
Pattern: []string{"^nimo"},
})
r.String(s.Title, StringSpec{
Name: "标题",
Pattern: []string{`abc$`},
PatternMessage: "{{Name}}必须以abc为结尾",
})
r.String(s.More, StringSpec{
AllowEmpty: true,
Name: "更多",
Pattern:[]string{`^a`, `a$`},
PatternMessage: "{{Name}}开始结尾必须是a",
})
return nil
}
func TestSpecStringPattern(t *testing.T) {
c := NewCN()
{
CheckEqualAndNoError(t, c, SpecStringPattern{
Name: "nimo",
Title: "abc",
}, Report{
Fail: false,
Message: "",
})
}
{
CheckEqualAndNoError(t, c, SpecStringPattern{
Name: "nimo",
Title: "abc",
More: "ab",
}, Report{
Fail: true,
Message: "更多开始结尾必须是a",
})
}
{
CheckEqualAndNoError(t, c, SpecStringPattern{
Name: "xnimo",
Title: "abc",
}, Report{
Fail: true,
Message: "姓名格式错误",
})
}
{
CheckEqualAndNoError(t, c, SpecStringPattern{
Name: "nimo",
Title: "abcd",
}, Report{
Fail: true,
Message: "标题必须以abc为结尾",
})
}
{
CheckEqualAndNoError(t, c, SpecStringPattern{
Name: "nimo",
Title: "abcd",
More: "c",
}, Report{
Fail: true,
Message: "标题必须以abc为结尾",
})
}
}
type SpecStringBanPattern struct {
Name string
Title string
More string
}
func (s SpecStringBanPattern) VD (r *Rule)(err error){
r.String(s.Name, StringSpec{
Name: "姓名",
BanPattern: []string{"fuck"},
PatternMessage: "{{Name}}不允许出现敏感词",
})
r.String(s.Title, StringSpec{
Name: "标题",
BanPattern: []string{`fuck`},
PatternMessage: "{{Name}}不允许出现敏感词",
})
r.String(s.More, StringSpec{
AllowEmpty: true,
Name: "更多",
BanPattern: []string{`fuck`, `dick`},
PatternMessage: "{{Name}}不允许出现敏感词:{{BanPattern}}",
})
return nil
}
func TestSpecStringBanPattern(t *testing.T) {
c := NewCN()
{
CheckEqualAndNoError(t, c, SpecStringBanPattern{
Name: "nimo",
Title: "nimo",
More: "nimo",
}, Report{
Fail: false,
Message: "",
})
}
{
CheckEqualAndNoError(t, c, SpecStringBanPattern{
Name: "fuck",
Title: "nimo",
More: "nimo",
}, Report{
Fail: true,
Message: "姓名不允许出现敏感词",
})
}
{
CheckEqualAndNoError(t, c, SpecStringBanPattern{
Name: "nimo",
Title: "fuck",
More: "nimo",
}, Report{
Fail: true,
Message: "标题不允许出现敏感词",
})
}
{
CheckEqualAndNoError(t, c, SpecStringBanPattern{
Name: "nimo",
Title: "nimo",
More: "fuck",
}, Report{
Fail: true,
Message: "更多不允许出现敏感词:[fuck dick]",
})
}
{
CheckEqualAndNoError(t, c, SpecStringBanPattern{
Name: "nimo",
Title: "nimo",
More: "dick",
}, Report{
Fail: true,
Message: "更多不允许出现敏感词:[fuck dick]",
})
}
}
type SpecStringEnum struct {
Type SomeType
}
type SomeType string
func (v SomeType) String() string {
return string(v)
}
func (SomeType) Enum() (e struct{
Normal SomeType
Danger SomeType
}) {
e.Normal = "normal"
e.Danger = "danger"
return
}
func (s SpecStringEnum) VD(r *Rule) (err error){
r.String(s.Type.String(), StringSpec{
Name: "类型",
Enum: EnumValues(s.Type.Enum()),
})
return nil
}
func TestStringSpec_CheckEnum (t *testing.T) {
c := NewCN()
CheckEqualAndNoError(t, c, SpecStringEnum{
Type: "normal1",
}, Report{
Fail: true,
Message: "类型参数错误,只允许(normal danger)",
})
}
type SpecStringMinMax struct {
Name string
}
func (v SpecStringMinMax) VD(r *Rule) (err error){
r.String(v.Name, StringSpec{
Name: "姓名",
AllowEmpty: true,
MinRuneLen: 2,
MaxRuneLen: 4,
})
return nil
}
func TestSpectStringMinMax(t *testing.T) {
c := NewCN()
CheckEqualAndNoError(t, c, SpecStringMinMax{
Name: "",
}, Report{
Fail: false,
Message: "",
})
CheckEqualAndNoError(t, c, SpecStringMinMax{
Name: "a",
}, Report{
Fail: true,
Message: "姓名长度不能小于2",
})
CheckEqualAndNoError(t, c, SpecStringMinMax{
Name: "1",
}, Report{
Fail: true,
Message: "姓名长度不能小于2",
})
CheckEqualAndNoError(t, c, SpecStringMinMax{
Name: "12",
}, Report{
Fail: false,
Message: "",
})
CheckEqualAndNoError(t, c, SpecStringMinMax{
Name: "123",
}, Report{
Fail: false,
Message: "",
})
CheckEqualAndNoError(t, c, SpecStringMinMax{
Name: "1234",
}, Report{
Fail: false,
Message: "",
})
CheckEqualAndNoError(t, c, SpecStringMinMax{
Name: "12345",
}, Report{
Fail: true,
Message: "姓名长度不能大于4",
})
}
type SpecStringEmail struct {
Email string
OtherEmail string
}
func (v SpecStringEmail) VD(r *Rule) (err error){
r.String(v.Email, StringSpec{
Name: "邮箱",
Ext: []StringSpec{
ExtString{}.Email(),
},
})
r.String(v.OtherEmail, ExtString{}.Email().NameIs("附属邮箱"))
return nil
}
func TestStringEmail(t *testing.T) {
c := NewCN()
CheckEqualAndNoError(t, c, SpecStringEmail{
Email: "12345",
OtherEmail: "mail@github.com",
}, Report{
Fail: true,
Message: "邮箱格式错误",
})
CheckEqualAndNoError(t, c, SpecStringEmail{
Email: "12345@qq.com",
OtherEmail: "mailithub.com",
}, Report{
Fail: true,
Message: "附属邮箱格式错误",
})
}