-
Notifications
You must be signed in to change notification settings - Fork 500
/
tvp_go19_test.go
579 lines (558 loc) · 10.3 KB
/
tvp_go19_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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
// +build go1.9
package mssql
import (
"reflect"
"testing"
"time"
)
type TestFields struct {
PBinary []byte `tvp:"p_binary"`
PVarchar string `json:"p_varchar"`
PNvarchar *string `json:"p_nvarchar"`
TimeValue time.Time `echo:"-"`
TimeNullValue *time.Time
}
type TestFieldError struct {
ErrorValue []*byte
}
type TestFieldsUnsupportedTypes struct {
ErrorType TestFieldError
}
func TestTVPType_columnTypes(t *testing.T) {
type customTypeAllFieldsSkipOne struct {
SkipTest int `tvp:"-"`
}
type customTypeAllFieldsSkipMoreOne struct {
SkipTest int `tvp:"-"`
SkipTest1 int `json:"-"`
}
type skipWrongField struct {
SkipTest int
SkipTest1 []*byte `json:"skip_test" tvp:"-"`
}
type structType struct {
SkipTest int `json:"-" tvp:"test"`
SkipTest1 []*skipWrongField `json:"any" tvp:"tvp"`
}
type skipWithAnotherTagValue struct {
SkipTest int `json:"-" tvp:"test"`
}
type fields struct {
TVPName string
TVPValue interface{}
}
tests := []struct {
name string
fields fields
want []columnStruct
wantErr bool
}{
{
name: "Test Pass",
fields: fields{
TVPValue: []TestFields{{}},
},
},
{
name: "Value has wrong field type",
fields: fields{
TVPValue: []TestFieldError{{}},
},
wantErr: true,
},
{
name: "Value has wrong type",
fields: fields{
TVPValue: []TestFieldsUnsupportedTypes{},
},
wantErr: true,
},
{
name: "Value has wrong type",
fields: fields{
TVPValue: []structType{},
},
wantErr: true,
},
{
name: "CustomTag all fields are skip, single field",
fields: fields{
TVPValue: []customTypeAllFieldsSkipOne{},
},
wantErr: true,
},
{
name: "CustomTag all fields are skip, > 1 field",
fields: fields{
TVPValue: []customTypeAllFieldsSkipMoreOne{},
},
wantErr: true,
},
{
name: "CustomTag all fields are skip wrong field type",
fields: fields{
TVPValue: []skipWrongField{},
},
wantErr: false,
},
{
name: "CustomTag tag value is not -",
fields: fields{
TVPValue: []skipWithAnotherTagValue{},
},
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
tvp := TVP{
TypeName: tt.fields.TVPName,
Value: tt.fields.TVPValue,
}
_, _, err := tvp.columnTypes()
if (err != nil) != tt.wantErr {
t.Errorf("TVP.columnTypes() error = %v, wantErr %v", err, tt.wantErr)
return
}
})
}
}
func TestTVPType_check(t *testing.T) {
type fields struct {
TVPName string
TVPValue interface{}
}
var nullSlice []*string
tests := []struct {
name string
fields fields
wantErr bool
}{
{
name: "TypeName is nil",
wantErr: true,
},
{
name: "Value is nil",
fields: fields{
TVPName: "Test",
TVPValue: nil,
},
wantErr: true,
},
{
name: "Value is nil",
fields: fields{
TVPName: "Test",
},
wantErr: true,
},
{
name: "Value isn't slice",
fields: fields{
TVPName: "Test",
TVPValue: "",
},
wantErr: true,
},
{
name: "Value isn't slice",
fields: fields{
TVPName: "Test",
TVPValue: 12345,
},
wantErr: true,
},
{
name: "Value isn't slice",
fields: fields{
TVPName: "Test",
TVPValue: nullSlice,
},
wantErr: true,
},
{
name: "Value isn't right",
fields: fields{
TVPName: "Test",
TVPValue: []*fields{},
},
wantErr: true,
},
{
name: "Value is right",
fields: fields{
TVPName: "Test",
TVPValue: []fields{},
},
wantErr: false,
},
{
name: "Value is right",
fields: fields{
TVPName: "Test",
TVPValue: []fields{},
},
wantErr: false,
},
{
name: "Value is right",
fields: fields{
TVPName: "[Test]",
TVPValue: []fields{},
},
wantErr: false,
},
{
name: "Value is right",
fields: fields{
TVPName: "[123].[Test]",
TVPValue: []fields{},
},
wantErr: false,
},
{
name: "TVP name is right",
fields: fields{
TVPName: "[123].Test",
TVPValue: []fields{},
},
wantErr: false,
},
{
name: "TVP name is right",
fields: fields{
TVPName: "123.[Test]",
TVPValue: []fields{},
},
wantErr: true,
},
{
name: "TVP name is wrong",
fields: fields{
TVPName: "123.[Test\n]",
TVPValue: []fields{},
},
wantErr: true,
},
{
name: "TVP name is wrong",
fields: fields{
TVPName: "123.[Test].456",
TVPValue: []fields{},
},
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
tvp := TVP{
TypeName: tt.fields.TVPName,
Value: tt.fields.TVPValue,
}
if err := tvp.check(); (err != nil) != tt.wantErr {
t.Errorf("TVP.check() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}
func BenchmarkTVPType_check(b *testing.B) {
type val struct {
Value string
}
tvp := TVP{
TypeName: "Test",
Value: []val{},
}
for i := 0; i < b.N; i++ {
err := tvp.check()
if err != nil {
b.Fail()
}
}
}
func BenchmarkColumnTypes(b *testing.B) {
//lint:file-ignore U1000 don't know what to do with following yet
type str struct {
bytes byte
bytesNull *byte
bytesSlice []byte
int8s int8
int8sNull *int8
uint8s uint8
uint8sNull *uint8
int16s int16
int16sNull *int16
uint16s uint16
uint16sNull *uint16
int32s int32
int32sNull *int32
uint32s uint32
uint32sNull *uint32
int64s int64
int64sNull *int64
uint64s uint64
uint64sNull *uint64
stringVal string
stringValNull *string
bools bool
boolsNull *bool
}
wal := make([]str, 100)
tvp := TVP{
TypeName: "Test",
Value: wal,
}
for i := 0; i < b.N; i++ {
_, _, err := tvp.columnTypes()
if err != nil {
b.Error(err)
}
}
}
func TestIsSkipField(t *testing.T) {
type args struct {
tvpTagValue string
isTvpValue bool
jsonTagValue string
isJsonTagValue bool
}
tests := []struct {
name string
args args
want bool
}{
{
name: "Empty tags",
want: false,
},
{
name: "tvp is skip",
want: true,
args: args{
isTvpValue: true,
tvpTagValue: skipTagValue,
},
},
{
name: "tvp is any",
want: false,
args: args{
isTvpValue: true,
tvpTagValue: "tvp",
},
},
{
name: "Json is skip",
want: true,
args: args{
isJsonTagValue: true,
jsonTagValue: skipTagValue,
},
},
{
name: "Json is any",
want: false,
args: args{
isJsonTagValue: true,
jsonTagValue: "any",
},
},
{
name: "Json is skip tvp is skip",
want: true,
args: args{
isJsonTagValue: true,
jsonTagValue: skipTagValue,
isTvpValue: true,
tvpTagValue: skipTagValue,
},
},
{
name: "Json is skip tvp is any",
want: false,
args: args{
isJsonTagValue: true,
jsonTagValue: skipTagValue,
isTvpValue: true,
tvpTagValue: "tvp",
},
},
{
name: "Json is any tvp is skip",
want: true,
args: args{
isJsonTagValue: true,
jsonTagValue: "json",
isTvpValue: true,
tvpTagValue: skipTagValue,
},
},
{
name: "Json is any tvp is skip",
want: false,
args: args{
isJsonTagValue: true,
jsonTagValue: "json",
isTvpValue: true,
tvpTagValue: "tvp",
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := IsSkipField(tt.args.tvpTagValue, tt.args.isTvpValue, tt.args.jsonTagValue, tt.args.isJsonTagValue); got != tt.want {
t.Errorf("IsSkipField() = %v, schema %v", got, tt.want)
}
})
}
}
func Test_getSchemeAndName(t *testing.T) {
type args struct {
tvpName string
}
tests := []struct {
name string
args args
schema string
tvpName string
wantErr bool
}{
{
name: "Empty object name",
wantErr: true,
},
{
name: "Wrong object name",
wantErr: true,
args: args{
tvpName: "1.2.3",
},
},
{
name: "Schema+name",
wantErr: false,
args: args{
tvpName: "obj.tvp",
},
schema: "obj",
tvpName: "tvp",
},
{
name: "Schema+name",
wantErr: false,
args: args{
tvpName: "[obj].[tvp]",
},
schema: "obj",
tvpName: "tvp",
},
{
name: "only name",
wantErr: false,
args: args{
tvpName: "tvp",
},
schema: "",
tvpName: "tvp",
},
{
name: "only name",
wantErr: false,
args: args{
tvpName: "[tvp]",
},
schema: "",
tvpName: "tvp",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
schema, name, err := getSchemeAndName(tt.args.tvpName)
if (err != nil) != tt.wantErr {
t.Errorf("getSchemeAndName() error = %v, wantErr %v", err, tt.wantErr)
return
}
if schema != tt.schema {
t.Errorf("getSchemeAndName() schema = %v, schema %v", schema, tt.schema)
}
if name != tt.tvpName {
t.Errorf("getSchemeAndName() name = %v, schema %v", name, tt.tvpName)
}
})
}
}
func TestTVP_encode(t *testing.T) {
type fields struct {
TypeName string
Value interface{}
}
type args struct {
schema string
name string
columnStr []columnStruct
tvpFieldIndexes []int
}
tests := []struct {
name string
fields fields
args args
want []byte
wantErr bool
wantPanic bool
}{
{
name: "column and indexes are nil",
wantErr: true,
args: args{
tvpFieldIndexes: []int{1, 2},
},
},
{
name: "column and indexes are nil",
wantErr: true,
args: args{
tvpFieldIndexes: []int{1, 2},
columnStr: []columnStruct{{}},
},
},
{
name: "column and indexes are nil",
wantErr: true,
args: args{
columnStr: []columnStruct{{}},
},
},
{
name: "column and indexes are nil",
wantErr: true,
wantPanic: true,
args: args{
schema: string(make([]byte, 256)),
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if tt.wantPanic {
defer func() {
if r := recover(); r == nil {
t.Errorf("Want panic")
}
}()
}
tvp := TVP{
TypeName: tt.fields.TypeName,
Value: tt.fields.Value,
}
got, err := tvp.encode(tt.args.schema, tt.args.name, tt.args.columnStr, tt.args.tvpFieldIndexes)
if (err != nil) != tt.wantErr {
t.Errorf("TVP.encode() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("TVP.encode() = %v, want %v", got, tt.want)
}
})
}
}