-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpropagate_test.go
451 lines (430 loc) · 14.3 KB
/
propagate_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
package rowconv
import (
"context"
"database/sql"
"os"
"reflect"
"testing"
"time"
)
var db *sql.DB
const (
port = "32100"
user = "user"
password = "password"
schema = "dev"
)
func TestMain(t *testing.M) {
setup()
xCode := t.Run()
cleanup()
os.Exit(xCode)
}
func cleanup() {
closeDbConnection()
}
func setup() {
initDbConnection()
}
func initDbConnection() {
var err error
db, err = sql.Open(driverName(), dataSourceURL())
if err != nil {
panic(err)
}
pingCtx, pingCancel := context.WithTimeout(context.Background(), time.Second)
defer pingCancel()
err = db.PingContext(pingCtx)
if err != nil {
panic(err)
}
}
func closeDbConnection() {
if db != nil {
db.Close()
}
}
func TestPropagate(t *testing.T) {
checks := []struct {
scenario string
insert string
retrieval string
action func(rows *sql.Rows) func(t *testing.T)
}{
{
scenario: "retrieve single column and store into a slice of value type",
insert: "INSERT INTO propagation(id, col1) VALUES (1, 'a'), (2, 'b')",
retrieval: "SELECT id FROM propagation ORDER BY id",
action: func(rows *sql.Rows) func(t *testing.T) {
return func(t *testing.T) {
var ids []int
if err := Propagate(&ids, rows); err != nil {
t.Fatal(err)
}
if ids[0] != 1 || ids[1] != 2 {
t.Errorf("unexpeted results of propagation: %v", ids)
}
}
},
}, {
scenario: "retrieve single column and store into a slice of reference type",
insert: "INSERT INTO propagation(id, col1) VALUES (1, 'a'), (2, 'b')",
retrieval: "SELECT id FROM propagation ORDER BY id",
action: func(rows *sql.Rows) func(t *testing.T) {
return func(t *testing.T) {
var ids []*int
if err := Propagate(&ids, rows); err != nil {
t.Fatal(err)
}
if *ids[0] != 1 || *ids[1] != 2 {
t.Errorf("unexpeted results of propagation: %v", ids)
}
}
},
}, {
scenario: "retrieve single column with NULL and store into a slice of reference type",
insert: "INSERT INTO propagation(id, col1, col2) VALUES (1, '', NULL), (2, '', 'b')",
retrieval: "SELECT col2 FROM propagation ORDER BY id ASC ",
action: func(rows *sql.Rows) func(t *testing.T) {
return func(t *testing.T) {
var col2s []*string
if err := Propagate(&col2s, rows); err != nil {
t.Fatal(err)
}
if col2s[0] != nil {
t.Errorf("unexpeted results of propagation: %+v", col2s[0])
}
if *col2s[1] != "b" {
t.Errorf("unexpeted results of propagation: %+v", *col2s[1])
}
}
},
}, {
scenario: "retrieve multiple columns and store into a slice of value struct type",
insert: "INSERT INTO propagation(id, col1, col2) VALUES (1, 'a', NULL), (2, 'b', 'c')",
retrieval: "SELECT id, col1, col2 FROM propagation ORDER BY id",
action: func(rows *sql.Rows) func(t *testing.T) {
return func(t *testing.T) {
type valStruct struct {
Id int
Col1 string
COL2 *string
}
var valStructs []valStruct
if err := Propagate(&valStructs, rows); err != nil {
t.Fatal(err)
}
if !reflect.DeepEqual(valStructs[0], valStruct{Id: 1, Col1: "a"}) {
t.Errorf("unexpeted results of propagation: %v", valStructs[0])
}
if !reflect.DeepEqual(valStructs[1], valStruct{Id: 2, Col1: "b", COL2: StringRef("c")}) {
t.Errorf("unexpeted results of propagation: %v", valStructs[0])
}
}
},
}, {
scenario: "retrieve multiple columns and store into a slice of reference struct type",
insert: "INSERT INTO propagation(id, col1, col2) VALUES (1, 'a', NULL), (2, 'b', 'c')",
retrieval: "SELECT id, col1, col2 FROM propagation ORDER BY id",
action: func(rows *sql.Rows) func(t *testing.T) {
return func(t *testing.T) {
type refStruct struct {
Id int
Col1 string
COL2 *string
}
var refStructs []*refStruct
if err := Propagate(&refStructs, rows); err != nil {
t.Fatal(err)
}
if !reflect.DeepEqual(refStructs[0], &refStruct{Id: 1, Col1: "a"}) {
t.Errorf("unexpeted results of propagation: %v", refStructs[0])
}
if !reflect.DeepEqual(refStructs[1], &refStruct{Id: 2, Col1: "b", COL2: StringRef("c")}) {
t.Errorf("unexpeted results of propagation: %v", refStructs[0])
}
}
},
}, {
scenario: "retrieve multiple columns and store into a slice of reference struct type with tagged column name",
insert: "INSERT INTO propagation(id, col1, col3) VALUES (1, 'a', '" + time.Date(2018, time.July, 18, 13, 59, 59, 0, time.UTC).Format("2006-01-02 15:04:05") + "'), (2, 'b', NULL)",
retrieval: "SELECT id, col3 as creation_time FROM propagation ORDER BY id",
action: func(rows *sql.Rows) func(t *testing.T) {
return func(t *testing.T) {
type refStruct struct {
PK int `db_column:"id"`
CreationTimestamp *time.Time `db_column:"creation_time"`
}
var refStructs []*refStruct
if err := Propagate(&refStructs, rows); err != nil {
t.Fatal(err)
}
row1CreationTimestamp := time.Date(2018, time.July, 18, 13, 59, 59, 0, time.UTC)
exp1 := &refStruct{PK: 1, CreationTimestamp: &row1CreationTimestamp}
if !reflect.DeepEqual(refStructs[0], exp1) {
t.Errorf("unexpeted results of propagation: expected %+v, actual %+v", exp1, refStructs[0])
}
exp2 := &refStruct{PK: 2}
if !reflect.DeepEqual(refStructs[1], exp2) {
t.Errorf("unexpeted results of propagation: expected %+v, actual %+v", exp2, refStructs[1])
}
}
},
}, {
scenario: "retrieve multiple columns and store into a slice of value struct type with embedded field of simple type",
insert: "INSERT INTO propagation(id, col1) VALUES (1, 'a'), (2, 'b')",
retrieval: "SELECT id, col1 FROM propagation ORDER BY id",
action: func(rows *sql.Rows) func(t *testing.T) {
return func(t *testing.T) {
if driverName() == postgres {
t.Skip("postgres driver doesn't support `type Col1 []byte` types as embedded fields: " +
"sql: Scan error on column index 1: unsupported Scan, storing driver.Value type string into type *main.Col1")
}
type Col1 []byte
type valStruct struct {
Id int
Col1
}
var valStructs []valStruct
if err := Propagate(&valStructs, rows); err != nil {
t.Fatal(err)
}
if !reflect.DeepEqual(valStructs[0], valStruct{Id: 1, Col1: Col1("a")}) {
t.Errorf("unexpeted results of propagation: %v", valStructs[0])
}
if !reflect.DeepEqual(valStructs[1], valStruct{Id: 2, Col1: Col1("b")}) {
t.Errorf("unexpeted results of propagation: %v", valStructs[0])
}
}
},
}, {
scenario: "retrieve multiple columns and store into a slice of value struct type with embedded field of struct value type",
insert: "INSERT INTO propagation(id, col1) VALUES (1, 'a'), (2, 'c')",
retrieval: "SELECT id, col1 FROM propagation ORDER BY id",
action: func(rows *sql.Rows) func(t *testing.T) {
return func(t *testing.T) {
if driverName() == postgres {
t.Skip("postgres driver doesn't support `type Col1 []byte` types as embedded fields: " +
"sql: Scan error on column index 1: unsupported Scan, storing driver.Value type string into type *main.Col1")
}
type Col1 []byte
type valStruct struct {
Id int
Col1
}
var valStructs []valStruct
if err := Propagate(&valStructs, rows); err != nil {
t.Fatal(err)
}
if !reflect.DeepEqual(valStructs[0], valStruct{Id: 1, Col1: Col1("a")}) {
t.Errorf("unexpeted results of propagation: %v", valStructs[0])
}
if !reflect.DeepEqual(valStructs[1], valStruct{Id: 2, Col1: Col1("c")}) {
t.Errorf("unexpeted results of propagation: %v", valStructs[1])
}
}
},
}, {
scenario: "retrieve multiple columns and store into a slice of reference struct type with embedded field of struct reference type",
insert: "INSERT INTO propagation(id, col1, col2) VALUES (1, 'a', 'b'), (2, 'c', NULL)",
retrieval: "SELECT col2, id, col1 FROM propagation ORDER BY id",
action: func(rows *sql.Rows) func(t *testing.T) {
return func(t *testing.T) {
type Columns struct {
Col1 string
Col2 *string
}
type refStruct struct {
*Columns
Id int
}
var refStructs []*refStruct
if err := Propagate(&refStructs, rows); err != nil {
t.Fatal(err)
}
act1 := refStructs[0]
exp1 := &refStruct{Id: 1, Columns: &Columns{Col1: "a", Col2: StringRef("b")}}
if !reflect.DeepEqual(act1, exp1) {
t.Errorf("unexpeted results of propagation: expected %+v, actual %+v", exp1, act1)
}
act2 := refStructs[1]
exp2 := &refStruct{Id: 2, Columns: &Columns{Col1: "c"}}
if !reflect.DeepEqual(act2, exp2) {
t.Errorf("unexpeted results of propagation: expected %+v, actual %+v", exp2, act2)
}
}
},
}, {
scenario: "retrieve multiple columns and store into a slice of reference struct type with field of struct reference type",
insert: "INSERT INTO propagation(id, col1, col2) VALUES (1, 'a', 'b'), (2, 'c', NULL)",
retrieval: "SELECT col2, id, col1 FROM propagation ORDER BY id",
action: func(rows *sql.Rows) func(t *testing.T) {
return func(t *testing.T) {
type columns struct {
Col1 string
Col2 *string
}
type refStruct struct {
ComplexField *columns
Id int
}
var refStructs []*refStruct
if err := Propagate(&refStructs, rows); err != nil {
t.Fatal(err)
}
act1 := refStructs[0]
exp1 := &refStruct{Id: 1, ComplexField: &columns{Col1: "a", Col2: StringRef("b")}}
if !reflect.DeepEqual(act1, exp1) {
t.Errorf("unexpeted results of propagation: expected %+v, actual %+v", exp1, act1)
}
act2 := refStructs[1]
exp2 := &refStruct{Id: 2, ComplexField: &columns{Col1: "c"}}
if !reflect.DeepEqual(act2, exp2) {
t.Errorf("unexpeted results of propagation: expected %+v, actual %+v", exp2, act2)
}
}
},
}, {
scenario: "retrieve multiple columns and store into a slice of reference struct type with deep nesting",
insert: "INSERT INTO propagation(id, col1, col2) VALUES (1, 'a', 'b'), (2, 'c', NULL)",
retrieval: "SELECT col2, id, col1 FROM propagation ORDER BY id",
action: func(rows *sql.Rows) func(t *testing.T) {
return func(t *testing.T) {
type level1 struct {
Id int
}
type level2 struct {
Col1 string
With *level1
}
type level3 struct {
Col2 *string
With *level2
}
type refStruct struct {
With *level3
}
var refStructs []*refStruct
if err := Propagate(&refStructs, rows); err != nil {
t.Fatal(err)
}
act1 := refStructs[0]
exp1 := &refStruct{With: &level3{Col2: StringRef("b"), With: &level2{Col1: "a", With: &level1{Id: 1}}}}
if !reflect.DeepEqual(act1, exp1) {
t.Errorf("unexpeted results of propagation: expected %+v, actual %+v", exp1, act1)
}
act2 := refStructs[1]
exp2 := &refStruct{With: &level3{With: &level2{Col1: "c", With: &level1{Id: 2}}}}
if !reflect.DeepEqual(act2, exp2) {
t.Errorf("unexpeted results of propagation: expected %+v, actual %+v", exp2, act2)
}
}
},
}, {
scenario: "scan to same type but with columns reordered #1",
insert: "INSERT INTO propagation(id, col1, col2) VALUES (1, 'a', 'b')",
retrieval: "SELECT col2, id, col1 FROM propagation ORDER BY id",
action: func(rows *sql.Rows) func(t *testing.T) {
return func(t *testing.T) {
var refStructs []*mrefStruct
if err := Propagate(&refStructs, rows); err != nil {
t.Fatal(err)
}
act := refStructs[0]
exp := &mrefStruct{With: &mlevel3{Col2: StringRef("b"), With: &mlevel2{Col1: "a", With: &mlevel1{Id: 1}}}}
if !reflect.DeepEqual(act, exp) {
t.Errorf("unexpeted results of propagation: expected %+v, actual %+v", exp, act)
}
}
},
}, {
scenario: "scan to same type but with columns reordered #2",
insert: "INSERT INTO propagation(id, col1, col2) VALUES (2, 'c', NULL)",
retrieval: "SELECT col1, col2, id FROM propagation ORDER BY id",
action: func(rows *sql.Rows) func(t *testing.T) {
return func(t *testing.T) {
var refStructs []*mrefStruct
if err := Propagate(&refStructs, rows); err != nil {
t.Fatal(err)
}
act := refStructs[0]
exp := &mrefStruct{With: &mlevel3{With: &mlevel2{Col1: "c", With: &mlevel1{Id: 2}}}}
if !reflect.DeepEqual(act, exp) {
t.Errorf("unexpeted results of propagation: expected %+v, actual %+v", exp, act)
}
}
},
}, {
scenario: "scan to same type but with columns reordered #3",
insert: "INSERT INTO propagation(id, col1, col2) VALUES (2, 'c', NULL)",
retrieval: "SELECT id FROM propagation ORDER BY id",
action: func(rows *sql.Rows) func(t *testing.T) {
return func(t *testing.T) {
var refStructs []*mrefStruct
if err := Propagate(&refStructs, rows); err != nil {
t.Fatal(err)
}
act := refStructs[0]
exp := &mrefStruct{With: &mlevel3{With: &mlevel2{With: &mlevel1{Id: 2}}}}
if !reflect.DeepEqual(act, exp) {
t.Errorf("unexpeted results of propagation: expected %+v, actual %+v", exp, act)
}
}
},
},
/*
- check configuration of flags
- check error cases
*/
}
for _, check := range checks {
txCtx, txTimeout := context.WithTimeout(context.Background(), 5*time.Second)
tx, err := db.BeginTx(txCtx, nil)
if err != nil {
txTimeout()
t.Fatal(err)
}
_, err = tx.ExecContext(txCtx, ddlCreateTestTempTable())
if err != nil {
txTimeout()
t.Fatal(err)
}
initCtx, initCancel := context.WithTimeout(context.Background(), time.Second)
_, err = tx.ExecContext(initCtx, check.insert)
if err != nil {
initCancel()
txTimeout()
t.Fatal(err)
}
runCtx, runCancel := context.WithTimeout(context.Background(), time.Second)
rows, err := tx.QueryContext(runCtx, check.retrieval)
if err != nil {
initCancel()
runCancel()
txTimeout()
t.Fatal(err)
}
t.Run(check.scenario, check.action(rows))
initCancel()
runCancel()
txTimeout()
}
}
// StrictColumnTypeCheck
func StringRef(val string) *string {
return &val
}
type mlevel1 struct {
Id int
}
type mlevel2 struct {
Col1 string
With *mlevel1
}
type mlevel3 struct {
Col2 *string
With *mlevel2
}
type mrefStruct struct {
With *mlevel3
}