-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathbuilder_test.go
1574 lines (1383 loc) · 74.2 KB
/
builder_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
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package gobatis_test
import (
"database/sql"
"fmt"
"reflect"
"strings"
"testing"
"time"
gobatis "github.com/runner-mei/GoBatis"
_ "github.com/runner-mei/GoBatis/tests"
)
type TimeRange struct {
Start time.Time
End time.Time
}
type T1 struct {
ID string `db:"id,autoincr,pk"`
F1 string `db:"f1"`
F2 int `db:"f2,null"`
F3 int `db:"f3,notnull"`
F4 int `db:"f4,<-"`
FIgnore int `db:"-"`
CreatedAt time.Time `db:"created_at"`
UpdatedAt time.Time `db:"updated_at"`
DeletedAt time.Time `db:"deleted_at,deleted"`
}
type T1_1 struct {
ID string `db:"id,autoincr,pk"`
F1 string `db:"f1"`
F2 int `db:"f2,null"`
F3 int `db:"f3,notnull"`
F4 int `db:"f4,<-"`
FIgnore int `db:"-"`
CreatedAt time.Time `db:"created_at"`
UpdatedAt time.Time `db:"updated_at"`
DeletedAt time.Time `db:"deleted"`
}
type T1ForNoDeleted struct {
TableName struct{} `db:"t1_table"`
ID string `db:"id,autoincr,pk"`
F1 string `db:"f1"`
F2 int `db:"f2,null"`
F3 int `db:"f3,notnull"`
F4 int `db:"f4,<-"`
FIgnore int `db:"-"`
CreatedAt time.Time `db:"created_at"`
UpdatedAt time.Time `db:"updated_at"`
}
func init() {
gobatis.RegisterTableName(T1{}, "t1_table")
gobatis.RegisterTableName(T1_1{}, "t1_table")
}
type T2 struct {
TableName struct{} `db:"t2_table"`
ID string `db:"id,autoincr,pk"`
F1 string `db:"f1"`
F2 int `db:"f2"`
FIgnore int `db:"-"`
CreatedAt time.Time `db:"created_at"`
UpdatedAt time.Time `db:"updated_at"`
}
type T3 struct {
ID string `db:"id,autoincr,pk"`
F1 string `db:"f1"`
F2 int `db:"f2"`
FIgnore int `db:"-"`
CreatedAt time.Time `db:"created_at"`
UpdatedAt time.Time `db:"updated_at"`
}
func (t T3) TableName() string {
return "t3_table"
}
type T4 struct {
T2
F3 string `db:"f3"`
F4 int `db:"f4"`
FIgnore5 int `db:"-"`
}
type T5 struct {
ID string `db:"id,autoincr"`
F1 string `db:"f1"`
F2 int `db:"f2"`
FIgnore int `db:"-"`
CreatedAt time.Time `db:"created_at"`
UpdatedAt time.Time `db:"updated_at"`
}
func (t *T5) TableName() string {
return "t5_table"
}
type T6 struct {
ID string `db:"id,autoincr"`
F1 string `db:"f1"`
F2 int `db:"f2"`
FIgnore int `db:"-"`
CreatedAt time.Time `db:"created_at"`
UpdatedAt time.Time `db:"updated_at"`
}
func init() {
gobatis.RegisterTableName(&T6{}, "t6_table")
}
type T7 struct {
TableName struct{} `db:"t7_table"`
T2
F3 string `db:"f3"`
FIgnore4 int `db:"-"`
}
var mapper = gobatis.CreateMapper("", nil, nil)
type EmbededStruct struct {
E1 string `db:"e1"`
E2 int `db:"e2"`
FIgnore int `db:"-"`
}
type T8 struct {
TableName struct{} `db:"t8_table"`
ID string `db:"id,autoincr,pk"`
T2 EmbededStruct `db:"-"`
F1 string `db:"f1"`
F2 int `db:"f2,created"`
FIgnore3 int `db:"-"`
CreatedAt time.Time `db:"created_at"`
UpdatedAt time.Time `db:"updated_at"`
}
type T9 struct {
TableName struct{} `db:"t9_table"`
ID string `db:"id,autoincr,pk"`
T2 EmbededStruct `db:"e"`
F1 string `db:"f1"`
F2 int `db:"f2,created"`
CreatedAt time.Time `db:"created_at"`
UpdatedAt time.Time `db:"updated_at"`
}
type T10 struct {
TableName struct{} `db:"t10_table"`
ID string `db:"id,autoincr"`
F1 string `db:"f_1"`
F2 int `db:"f2,created"`
CreatedAt time.Time `db:"created_at"`
UpdatedAt time.Time `db:"updated_at"`
}
type T11 struct {
TableName struct{} `db:"t11_table"`
ID int `db:"id,autoincr"`
F1 []string `db:"f_1"`
CreatedAt time.Time `db:"created_at"`
UpdatedAt time.Time `db:"updated_at"`
}
type T12 struct {
TableName struct{} `db:"t12_table"`
ID int `db:"id,autoincr"`
F1 []string `db:"f_1,json"`
CreatedAt time.Time `db:"created_at"`
UpdatedAt time.Time `db:"updated_at"`
}
type T13 struct {
TableName struct{} `db:"t13_table"`
ID int `db:"id,autoincr"`
F1 string `db:"f1,notnull"`
F2 int `db:"f2,notnull"`
CreatedAt time.Time `db:"created_at"`
UpdatedAt time.Time `db:"updated_at"`
}
type T14 struct {
TableName struct{} `db:"t14_table"`
ID int `db:"id,autoincr"`
F1 string `db:"f1,notnull"`
}
type T15 struct {
TableName struct{} `db:"t15_table"`
ID int `db:"id,autoincr"`
F1 map[string]interface{} `db:"f1,notnull"`
}
type T16 struct {
TableName struct{} `db:"t16_table"`
ID string `db:"id,autoincr,pk"`
F1 string `db:"f1,unique"`
F2 int `db:"f2,null"`
F3 int `db:"f3,notnull"`
F4 int `db:"f4,<-"`
FIgnore int `db:"-"`
CreatedAt time.Time `db:"created_at"`
UpdatedAt time.Time `db:"updated_at"`
DeletedAt time.Time `db:"deleted_at,deleted"`
}
type T16_1 struct {
TableName struct{} `db:"t16_table"`
ID string `db:"id,autoincr,pk"`
F1 string `db:"f1,unique"`
F2 int `db:"f2,null"`
F3 int `db:"f3,notnull"`
F4 int `db:"f4,<-"`
FIgnore int `db:"-"`
CreatedAt time.Time `db:"created_at"`
UpdatedAt time.Time `db:"updated_at"`
DeletedAt time.Time `db:"deleted"`
}
type T17 struct {
TableName struct{} `db:"t17_table"`
ID string `db:"id,autoincr,pk"`
F1 string `db:"f1,unique"`
}
type T18 struct {
TableName struct{} `db:"t18_table"`
ID string `db:"id,autoincr,pk"`
F1 string `db:"f1"`
}
type Worklog struct {
TableName struct{} `json:"-" db:"worklogs"`
ID string `db:"id,autoincr,pk"`
PlanID int64 `json:"plan_id" db:"plan_id"`
UserID int64 `json:"user_id" db:"user_id"`
Description string `json:"description" db:"description"`
CreatedAt time.Time `json:"created_at,omitempty" db:"created_at,created"`
}
type T19 struct {
TableName struct{} `db:"t19_table"`
ID string `db:"id,autoincr,pk"`
F1 string `db:"f_1,unique"`
F2 int `db:"f2,null"`
F3 int `db:"f3,notnull"`
F4 int `db:"f4,<-"`
FIgnore int `db:"-"`
CreatedAt time.Time `db:"created_at"`
UpdatedAt time.Time `db:"updated_at"`
DeletedAt time.Time `db:"deleted_at,deleted"`
}
type T19_1 struct {
TableName struct{} `db:"t19_table"`
ID string `db:"id,autoincr,pk"`
F1 string `db:"f_1,unique"`
F2 int `db:"f2,null"`
F3 int `db:"f3,notnull"`
F4 int `db:"f4,<-"`
FIgnore int `db:"-"`
CreatedAt time.Time `db:"created_at"`
UpdatedAt time.Time `db:"updated_at"`
DeletedAt time.Time `db:"deleted"`
}
var (
_stringType = reflect.TypeOf(new(string)).Elem()
_intType = reflect.TypeOf(new(int)).Elem()
_timeType = reflect.TypeOf(new(time.Time)).Elem()
)
func TestTableNameOK(t *testing.T) {
for idx, test := range []struct {
value interface{}
tableName string
}{
{value: T1{}, tableName: "t1_table"},
{value: &T1{}, tableName: "t1_table"},
{value: T2{}, tableName: "t2_table"},
{value: &T2{}, tableName: "t2_table"},
{value: T3{}, tableName: "t3_table"},
{value: &T3{}, tableName: "t3_table"},
{value: T4{}, tableName: "t2_table"},
{value: &T4{}, tableName: "t2_table"},
{value: T5{}, tableName: "t5_table"},
{value: &T5{}, tableName: "t5_table"},
{value: T6{}, tableName: "t6_table"},
{value: &T6{}, tableName: "t6_table"},
} {
actaul, err := gobatis.ReadTableName(mapper, reflect.TypeOf(test.value))
if err != nil {
t.Error(err)
continue
}
if actaul != test.tableName {
t.Error("[", idx, "] excepted is", test.tableName)
t.Error("[", idx, "] actual is", actaul)
}
}
}
func TestTableNameError(t *testing.T) {
for idx, test := range []struct {
value interface{}
err string
}{
{value: T7{}, err: "mult choices"},
{value: &T7{}, err: "mult choices"},
{value: struct{}{}, err: "missing"},
} {
_, err := gobatis.ReadTableName(mapper, reflect.TypeOf(test.value))
if err == nil {
t.Error("excepted error got ok")
continue
}
if !strings.Contains(err.Error(), test.err) {
t.Error("[", idx, "] excepted is", test.err)
t.Error("[", idx, "] actual is", err)
}
}
}
type Assoc1 struct {
TableName struct{} `db:"assoc_table"`
F1 int `db:"f1,unique"`
F2 int `db:"f2,unique"`
}
type Assoc2 struct {
TableName struct{} `db:"assoc_table"`
ID int `db:"id,autoincr"`
F1 int `db:"f1,unique"`
F2 int `db:"f2,unique"`
}
type Assoc3 struct {
TableName struct{} `db:"assoc_table"`
ID int `db:"id,pk,autoincr"`
F1 int `db:"f1,unique"`
F2 int `db:"f2,unique"`
}
type Assoc4 struct {
TableName struct{} `db:"assoc_table"`
ID int `db:"id,autoincr"`
F1 int `db:"f1,unique"`
F2 int `db:"f2,unique"`
CreatedAt time.Time `db:"created_at"`
UpdatedAt time.Time `db:"updated_at"`
}
func TestGenerateUpsertSQL(t *testing.T) {
for idx, test := range []struct {
dbType gobatis.Dialect
value interface{}
keyNames []string
argNames []string
argTypes []reflect.Type
noReturn bool
sql string
IncrField bool
}{
{dbType: gobatis.Postgres, value: T16_1{}, sql: "INSERT INTO t16_table(f1, f2, f3, created_at, updated_at) VALUES(#{f1}, #{f2}, #{f3}, now(), now()) ON CONFLICT (f1) DO UPDATE SET f2=EXCLUDED.f2, f3=EXCLUDED.f3, updated_at=EXCLUDED.updated_at RETURNING id"},
{dbType: gobatis.Postgres, value: T16{}, sql: "INSERT INTO t16_table(f1, f2, f3, created_at, updated_at) VALUES(#{f1}, #{f2}, #{f3}, now(), now()) ON CONFLICT (f1) DO UPDATE SET f2=EXCLUDED.f2, f3=EXCLUDED.f3, updated_at=EXCLUDED.updated_at RETURNING id"},
{dbType: gobatis.Mysql, value: T16{}, sql: "INSERT INTO t16_table(f1, f2, f3, created_at, updated_at) VALUES(#{f1}, #{f2}, #{f3}, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP) ON DUPLICATE KEY UPDATE f2=VALUES(f2), f3=VALUES(f3), updated_at=VALUES(updated_at)"},
{dbType: gobatis.MSSql, value: T16{}, sql: `MERGE INTO t16_table AS t USING ( VALUES(#{f1}, #{f2}, #{f3}, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP ) ) AS s (f1, f2, f3, created_at, updated_at ) ON t.f1 = s.f1 WHEN MATCHED THEN UPDATE SET f2 = s.f2, f3 = s.f3, updated_at = s.updated_at WHEN NOT MATCHED THEN INSERT (f1, f2, f3, created_at, updated_at) VALUES(s.f1, s.f2, s.f3, s.created_at, s.updated_at) OUTPUT inserted.id;`},
{dbType: gobatis.MSSql, value: T16_1{}, sql: `MERGE INTO t16_table AS t USING ( VALUES(#{f1}, #{f2}, #{f3}, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP ) ) AS s (f1, f2, f3, created_at, updated_at ) ON t.f1 = s.f1 WHEN MATCHED THEN UPDATE SET f2 = s.f2, f3 = s.f3, updated_at = s.updated_at WHEN NOT MATCHED THEN INSERT (f1, f2, f3, created_at, updated_at) VALUES(s.f1, s.f2, s.f3, s.created_at, s.updated_at) OUTPUT inserted.id;`},
{dbType: gobatis.Postgres, value: T18{}, sql: "INSERT INTO t18_table(id, f1) VALUES(#{id}, #{f1}) ON CONFLICT (id) DO UPDATE SET f1=EXCLUDED.f1 RETURNING id", IncrField: true},
{dbType: gobatis.Postgres, value: T17{}, sql: "INSERT INTO t17_table(f1) VALUES(#{f1}) ON CONFLICT (f1) DO NOTHING RETURNING id"},
// {dbType: gobatis.Mysql, value: T17{}, sql: "INSERT INTO t17_table(f1) VALUES(#{f1}) ON DUPLICATE KEY UPDATE "},
{dbType: gobatis.MSSql, value: T17{}, sql: `MERGE INTO t17_table AS t USING ( VALUES(#{f1} ) ) AS s (f1 ) ON t.f1 = s.f1 WHEN NOT MATCHED THEN INSERT (f1) VALUES(s.f1) OUTPUT inserted.id;`},
{
dbType: gobatis.Postgres,
value: T16{},
keyNames: []string{"f1"},
argNames: []string{"f2"},
argTypes: []reflect.Type{_intType},
sql: "INSERT INTO t16_table(f1, f2, created_at, updated_at) VALUES(#{f1}, #{f2}, now(), now()) ON CONFLICT (f1) DO UPDATE SET f2=EXCLUDED.f2, updated_at=EXCLUDED.updated_at RETURNING id",
},
{
dbType: gobatis.Postgres,
value: T16{},
keyNames: []string{"f1"},
argNames: []string{"f2", "f3"},
argTypes: []reflect.Type{_stringType, _stringType},
sql: "INSERT INTO t16_table(f1, f2, f3, created_at, updated_at) VALUES(#{f1}, #{f2}, #{f3}, now(), now()) ON CONFLICT (f1) DO UPDATE SET f2=EXCLUDED.f2, f3=EXCLUDED.f3, updated_at=EXCLUDED.updated_at RETURNING id",
},
{
dbType: gobatis.Postgres,
value: T16{},
keyNames: []string{"f1"},
argNames: []string{"f2", "f3", "created_at", "updated_at"},
argTypes: []reflect.Type{_intType, _intType, _timeType, _timeType},
sql: "INSERT INTO t16_table(f1, f2, f3, created_at, updated_at) VALUES(#{f1}, #{f2}, #{f3}, now(), now()) ON CONFLICT (f1) DO UPDATE SET f2=EXCLUDED.f2, f3=EXCLUDED.f3, updated_at=EXCLUDED.updated_at RETURNING id",
},
{
dbType: gobatis.Postgres,
value: T19{},
keyNames: []string{"f1"},
argNames: []string{"f2", "f3", "created_at", "updated_at"},
argTypes: []reflect.Type{_intType, _intType, _timeType, _timeType},
sql: "INSERT INTO t19_table(f_1, f2, f3, created_at, updated_at) VALUES(#{f1}, #{f2}, #{f3}, now(), now()) ON CONFLICT (f_1) DO UPDATE SET f2=EXCLUDED.f2, f3=EXCLUDED.f3, updated_at=EXCLUDED.updated_at RETURNING id",
},
// type Assoc1 struct {
// TableName struct{} `db:"assoc_table"`
// F1 int `db:"f1,unique"`
// F2 int `db:"f2,unique"`
// }
{
dbType: gobatis.Postgres,
value: Assoc1{},
keyNames: []string{},
argNames: []string{"f1", "f2"},
argTypes: []reflect.Type{_intType, _intType},
sql: "INSERT INTO assoc_table(f1, f2) VALUES(#{f1}, #{f2}) ON CONFLICT (f1, f2) DO NOTHING ",
},
{
dbType: gobatis.Postgres,
value: Assoc1{},
keyNames: []string{},
argNames: []string{"a"},
argTypes: []reflect.Type{reflect.TypeOf(new(Assoc1)).Elem()},
sql: "INSERT INTO assoc_table(f1, f2) VALUES(#{f1}, #{f2}) ON CONFLICT (f1, f2) DO NOTHING ",
},
{
dbType: gobatis.MSSql,
value: Assoc1{},
keyNames: []string{},
argNames: []string{"f1", "f2"},
argTypes: []reflect.Type{_intType, _intType},
sql: "MERGE INTO assoc_table AS t USING ( VALUES(#{f1}, #{f2} ) ) AS s (f1, f2 ) ON t.f1 = s.f1 AND t.f2 = s.f2 WHEN NOT MATCHED THEN INSERT (f1, f2) VALUES(s.f1, s.f2) ;",
},
{
dbType: gobatis.MSSql,
value: Assoc1{},
keyNames: []string{},
argNames: []string{"a"},
argTypes: []reflect.Type{reflect.TypeOf(new(Assoc1)).Elem()},
sql: "MERGE INTO assoc_table AS t USING ( VALUES(#{f1}, #{f2} ) ) AS s (f1, f2 ) ON t.f1 = s.f1 AND t.f2 = s.f2 WHEN NOT MATCHED THEN INSERT (f1, f2) VALUES(s.f1, s.f2) ;",
},
{
dbType: gobatis.Oracle,
value: Assoc1{},
keyNames: []string{},
argNames: []string{"f1", "f2"},
argTypes: []reflect.Type{_intType, _intType},
sql: "MERGE INTO assoc_table AS t USING dual ON t.f1= #{f1} AND t.f2= #{f2} WHEN NOT MATCHED THEN INSERT (f1, f2) VALUES(#{f1}, #{f2}) ",
},
{
dbType: gobatis.Oracle,
value: Assoc1{},
keyNames: []string{},
argNames: []string{"a"},
argTypes: []reflect.Type{reflect.TypeOf(new(Assoc1)).Elem()},
sql: "MERGE INTO assoc_table AS t USING dual ON t.f1= #{f1} AND t.f2= #{f2} WHEN NOT MATCHED THEN INSERT (f1, f2) VALUES(#{f1}, #{f2}) ",
},
// {
// dbType: gobatis.Mysql,
// value: Assoc1{},
// keyNames: []string{},
// argNames: []string{"f1", "f2"},
// argTypes: []reflect.Type{_intType, _intType},
// sql: "MERGE INTO assoc_table USING dual ON assoc_table.#{f1}=f1 AND assoc_table.f2=#{f2} WHEN NOT MATCHED THEN INSERT (f1, f2) VALUES(#{f1}, #{f2});",
// },
// type Assoc2 struct {
// TableName struct{} `db:"assoc_table"`
// ID int `db:"id,autoincr"`
// F1 int `db:"f1,unique"`
// F2 int `db:"f2,unique"`
// }
{
dbType: gobatis.Postgres,
value: Assoc2{},
keyNames: []string{},
argNames: []string{"f1", "f2"},
argTypes: []reflect.Type{_intType, _intType},
sql: "INSERT INTO assoc_table(f1, f2) VALUES(#{f1}, #{f2}) ON CONFLICT (f1, f2) DO NOTHING RETURNING id",
},
{
dbType: gobatis.Postgres,
value: Assoc2{},
keyNames: []string{},
argNames: []string{"a"},
argTypes: []reflect.Type{reflect.TypeOf(new(Assoc2)).Elem()},
sql: "INSERT INTO assoc_table(f1, f2) VALUES(#{f1}, #{f2}) ON CONFLICT (f1, f2) DO NOTHING RETURNING id",
},
{
dbType: gobatis.MSSql,
value: Assoc2{},
keyNames: []string{},
argNames: []string{"f1", "f2"},
argTypes: []reflect.Type{_intType, _intType},
sql: "MERGE INTO assoc_table AS t USING ( VALUES(#{f1}, #{f2} ) ) AS s (f1, f2 ) ON t.f1 = s.f1 AND t.f2 = s.f2 WHEN NOT MATCHED THEN INSERT (f1, f2) VALUES(s.f1, s.f2) OUTPUT inserted.id;",
},
{
dbType: gobatis.MSSql,
value: Assoc2{},
keyNames: []string{},
argNames: []string{"a"},
argTypes: []reflect.Type{reflect.TypeOf(new(Assoc2)).Elem()},
sql: "MERGE INTO assoc_table AS t USING ( VALUES(#{f1}, #{f2} ) ) AS s (f1, f2 ) ON t.f1 = s.f1 AND t.f2 = s.f2 WHEN NOT MATCHED THEN INSERT (f1, f2) VALUES(s.f1, s.f2) OUTPUT inserted.id;",
},
{
dbType: gobatis.Oracle,
value: Assoc2{},
keyNames: []string{},
argNames: []string{"f1", "f2"},
argTypes: []reflect.Type{_intType, _intType},
sql: "MERGE INTO assoc_table AS t USING dual ON t.f1= #{f1} AND t.f2= #{f2} WHEN NOT MATCHED THEN INSERT (f1, f2) VALUES(#{f1}, #{f2}) ",
},
{
dbType: gobatis.Oracle,
value: Assoc2{},
keyNames: []string{},
argNames: []string{"a"},
argTypes: []reflect.Type{reflect.TypeOf(new(Assoc2)).Elem()},
sql: "MERGE INTO assoc_table AS t USING dual ON t.f1= #{f1} AND t.f2= #{f2} WHEN NOT MATCHED THEN INSERT (f1, f2) VALUES(#{f1}, #{f2}) ",
},
// {
// dbType: gobatis.Mysql,
// value: Assoc2{},
// keyNames: []string{},
// argNames: []string{"f1", "f2"},
// argTypes: []reflect.Type{_intType, _intType},
// sql: "MERGE INTO assoc_table USING dual ON assoc_table.#{f1}=f1 AND assoc_table.f2=#{f2} WHEN NOT MATCHED THEN INSERT (f1, f2) VALUES(#{f1}, #{f2});",
// },
// type Assoc3 struct {
// TableName struct{} `db:"assoc_table"`
// ID int `db:"id,pk,autoincr"`
// F1 int `db:"f1,unique"`
// F2 int `db:"f2,unique"`
// }
{
dbType: gobatis.Postgres,
value: Assoc3{},
keyNames: []string{},
argNames: []string{"f1", "f2"},
argTypes: []reflect.Type{_intType, _intType},
sql: "INSERT INTO assoc_table(f1, f2) VALUES(#{f1}, #{f2}) ON CONFLICT (f1, f2) DO NOTHING RETURNING id",
},
{
dbType: gobatis.MSSql,
value: Assoc3{},
keyNames: []string{},
argNames: []string{"f1", "f2"},
argTypes: []reflect.Type{_intType, _intType},
sql: "MERGE INTO assoc_table AS t USING ( VALUES(#{f1}, #{f2} ) ) AS s (f1, f2 ) ON t.f1 = s.f1 AND t.f2 = s.f2 WHEN NOT MATCHED THEN INSERT (f1, f2) VALUES(s.f1, s.f2) OUTPUT inserted.id;",
},
{
dbType: gobatis.Oracle,
value: Assoc3{},
keyNames: []string{},
argNames: []string{"f1", "f2"},
argTypes: []reflect.Type{_intType, _intType},
sql: "MERGE INTO assoc_table AS t USING dual ON t.f1= #{f1} AND t.f2= #{f2} WHEN NOT MATCHED THEN INSERT (f1, f2) VALUES(#{f1}, #{f2}) ",
},
// {
// dbType: gobatis.Mysql,
// value: Assoc3{},
// keyNames: []string{},
// argNames: []string{"f1", "f2"},
// argTypes: []reflect.Type{_intType, _intType},
// sql: "MERGE INTO assoc_table USING dual ON assoc_table.#{f1}=f1 AND assoc_table.f2=#{f2} WHEN NOT MATCHED THEN INSERT (f1, f2) VALUES(#{f1}, #{f2});",
// },
// type Assoc4 struct {
// TableName struct{} `db:"assoc_table"`
// ID int `db:"id,autoincr"`
// F1 int `db:"f1,unique"`
// F2 int `db:"f2,unique"`
// CreatedAt time.Time `db:"created_at"`
// UpdatedAt time.Time `db:"updated_at"`
// }
{
dbType: gobatis.Postgres,
value: Assoc4{},
keyNames: []string{},
argNames: []string{"f1", "f2"},
argTypes: []reflect.Type{_intType, _intType},
sql: "INSERT INTO assoc_table(f1, f2, created_at, updated_at) VALUES(#{f1}, #{f2}, now(), now()) ON CONFLICT (f1, f2) DO UPDATE SET updated_at=EXCLUDED.updated_at RETURNING id",
},
{
dbType: gobatis.Postgres,
value: Assoc4{},
keyNames: []string{},
argNames: []string{"a"},
argTypes: []reflect.Type{reflect.TypeOf(new(Assoc4)).Elem()},
sql: "INSERT INTO assoc_table(f1, f2, created_at, updated_at) VALUES(#{f1}, #{f2}, now(), now()) ON CONFLICT (f1, f2) DO UPDATE SET updated_at=EXCLUDED.updated_at RETURNING id",
},
{
dbType: gobatis.MSSql,
value: Assoc4{},
keyNames: []string{},
argNames: []string{"f1", "f2"},
argTypes: []reflect.Type{_intType, _intType},
sql: "MERGE INTO assoc_table AS t USING ( VALUES(#{f1}, #{f2}, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP ) ) AS s (f1, f2, created_at, updated_at ) ON t.f1 = s.f1 AND t.f2 = s.f2 WHEN MATCHED THEN UPDATE SET updated_at = s.updated_at WHEN NOT MATCHED THEN INSERT (f1, f2, created_at, updated_at) VALUES(s.f1, s.f2, s.created_at, s.updated_at) OUTPUT inserted.id;",
},
{
dbType: gobatis.MSSql,
value: Assoc4{},
keyNames: []string{},
argNames: []string{"a"},
argTypes: []reflect.Type{reflect.TypeOf(new(Assoc4)).Elem()},
sql: "MERGE INTO assoc_table AS t USING ( VALUES(#{f1}, #{f2}, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP ) ) AS s (f1, f2, created_at, updated_at ) ON t.f1 = s.f1 AND t.f2 = s.f2 WHEN MATCHED THEN UPDATE SET updated_at = s.updated_at WHEN NOT MATCHED THEN INSERT (f1, f2, created_at, updated_at) VALUES(s.f1, s.f2, s.created_at, s.updated_at) OUTPUT inserted.id;",
},
{
dbType: gobatis.Oracle,
value: Assoc4{},
keyNames: []string{},
argNames: []string{"f1", "f2"},
argTypes: []reflect.Type{_intType, _intType},
sql: "MERGE INTO assoc_table AS t USING dual ON t.f1= #{f1} AND t.f2= #{f2} WHEN MATCHED THEN UPDATE SET updated_at= CURRENT_TIMESTAMP WHEN NOT MATCHED THEN INSERT (f1, f2, created_at, updated_at) VALUES(#{f1}, #{f2}, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP) ",
},
{
dbType: gobatis.Oracle,
value: Assoc4{},
keyNames: []string{},
argNames: []string{"a"},
argTypes: []reflect.Type{reflect.TypeOf(new(Assoc4)).Elem()},
sql: "MERGE INTO assoc_table AS t USING dual ON t.f1= #{f1} AND t.f2= #{f2} WHEN MATCHED THEN UPDATE SET updated_at= CURRENT_TIMESTAMP WHEN NOT MATCHED THEN INSERT (f1, f2, created_at, updated_at) VALUES(#{f1}, #{f2}, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP) ",
},
// {
// dbType: gobatis.Mysql,
// value: Assoc4{},
// keyNames: []string{},
// argNames: []string{"f1", "f2"},
// argTypes: []reflect.Type{_intType, _intType},
// sql: "MERGE INTO assoc_table USING dual ON assoc_table.#{f1}=f1 AND assoc_table.f2=#{f2} WHEN NOT MATCHED THEN INSERT (f1, f2) VALUES(#{f1}, #{f2});",
// },
} {
old := gobatis.UpsertSupportAutoIncrField
gobatis.UpsertSupportAutoIncrField = test.IncrField
actaul, err := gobatis.GenerateUpsertSQL(test.dbType, mapper, reflect.TypeOf(test.value), test.keyNames, test.argNames, test.argTypes, false)
gobatis.UpsertSupportAutoIncrField = old
if err != nil {
t.Error("[", idx, "]", err)
continue
}
if actaul != test.sql {
t.Error("[", idx, "] excepted is", test.sql, "|")
t.Error("[", idx, "] actual is", actaul, "|")
}
}
for idx, test := range []struct {
dbType gobatis.Dialect
value interface{}
keyNames []string
argNames []string
argTypes []reflect.Type
noReturn bool
err string
}{
{
dbType: gobatis.Mysql,
value: T17{},
err: "empty update fields",
},
{
dbType: gobatis.Postgres,
value: T16{},
keyNames: []string{},
argNames: []string{"f2", "f3", "created_at", "updated_at"},
argTypes: []reflect.Type{_stringType, _intType, _intType, _timeType, _timeType},
err: "argument 'f1' is missing",
},
} {
sql, err := gobatis.GenerateUpsertSQL(test.dbType, mapper, reflect.TypeOf(test.value), test.keyNames, test.argNames, test.argTypes, test.noReturn)
if err == nil {
t.Error("[", idx, "]", "want error got ok")
t.Log(sql)
continue
}
if !strings.Contains(err.Error(), test.err) {
t.Error("[", idx, "] excepted is", test.err)
t.Error("[", idx, "] actual is", err.Error())
}
}
}
func TestGenerateInsertSQL(t *testing.T) {
for idx, test := range []struct {
dbType gobatis.Dialect
value interface{}
names []string
argTypes []reflect.Type
noReturn bool
sql string
}{
{dbType: gobatis.Postgres, value: T1{}, sql: "INSERT INTO t1_table(f1, f2, f3, created_at, updated_at) VALUES(#{f1}, #{f2}, #{f3}, now(), now()) RETURNING id"},
{dbType: gobatis.Postgres, value: &T1{}, sql: "INSERT INTO t1_table(f1, f2, f3, created_at, updated_at) VALUES(#{f1}, #{f2}, #{f3}, now(), now()) RETURNING id"},
{dbType: gobatis.Postgres, value: T2{}, sql: "INSERT INTO t2_table(f1, f2, created_at, updated_at) VALUES(#{f1}, #{f2}, now(), now()) RETURNING id"},
{dbType: gobatis.Postgres, value: &T2{}, sql: "INSERT INTO t2_table(f1, f2, created_at, updated_at) VALUES(#{f1}, #{f2}, now(), now()) RETURNING id"},
{dbType: gobatis.Postgres, value: T3{}, sql: "INSERT INTO t3_table(f1, f2, created_at, updated_at) VALUES(#{f1}, #{f2}, now(), now()) RETURNING id"},
{dbType: gobatis.Postgres, value: &T3{}, sql: "INSERT INTO t3_table(f1, f2, created_at, updated_at) VALUES(#{f1}, #{f2}, now(), now()) RETURNING id"},
{dbType: gobatis.Postgres, value: T4{}, sql: "INSERT INTO t2_table(f3, f4, f1, f2, created_at, updated_at) VALUES(#{f3}, #{f4}, #{f1}, #{f2}, now(), now()) RETURNING id"},
{dbType: gobatis.Postgres, value: &T4{}, sql: "INSERT INTO t2_table(f3, f4, f1, f2, created_at, updated_at) VALUES(#{f3}, #{f4}, #{f1}, #{f2}, now(), now()) RETURNING id"},
{dbType: gobatis.Postgres, value: T4{}, sql: "INSERT INTO t2_table(f3, f4, f1, f2, created_at, updated_at) VALUES(#{f3}, #{f4}, #{f1}, #{f2}, now(), now())", noReturn: true},
{dbType: gobatis.Postgres, value: &T4{}, sql: "INSERT INTO t2_table(f3, f4, f1, f2, created_at, updated_at) VALUES(#{f3}, #{f4}, #{f1}, #{f2}, now(), now())", noReturn: true},
{dbType: gobatis.Mysql, value: T4{}, sql: "INSERT INTO t2_table(f3, f4, f1, f2, created_at, updated_at) VALUES(#{f3}, #{f4}, #{f1}, #{f2}, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP)"},
{dbType: gobatis.Mysql, value: &T4{}, sql: "INSERT INTO t2_table(f3, f4, f1, f2, created_at, updated_at) VALUES(#{f3}, #{f4}, #{f1}, #{f2}, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP)"},
{dbType: gobatis.Postgres, value: T8{}, sql: "INSERT INTO t8_table(f1, f2, created_at, updated_at) VALUES(#{f1}, #{f2}, now(), now()) RETURNING id"},
{dbType: gobatis.Postgres, value: &T8{}, sql: "INSERT INTO t8_table(f1, f2, created_at, updated_at) VALUES(#{f1}, #{f2}, now(), now()) RETURNING id"},
{dbType: gobatis.Postgres, value: T9{}, sql: "INSERT INTO t9_table(e, f1, f2, created_at, updated_at) VALUES(#{e}, #{f1}, #{f2}, now(), now()) RETURNING id"},
{dbType: gobatis.Postgres, value: &T9{}, sql: "INSERT INTO t9_table(e, f1, f2, created_at, updated_at) VALUES(#{e}, #{f1}, #{f2}, now(), now()) RETURNING id"},
{dbType: gobatis.MSSql, value: &T4{}, sql: "INSERT INTO t2_table(f3, f4, f1, f2, created_at, updated_at) OUTPUT inserted.id VALUES(#{f3}, #{f4}, #{f1}, #{f2}, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP)"},
{dbType: gobatis.MSSql, value: &T4{}, sql: "INSERT INTO t2_table(f3, f4, f1, f2, created_at, updated_at) VALUES(#{f3}, #{f4}, #{f1}, #{f2}, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP)", noReturn: true},
{dbType: gobatis.MSSql, value: &T14{},
sql: "INSERT INTO t14_table(f1) VALUES(#{f1,notnull=true})",
names: []string{"f1"},
argTypes: []reflect.Type{_stringType},
noReturn: true},
{dbType: gobatis.MSSql, value: &T14{},
sql: "INSERT INTO t14_table(f1) VALUES(#{f1,notnull=true})",
names: []string{"f1"},
argTypes: []reflect.Type{_intType},
noReturn: true},
{dbType: gobatis.MSSql, value: &T14{},
sql: "INSERT INTO t14_table(f1) VALUES(#{f1,notnull=true})",
names: []string{"f1"},
argTypes: []reflect.Type{nil},
noReturn: true},
{dbType: gobatis.MSSql, value: &T14{},
sql: "INSERT INTO t14_table(f1) VALUES(#{f1.f1})",
names: []string{"f1"},
argTypes: []reflect.Type{reflect.TypeOf(new(T14)).Elem()},
noReturn: true},
{dbType: gobatis.MSSql, value: &T15{},
sql: "INSERT INTO t15_table(f1) VALUES(#{f1.f1})",
names: []string{"f1"},
argTypes: []reflect.Type{reflect.TypeOf(new(T15)).Elem()},
noReturn: true},
} {
actaul, err := gobatis.GenerateInsertSQL(test.dbType, mapper, reflect.TypeOf(test.value), test.names, test.argTypes, test.noReturn)
if err != nil {
t.Error(err)
continue
}
if actaul != test.sql {
t.Error("[", idx, "] excepted is", test.sql)
t.Error("[", idx, "] actual is", actaul)
}
}
_, err := gobatis.GenerateInsertSQL(gobatis.Mysql,
mapper, reflect.TypeOf(&T7{}), nil, nil, false)
if err == nil {
t.Error("excepted error got ok")
return
}
}
func TestGenerateInsertSQL2(t *testing.T) {
for idx, test := range []struct {
dbType gobatis.Dialect
fields []string
value interface{}
noReturn bool
sql string
}{
{dbType: gobatis.Postgres, value: T1{}, fields: []string{"f1", "f2", "f3"}, sql: "INSERT INTO t1_table(f1, f2, f3, created_at, updated_at) VALUES(#{f1}, #{f2,null=true}, #{f3,notnull=true}, now(), now()) RETURNING id"},
{dbType: gobatis.Postgres, value: &T1{}, fields: []string{"f1", "f2", "f3"}, sql: "INSERT INTO t1_table(f1, f2, f3, created_at, updated_at) VALUES(#{f1}, #{f2,null=true}, #{f3,notnull=true}, now(), now()) RETURNING id"},
{dbType: gobatis.Postgres, value: T2{}, fields: []string{"f1", "f2"}, sql: "INSERT INTO t2_table(f1, f2, created_at, updated_at) VALUES(#{f1}, #{f2}, now(), now()) RETURNING id"},
{dbType: gobatis.Postgres, value: &T2{}, fields: []string{"f1", "f2"}, sql: "INSERT INTO t2_table(f1, f2, created_at, updated_at) VALUES(#{f1}, #{f2}, now(), now()) RETURNING id"},
{dbType: gobatis.Postgres, value: T3{}, fields: []string{"f1", "f2"}, sql: "INSERT INTO t3_table(f1, f2, created_at, updated_at) VALUES(#{f1}, #{f2}, now(), now()) RETURNING id"},
{dbType: gobatis.Postgres, value: &T3{}, fields: []string{"f1", "f2"}, sql: "INSERT INTO t3_table(f1, f2, created_at, updated_at) VALUES(#{f1}, #{f2}, now(), now()) RETURNING id"},
{dbType: gobatis.Postgres, value: T4{}, fields: []string{"f1", "f2", "f3", "f4"}, sql: "INSERT INTO t2_table(f3, f4, f1, f2, created_at, updated_at) VALUES(#{f3}, #{f4}, #{f1}, #{f2}, now(), now()) RETURNING id"},
{dbType: gobatis.Postgres, value: &T4{}, fields: []string{"f1", "f2", "f3", "f4"}, sql: "INSERT INTO t2_table(f3, f4, f1, f2, created_at, updated_at) VALUES(#{f3}, #{f4}, #{f1}, #{f2}, now(), now()) RETURNING id"},
{dbType: gobatis.Postgres, value: T4{}, fields: []string{"f1", "f2", "f3", "f4"}, sql: "INSERT INTO t2_table(f3, f4, f1, f2, created_at, updated_at) VALUES(#{f3}, #{f4}, #{f1}, #{f2}, now(), now())", noReturn: true},
{dbType: gobatis.Postgres, value: &T4{}, fields: []string{"f1", "f2", "f3", "f4"}, sql: "INSERT INTO t2_table(f3, f4, f1, f2, created_at, updated_at) VALUES(#{f3}, #{f4}, #{f1}, #{f2}, now(), now())", noReturn: true},
{dbType: gobatis.Mysql, value: T4{}, fields: []string{"f1", "f2", "f3", "f4"}, sql: "INSERT INTO t2_table(f3, f4, f1, f2, created_at, updated_at) VALUES(#{f3}, #{f4}, #{f1}, #{f2}, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP)"},
{dbType: gobatis.Mysql, value: &T4{}, fields: []string{"f1", "f2", "f3", "f4"}, sql: "INSERT INTO t2_table(f3, f4, f1, f2, created_at, updated_at) VALUES(#{f3}, #{f4}, #{f1}, #{f2}, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP)"},
{dbType: gobatis.Postgres, value: T8{}, fields: []string{"f1", "f2"}, sql: "INSERT INTO t8_table(f1, f2, created_at, updated_at) VALUES(#{f1}, #{f2}, now(), now()) RETURNING id"},
{dbType: gobatis.Postgres, value: &T8{}, fields: []string{"f1", "f2"}, sql: "INSERT INTO t8_table(f1, f2, created_at, updated_at) VALUES(#{f1}, #{f2}, now(), now()) RETURNING id"},
{dbType: gobatis.Postgres, value: T9{}, fields: []string{"f1", "f2", "e"}, sql: "INSERT INTO t9_table(e, f1, f2, created_at, updated_at) VALUES(#{e}, #{f1}, #{f2}, now(), now()) RETURNING id"},
{dbType: gobatis.Postgres, value: &T9{}, fields: []string{"f1", "f2", "e"}, sql: "INSERT INTO t9_table(e, f1, f2, created_at, updated_at) VALUES(#{e}, #{f1}, #{f2}, now(), now()) RETURNING id"},
{dbType: gobatis.MSSql, value: &T4{}, fields: []string{"f1", "f2", "f3", "f4"}, sql: "INSERT INTO t2_table(f3, f4, f1, f2, created_at, updated_at) OUTPUT inserted.id VALUES(#{f3}, #{f4}, #{f1}, #{f2}, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP)"},
{dbType: gobatis.MSSql, value: &T4{}, fields: []string{"f1", "f2", "f3", "f4"}, sql: "INSERT INTO t2_table(f3, f4, f1, f2, created_at, updated_at) VALUES(#{f3}, #{f4}, #{f1}, #{f2}, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP)", noReturn: true},
{dbType: gobatis.Postgres, value: T10{}, fields: []string{"f_1", "f2"}, sql: "INSERT INTO t10_table(f_1, f2, created_at, updated_at) VALUES(#{f_1}, #{f2}, now(), now()) RETURNING id"},
{dbType: gobatis.Postgres, value: &T10{}, fields: []string{"f_1", "f2"}, sql: "INSERT INTO t10_table(f_1, f2, created_at, updated_at) VALUES(#{f_1}, #{f2}, now(), now()) RETURNING id"},
{dbType: gobatis.MSSql, value: T10{}, fields: []string{"f_1", "f2"}, sql: "INSERT INTO t10_table(f_1, f2, created_at, updated_at) OUTPUT inserted.id VALUES(#{f_1}, #{f2}, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP)"},
{dbType: gobatis.MSSql, value: &T10{}, fields: []string{"f_1", "f2"}, sql: "INSERT INTO t10_table(f_1, f2, created_at, updated_at) OUTPUT inserted.id VALUES(#{f_1}, #{f2}, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP)"},
{dbType: gobatis.Postgres, value: T10{}, fields: []string{"f1", "f2"}, sql: "INSERT INTO t10_table(f_1, f2, created_at, updated_at) VALUES(#{f1}, #{f2}, now(), now()) RETURNING id"},
{dbType: gobatis.Postgres, value: &T10{}, fields: []string{"f1", "f2"}, sql: "INSERT INTO t10_table(f_1, f2, created_at, updated_at) VALUES(#{f1}, #{f2}, now(), now()) RETURNING id"},
{dbType: gobatis.MSSql, value: T10{}, fields: []string{"f1", "f2"}, sql: "INSERT INTO t10_table(f_1, f2, created_at, updated_at) OUTPUT inserted.id VALUES(#{f1}, #{f2}, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP)"},
{dbType: gobatis.MSSql, value: &T10{}, fields: []string{"f1", "f2"}, sql: "INSERT INTO t10_table(f_1, f2, created_at, updated_at) OUTPUT inserted.id VALUES(#{f1}, #{f2}, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP)"},
{dbType: gobatis.Postgres, value: T10{}, fields: []string{"f1", "f2", "created_at", "updated_at"}, sql: "INSERT INTO t10_table(f_1, f2, created_at, updated_at) VALUES(#{f1}, #{f2}, now(), now()) RETURNING id"},
{dbType: gobatis.Postgres, value: &T10{}, fields: []string{"f1", "f2", "created_at", "updated_at"}, sql: "INSERT INTO t10_table(f_1, f2, created_at, updated_at) VALUES(#{f1}, #{f2}, now(), now()) RETURNING id"},
{dbType: gobatis.MSSql, value: T10{}, fields: []string{"f1", "f2", "created_at", "updated_at"}, sql: "INSERT INTO t10_table(f_1, f2, created_at, updated_at) OUTPUT inserted.id VALUES(#{f1}, #{f2}, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP)"},
{dbType: gobatis.MSSql, value: &T10{}, fields: []string{"f1", "f2", "created_at", "updated_at"}, sql: "INSERT INTO t10_table(f_1, f2, created_at, updated_at) OUTPUT inserted.id VALUES(#{f1}, #{f2}, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP)"},
} {
actaul, err := gobatis.GenerateInsertSQL2(test.dbType,
mapper, reflect.TypeOf(test.value), test.fields, test.noReturn)
if err != nil {
t.Error(err)
continue
}
if actaul != test.sql {
t.Error("[", idx, "] excepted is", test.sql)
t.Error("[", idx, "] actual is", actaul)
}
}
_, err := gobatis.GenerateInsertSQL2(gobatis.Postgres,
mapper, reflect.TypeOf(&T1{}), []string{"f1", "f2", "f3", "deleted_at"}, false)
if err == nil {
t.Error("excepted error got ok")
return
}
}
func TestGenerateUpdateSQL(t *testing.T) {
for idx, test := range []struct {
dbType gobatis.Dialect
prefix string
value interface{}
names []string
argTypes []reflect.Type
sql string
}{
{dbType: gobatis.Postgres, value: T1{}, sql: "UPDATE t1_table SET f1=#{f1}, f2=#{f2}, f3=#{f3}, updated_at=now() WHERE id=#{id}"},
{dbType: gobatis.Mysql, value: &T1{}, names: []string{"id"}, sql: "UPDATE t1_table SET f1=#{f1}, f2=#{f2}, f3=#{f3}, updated_at=CURRENT_TIMESTAMP WHERE id=#{id}"},
{dbType: gobatis.Postgres, value: T2{}, sql: "UPDATE t2_table SET f1=#{f1}, f2=#{f2}, updated_at=now() WHERE id=#{id}"},
{dbType: gobatis.Postgres, value: &T2{}, names: []string{"id"}, sql: "UPDATE t2_table SET f1=#{f1}, f2=#{f2}, updated_at=now() WHERE id=#{id}"},
{dbType: gobatis.Postgres, value: T3{}, sql: "UPDATE t3_table SET f1=#{f1}, f2=#{f2}, updated_at=now() WHERE id=#{id}"},
{dbType: gobatis.Postgres, value: &T3{}, names: []string{"id"}, sql: "UPDATE t3_table SET f1=#{f1}, f2=#{f2}, updated_at=now() WHERE id=#{id}"},
{dbType: gobatis.Postgres, value: T4{}, sql: "UPDATE t2_table SET f3=#{f3}, f4=#{f4}, f1=#{f1}, f2=#{f2}, updated_at=now() WHERE id=#{id}"},
{dbType: gobatis.Postgres, value: &T4{}, names: []string{"id"}, sql: "UPDATE t2_table SET f3=#{f3}, f4=#{f4}, f1=#{f1}, f2=#{f2}, updated_at=now() WHERE id=#{id}"},
{dbType: gobatis.Postgres, value: &T4{}, names: []string{"id", "f2"}, sql: "UPDATE t2_table SET f3=#{f3}, f4=#{f4}, f1=#{f1}, updated_at=now() WHERE id=#{id} AND f2=#{f2}"},
{dbType: gobatis.Postgres, value: T8{}, sql: "UPDATE t8_table SET f1=#{f1}, updated_at=now() WHERE id=#{id}"},
{dbType: gobatis.Postgres, value: &T8{}, names: []string{"id"}, sql: "UPDATE t8_table SET f1=#{f1}, updated_at=now() WHERE id=#{id}"},
{dbType: gobatis.Postgres, value: T9{}, sql: "UPDATE t9_table SET e=#{e}, f1=#{f1}, updated_at=now() WHERE id=#{id}"},
{dbType: gobatis.Postgres, value: &T9{}, names: []string{"id"}, sql: "UPDATE t9_table SET e=#{e}, f1=#{f1}, updated_at=now() WHERE id=#{id}"},
{dbType: gobatis.Postgres, prefix: "a.", value: T9{}, sql: "UPDATE t9_table SET e=#{a.e}, f1=#{a.f1}, updated_at=now() WHERE id=#{a.id}"},
{dbType: gobatis.Postgres, prefix: "a.", value: &T9{}, names: []string{"id"}, sql: "UPDATE t9_table SET e=#{a.e}, f1=#{a.f1}, updated_at=now() WHERE id=#{id}"},
} {
actaul, err := gobatis.GenerateUpdateSQL(test.dbType, mapper,
test.prefix, reflect.TypeOf(test.value), test.names, test.argTypes)
if err != nil {
t.Error("[", idx, "]", err)
continue
}
if actaul != test.sql {
t.Error("[", idx, "] excepted is", test.sql)
t.Error("[", idx, "] actual is", actaul)
}
}
_, err := gobatis.GenerateUpdateSQL(gobatis.Mysql,
mapper, "", reflect.TypeOf(&T7{}), []string{}, nil)
if err == nil {
t.Error("excepted error got ok")
return
}
_, err = gobatis.GenerateUpdateSQL(gobatis.Mysql,
mapper, "", reflect.TypeOf(&T12{}), []string{}, nil)
if err == nil {
t.Error("excepted error got ok")
return
}
}
func TestGenerateUpdateSQL2(t *testing.T) {
for idx, test := range []struct {
dbType gobatis.Dialect
value interface{}
queryType reflect.Type
query string
values []string
sql string
}{
{dbType: gobatis.Postgres, value: T1{}, query: "id", values: []string{"f1", "f2", "f3", "deleted_at"}, sql: "UPDATE t1_table SET f1=#{f1}, f2=#{f2,null=true}, f3=#{f3,notnull=true}, updated_at=now() WHERE id=#{id}"},
{dbType: gobatis.Postgres, value: T1{}, query: "id", values: []string{"f1", "f2", "f3"}, sql: "UPDATE t1_table SET f1=#{f1}, f2=#{f2,null=true}, f3=#{f3,notnull=true}, updated_at=now() WHERE id=#{id}"},
{dbType: gobatis.Mysql, value: &T1{}, query: "id", values: []string{"f1", "f2", "f3"}, sql: "UPDATE t1_table SET f1=#{f1}, f2=#{f2,null=true}, f3=#{f3,notnull=true}, updated_at=CURRENT_TIMESTAMP WHERE id=#{id}"},
{dbType: gobatis.Postgres, value: T10{}, query: "id", values: []string{"f1", "f2"}, sql: "UPDATE t10_table SET f_1=#{f1}, f2=#{f2}, updated_at=now() WHERE id=#{id}"},
{dbType: gobatis.Postgres, value: T10{}, query: "id", values: []string{}, sql: "UPDATE t10_table SET updated_at=now() WHERE id=#{id}"},
{dbType: gobatis.Mysql, value: T10{}, query: "id", values: []string{"f1", "f2"}, sql: "UPDATE t10_table SET f_1=#{f1}, f2=#{f2}, updated_at=CURRENT_TIMESTAMP WHERE id=#{id}"},
{dbType: gobatis.Mysql, value: T10{}, query: "id", values: []string{"f1", "f2", "updatedAt"}, sql: "UPDATE t10_table SET f_1=#{f1}, f2=#{f2}, updated_at=CURRENT_TIMESTAMP WHERE id=#{id}"},
{dbType: gobatis.Mysql, value: T10{}, query: "id", values: []string{}, sql: "UPDATE t10_table SET updated_at=CURRENT_TIMESTAMP WHERE id=#{id}"},
{dbType: gobatis.Postgres, value: &T10{}, query: "id", values: []string{"f1", "f2"}, sql: "UPDATE t10_table SET f_1=#{f1}, f2=#{f2}, updated_at=now() WHERE id=#{id}"},
{dbType: gobatis.Postgres, value: T10{}, query: "id", values: []string{"f_1", "f2"}, sql: "UPDATE t10_table SET f_1=#{f_1}, f2=#{f2}, updated_at=now() WHERE id=#{id}"},
{dbType: gobatis.Postgres, value: &T10{}, query: "id", values: []string{"f_1", "f2"}, sql: "UPDATE t10_table SET f_1=#{f_1}, f2=#{f2}, updated_at=now() WHERE id=#{id}"},
{dbType: gobatis.Postgres, value: &T10{}, query: "id", queryType: reflect.TypeOf(new(int64)).Elem(), values: []string{"f_1", "f2"}, sql: "UPDATE t10_table SET f_1=#{f_1}, f2=#{f2}, updated_at=now() WHERE id=#{id}"},
{dbType: gobatis.Postgres, value: &T10{}, query: "id", queryType: reflect.TypeOf(new(sql.NullInt64)).Elem(), values: []string{"f_1", "f2"}, sql: "UPDATE t10_table SET f_1=#{f_1}, f2=#{f2}, updated_at=now() <where><if test=\"id.Valid\"> id=#{id} </if></where>"},
{dbType: gobatis.Postgres, value: &T10{}, query: "id", queryType: reflect.TypeOf([]int64{}), values: []string{"f_1", "f2"}, sql: "UPDATE t10_table SET f_1=#{f_1}, f2=#{f2}, updated_at=now() WHERE id in (<foreach collection=\"id\" item=\"item\" separator=\",\" >#{item}</foreach>)"},
} {
actaul, err := gobatis.GenerateUpdateSQL2(test.dbType,
mapper, reflect.TypeOf(test.value), test.queryType, test.query, test.values)
if err != nil {
t.Error(err)
continue
}
if actaul != test.sql {
t.Error("[", idx, "] excepted is", test.sql)
t.Error("[", idx, "] actual is", actaul)
}
}
_, err := gobatis.GenerateUpdateSQL2(gobatis.Mysql,
mapper, reflect.TypeOf(&T10{}), nil, "id", []string{"f33"})
if err == nil {
t.Error("excepted error got ok")
return
}
_, err = gobatis.GenerateUpdateSQL2(gobatis.Mysql,
mapper, reflect.TypeOf(&T10{}), nil, "f23", []string{"f33"})
if err == nil {
t.Error("excepted error got ok")
return
}
}
func TestGenerateDeleteSQL(t *testing.T) {
for idx, test := range []struct {
dbType gobatis.Dialect
value interface{}
names []string
argTypes []reflect.Type
filters []gobatis.Filter
sql string
err string
}{
{dbType: gobatis.Postgres, value: T1ForNoDeleted{}, sql: "DELETE FROM t1_table"},
{dbType: gobatis.Postgres, value: &T1ForNoDeleted{}, names: []string{"id"}, sql: "DELETE FROM t1_table WHERE id=#{id}"},
{dbType: gobatis.Postgres, value: &T1ForNoDeleted{}, names: []string{"id", "f1"}, sql: "DELETE FROM t1_table WHERE id=#{id} AND f1=#{f1}"},
{dbType: gobatis.Postgres, value: &T1ForNoDeleted{}, names: []string{"id", "f1"},
argTypes: []reflect.Type{reflect.TypeOf(new(int64)).Elem(), _stringType},
sql: "DELETE FROM t1_table WHERE id=#{id} AND f1=#{f1}"},
{dbType: gobatis.Postgres, value: &T1ForNoDeleted{}, names: []string{"id", "f1"},
argTypes: []reflect.Type{reflect.TypeOf([]int64{}), _stringType},
sql: "DELETE FROM t1_table WHERE id in (<foreach collection=\"id\" item=\"item\" separator=\",\" >#{item}</foreach>) AND f1=#{f1}"},
{dbType: gobatis.Postgres, value: &T1ForNoDeleted{}, names: []string{"id", "f1"},
argTypes: []reflect.Type{reflect.TypeOf([]int64{}), reflect.TypeOf([]string{})},
sql: "DELETE FROM t1_table WHERE id in (<foreach collection=\"id\" item=\"item\" separator=\",\" >#{item}</foreach>) AND f1 in (<foreach collection=\"f1\" item=\"item\" separator=\",\" >#{item}</foreach>)"},
{dbType: gobatis.Postgres, value: &T1ForNoDeleted{}, names: []string{"id", "f1"},
argTypes: []reflect.Type{reflect.TypeOf(new(sql.NullInt64)).Elem(), _stringType},
sql: "DELETE FROM t1_table WHERE <if test=\"id.Valid\"> id=#{id} AND </if>f1=#{f1}"},