-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbool_test.go
372 lines (363 loc) · 7.04 KB
/
bool_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
package sanitize
import (
"reflect"
"testing"
)
func Test_sanitizeBoolField(t *testing.T) {
s, _ := New()
type TestBoolStructDefTrue struct {
Field bool `san:"def=true"`
}
type TestBoolStructDefFalse struct {
Field bool `san:"def=false"`
}
type TestBoolStructBadDef struct {
Field bool `san:"def=maybe"`
}
type TestBoolStructPtrDefTrue struct {
Field *bool `san:"def=true"`
}
type TestBoolStructPtrDefFalse struct {
Field *bool `san:"def=false"`
}
type TestBoolStructPtrBadDef struct {
Field *bool `san:"def=maybe"`
}
boolFalse := false
boolTrue := true
type args struct {
v interface{}
idx int
}
tests := []struct {
name string
args args
want interface{}
wantErr bool
}{
{
name: "Default value (true) should not modify a bool field.",
args: args{
v: &TestBoolStructDefTrue{
Field: false,
},
idx: 0,
},
want: &TestBoolStructDefTrue{
Field: false,
},
wantErr: false,
},
{
name: "Default value (false) should not modify a bool field.",
args: args{
v: &TestBoolStructDefFalse{
Field: true,
},
idx: 0,
},
want: &TestBoolStructDefFalse{
Field: true,
},
wantErr: false,
},
{
name: "Default value (invalid) should not modify a bool field.",
args: args{
v: &TestBoolStructBadDef{
Field: false,
},
idx: 0,
},
want: &TestBoolStructBadDef{
Field: false,
},
wantErr: false,
},
{
name: "Puts a default value (true) for a *bool field that was nil on a struct with the tag.",
args: args{
v: &TestBoolStructPtrDefTrue{
Field: nil,
},
idx: 0,
},
want: &TestBoolStructPtrDefTrue{
Field: &boolTrue,
},
wantErr: false,
},
{
name: "Puts a default value (false) for a *bool field that was nil on a struct with the tag.",
args: args{
v: &TestBoolStructPtrDefFalse{
Field: nil,
},
idx: 0,
},
want: &TestBoolStructPtrDefFalse{
Field: &boolFalse,
},
wantErr: false,
},
{
name: "Returns an error for an invalid bool def for a *bool field that was nil on a struct with the tag.",
args: args{
v: &TestBoolStructPtrBadDef{
Field: nil,
},
idx: 0,
},
want: &TestBoolStructPtrBadDef{
Field: nil,
},
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if err := sanitizeBoolField(*s, reflect.ValueOf(tt.args.v).Elem(), tt.args.idx); (err != nil) != tt.wantErr {
t.Errorf("sanitizeBoolField() error = %v, wantErr %v", err, tt.wantErr)
}
if !reflect.DeepEqual(tt.args.v, tt.want) {
t.Errorf("sanitizeBoolField() - failed field - got %+v but wanted %+v", tt.args.v, tt.want)
}
})
}
}
func Test_sanitizeBoolField_Slice(t *testing.T) {
s, _ := New()
type TestStrStructBoolSli struct {
Field []bool `san:""`
}
type TestStrStructBoolPtrSli struct {
Field []*bool `san:""`
}
type TestStrStructBoolPtrSliDef struct {
Field []*bool `san:"def=true"`
}
type TestStrStructBoolSliPtr struct {
Field *[]bool `san:""`
}
type TestStrStructBoolPtrSliPtr struct {
Field *[]*bool `san:""`
}
type TestStrStructBoolPtrSliPtrDef struct {
Field *[]*bool `san:"def=true"`
}
// Each *string test has isolated arguments and results, since the
// arguments will be mutated, they should not be reused
argString0 := false
resString0 := false
argString1 := true
resString1 := true
argString2 := false
resString2 := false
resString3 := true
argString4 := false
resString4 := false
argString5 := true
resString5 := true
argString6 := false
resString6 := false
resString7 := true
type args struct {
v interface{}
idx int
}
tests := []struct {
name string
args args
want interface{}
wantErr bool
}{
{
name: "Applies tags to a non-empty []bool field.",
args: args{
v: &TestStrStructBoolSli{
Field: []bool{
false,
true,
false,
},
},
idx: 0,
},
want: &TestStrStructBoolSli{
Field: []bool{
false,
true,
false,
},
},
wantErr: false,
},
{
name: "Applies tags to an empty []bool field.",
args: args{
v: &TestStrStructBoolSli{},
idx: 0,
},
want: &TestStrStructBoolSli{},
wantErr: false,
},
{
name: "Applies tags to a non-empty []*bool field.",
args: args{
v: &TestStrStructBoolPtrSli{
Field: []*bool{
&argString0,
&argString1,
&argString2,
},
},
idx: 0,
},
want: &TestStrStructBoolPtrSli{
Field: []*bool{
&resString0,
&resString1,
&resString2,
},
},
wantErr: false,
},
{
name: "Applies tags to a non-empty []*bool field.",
args: args{
v: &TestStrStructBoolPtrSli{
Field: []*bool{
nil,
nil,
nil,
},
},
idx: 0,
},
want: &TestStrStructBoolPtrSli{
Field: []*bool{
nil,
nil,
nil,
},
},
wantErr: false,
},
{
name: "Applies tags (with default) to a non-empty []*bool field.",
args: args{
v: &TestStrStructBoolPtrSliDef{
Field: []*bool{
nil,
},
},
idx: 0,
},
want: &TestStrStructBoolPtrSliDef{
Field: []*bool{
&resString3,
},
},
wantErr: false,
},
{
name: "Applies tags to a non-empty *[]bool field.",
args: args{
v: &TestStrStructBoolSliPtr{
Field: &[]bool{
false,
true,
false,
},
},
idx: 0,
},
want: &TestStrStructBoolSliPtr{
Field: &[]bool{
false,
true,
false,
},
},
wantErr: false,
},
{
name: "Applies tags to an empty *[]bool field.",
args: args{
v: &TestStrStructBoolSliPtr{},
idx: 0,
},
want: &TestStrStructBoolSliPtr{},
wantErr: false,
},
{
name: "Applies tags to a non-empty *[]*bool field.",
args: args{
v: &TestStrStructBoolPtrSliPtr{
Field: &[]*bool{
&argString4,
&argString5,
&argString6,
},
},
idx: 0,
},
want: &TestStrStructBoolPtrSliPtr{
Field: &[]*bool{
&resString4,
&resString5,
&resString6,
},
},
wantErr: false,
},
{
name: "Applies tags to a non-empty *[]*bool field.",
args: args{
v: &TestStrStructBoolPtrSliPtr{
Field: &[]*bool{
nil,
nil,
nil,
},
},
idx: 0,
},
want: &TestStrStructBoolPtrSliPtr{
Field: &[]*bool{
nil,
nil,
nil,
},
},
wantErr: false,
},
{
name: "Applies tags (with default) to a non-empty *[]*bool field.",
args: args{
v: &TestStrStructBoolPtrSliPtrDef{
Field: &[]*bool{
nil,
},
},
idx: 0,
},
want: &TestStrStructBoolPtrSliPtrDef{
Field: &[]*bool{
&resString7,
},
},
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if err := sanitizeBoolField(*s, reflect.ValueOf(tt.args.v).Elem(), tt.args.idx); (err != nil) != tt.wantErr {
t.Errorf("sanitizeBoolField() error = %v, wantErr %v", err, tt.wantErr)
}
if !reflect.DeepEqual(tt.args.v, tt.want) {
t.Errorf("sanitizeBoolField() - failed field - got %+v but wanted %+v", tt.args.v, tt.want)
}
})
}
}