-
Notifications
You must be signed in to change notification settings - Fork 39
/
db_test.go
528 lines (426 loc) · 10.1 KB
/
db_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
package gosql
import (
"context"
"errors"
"fmt"
"strconv"
"testing"
"time"
"github.com/ilibs/gosql/v2/internal/example/models"
)
func TestShowSql(t *testing.T) {
logger.logging = false
RunWithSchema(t, func(t *testing.T) {
insert(1)
ShowSql().Queryx("select * from users")
user := &models.Users{}
Model(user).ShowSQL().Where("id = ?", 1).Get()
Table("users").ShowSQL().Where("id = ?", 1).Update(map[string]interface{}{
"name": "test2",
})
})
}
func TestExec(t *testing.T) {
RunWithSchema(t, func(t *testing.T) {
result, err := Exec("insert into users(name,status,created_at,updated_at) value(?,?,?,?)", "test", 1, time.Now(), time.Now())
if err != nil {
t.Error(err)
}
id, err := result.LastInsertId()
if err != nil {
t.Error(err)
}
if id != 1 {
t.Error("lastInsertId error")
}
Exec("update users set status = status + 1 where id = ?", 1)
result, err = Exec("update users set status = status + 1 where id = ?", 1)
if err != nil {
t.Error("update user error", err)
}
if aff, _ := result.RowsAffected(); aff == 0 {
t.Error("update set error")
}
})
}
func TestBatchExec(t *testing.T) {
RunWithSchema(t, func(t *testing.T) {
{
// batch insert with structs
users := []models.Users{
{Name: "test1", Status: 1, CreatedAt: time.Now(), UpdatedAt: time.Now()},
{Name: "test2", Status: 1, CreatedAt: time.Now(), UpdatedAt: time.Now()},
{Name: "test3", Status: 1, CreatedAt: time.Now(), UpdatedAt: time.Now()},
{Name: "test4", Status: 1, CreatedAt: time.Now(), UpdatedAt: time.Now()},
}
result, err := NamedExec("insert into users(name,status,created_at,updated_at) values(:name,:status,:created_at,:updated_at)", users)
if err != nil {
t.Error(err)
}
if aff, _ := result.RowsAffected(); aff != 4 {
t.Error("update set error")
}
}
{
// batch insert with maps
users := []map[string]interface{}{
{"name": "test5", "status": 1, "created_at": "2021-01-25 12:22:22", "updated_at": "2021-01-25 12:22:22"},
{"name": "test6", "status": 1, "created_at": "2021-01-25 12:22:22", "updated_at": "2021-01-25 12:22:22"},
{"name": "test7", "status": 1, "created_at": "2021-01-25 12:22:22", "updated_at": "2021-01-25 12:22:22"},
{"name": "test8", "status": 1, "created_at": "2021-01-25 12:22:22", "updated_at": "2021-01-25 12:22:22"},
}
result, err := NamedExec("insert into users(name,status,created_at,updated_at) values(:name,:status,:created_at,:updated_at)", users)
if err != nil {
t.Error(err)
}
if aff, _ := result.RowsAffected(); aff != 4 {
t.Error("update set error")
}
}
})
}
func TestQueryx(t *testing.T) {
RunWithSchema(t, func(t *testing.T) {
insert(1)
insert(2)
rows, err := Queryx("select * from users")
if err != nil {
t.Error(err)
}
defer rows.Close()
for rows.Next() {
user := &models.Users{}
err = rows.StructScan(user)
if err != nil {
t.Error(err)
}
}
rows, err = Queryx("select name from users")
if err != nil {
t.Error(err)
}
defer rows.Close()
for rows.Next() {
// results := make(map[string]interface{})
// err = rows.MapScan(results)
var name string
err = rows.Scan(&name)
if err != nil {
t.Error(err)
}
fmt.Println(name)
}
})
}
func TestQueryRowx(t *testing.T) {
RunWithSchema(t, func(t *testing.T) {
insert(1)
user := &models.Users{}
err := QueryRowx("select * from users where id = 1").StructScan(user)
if err != nil {
t.Error(err)
}
if user.Id != 1 {
t.Error("wraper QueryRowx error")
}
})
}
func TestUse(t *testing.T) {
RunWithSchema(t, func(t *testing.T) {
db := Use("db2")
_, err := db.Exec("insert into photos(moment_id,url,created_at,updated_at) value(?,?,?,?)", 1, "http://test.com", time.Now(), time.Now())
if err != nil {
t.Error(err)
}
})
}
func TestUseTable(t *testing.T) {
RunWithSchema(t, func(t *testing.T) {
post := &models.Photos{
MomentId: 1,
Url: "http://test.com",
}
_, err := Use("db2").Model(post).Create()
if err != nil {
t.Error(err)
}
post.Url = "http://test.com/2"
_, err = Use("db2").WithContext(context.Background()).Model(post).Update()
if err != nil {
t.Error(err)
}
_, err = Use("db2").Table("photos").Where("id = ?", 1).Update(map[string]interface{}{
"url": "http://test2.com",
})
if err != nil {
t.Error(err)
}
})
}
func TestGet(t *testing.T) {
RunWithSchema(t, func(t *testing.T) {
insert(1)
db := Use("default")
{
user := &models.Users{}
err := db.Get(user, "select * from users where id = ?", 1)
if err != nil {
t.Error(err)
}
fmt.Println(jsonEncode(user))
}
})
}
func TestGetSingle(t *testing.T) {
RunWithSchema(t, func(t *testing.T) {
insert(1)
db := Use("default")
{
var name string
err := db.Get(&name, "select name from users where id = ?", 1)
if err != nil {
t.Error(err)
}
fmt.Println(name)
}
})
}
func TestSelectSlice(t *testing.T) {
RunWithSchema(t, func(t *testing.T) {
insert(1)
insert(2)
var users []string
err := Select(&users, "select name from users")
if err != nil {
t.Error(err)
}
fmt.Println(jsonEncode(users))
})
}
func TestSelect(t *testing.T) {
RunWithSchema(t, func(t *testing.T) {
insert(1)
insert(2)
db := Use("default")
user := make([]*models.Users, 0)
err := db.Select(&user, "select * from users")
if err != nil {
t.Error(err)
}
fmt.Println(jsonEncode(user))
})
}
func TestQueryxIn(t *testing.T) {
RunWithSchema(t, func(t *testing.T) {
insert(1)
insert(2)
insert(4)
insert(5)
insert(6)
rows, err := Queryx("select * from users where status = ? and id in (?)", 0, []int{1, 2, 3})
if err != nil {
t.Error(err)
}
defer rows.Close()
for rows.Next() {
user := &models.Users{}
err = rows.StructScan(user)
if err != nil {
t.Error(err)
}
}
})
}
func TestSelectIn(t *testing.T) {
RunWithSchema(t, func(t *testing.T) {
insert(1)
insert(2)
insert(4)
insert(5)
insert(6)
db := Use("default")
user := make([]*models.Users, 0)
err := db.Select(&user, "select * from users where id in(?)", []int{1, 2, 3})
if err != nil {
t.Error(err)
}
fmt.Println(jsonEncode(user))
})
}
func TestTx(t *testing.T) {
RunWithSchema(t, func(t *testing.T) {
// 1
{
Tx(func(tx *DB) error {
for id := 1; id < 10; id++ {
user := &models.Users{
Id: id,
Name: "test" + strconv.Itoa(id),
}
tx.Model(user).Create()
if id == 8 {
return errors.New("simulation terminated")
}
}
return nil
})
num, err := Model(&models.Users{}).Count()
if err != nil {
t.Error(err)
}
if num != 0 {
t.Error("transaction abort failed")
}
}
// 2
{
Tx(func(tx *DB) error {
for id := 1; id < 10; id++ {
user := &models.Users{
Id: id,
Name: "test" + strconv.Itoa(id),
}
tx.Model(user).Create()
}
return nil
})
num, err := Model(&models.Users{}).Count()
if err != nil {
t.Error(err)
}
if num != 9 {
t.Error("transaction create failed")
}
}
})
}
func TestWithTx(t *testing.T) {
RunWithSchema(t, func(t *testing.T) {
{
err := Tx(func(tx *DB) error {
for id := 1; id < 10; id++ {
_, err := tx.Exec("INSERT INTO users(id,name,status,created_at,updated_at) VALUES(?,?,?,?,?)", id, "test"+strconv.Itoa(id), 1, time.Now(), time.Now())
if err != nil {
return err
}
}
var num int
err := tx.QueryRowx("select count(*) from users").Scan(&num)
if err != nil {
return err
}
if num != 9 {
t.Error("with transaction create failed")
}
return nil
})
if err != nil {
t.Fatalf("with transaction failed %s", err)
}
}
})
}
func TestTxx(t *testing.T) {
RunWithSchema(t, func(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
err := Txx(ctx, func(ctx context.Context, tx *DB) error {
for id := 1; id < 10; id++ {
user := &models.Users{
Id: id,
Name: "test" + strconv.Itoa(id),
}
tx.Model(user).Create()
if id == 8 {
cancel()
break
}
}
return nil
})
if err == nil {
t.Fatalf("with transaction must be cancel error")
}
num, err := Model(&models.Users{}).Count()
if err != nil {
t.Error(err)
}
if num != 0 {
t.Error("transaction abort failed")
}
})
}
func TestWrapper_Relation(t *testing.T) {
RunWithSchema(t, func(t *testing.T) {
initDatas(t)
moment := &MomentList{}
err := Relation("User", func(b *Builder) {
b.Where("status = 0")
}).Get(moment, "select * from moments")
// b, _ := json.MarshalIndent(moment, "", " ")
// fmt.Println(string(b), err)
if err != nil {
t.Fatal(err)
}
})
}
func TestWrapper_Relation2(t *testing.T) {
RunWithSchema(t, func(t *testing.T) {
initDatas(t)
var moments = make([]*MomentList, 0)
err := Relation("User", func(b *Builder) {
b.Where("status = 1")
}).Select(&moments, "select * from moments")
if err != nil {
t.Fatal(err)
}
})
}
func TestDB_Begin(t *testing.T) {
RunWithSchema(t, func(t *testing.T) {
tx, err := Begin()
if err != nil {
t.Fatalf("with transaction begin error %s", err)
}
var fn = func() error {
for id := 1; id < 10; id++ {
_, err := tx.Exec("INSERT INTO users(id,name,status,created_at,updated_at) VALUES(?,?,?,?,?)", id, "test"+strconv.Itoa(id), 1, time.Now(), time.Now())
if err != nil {
return err
}
}
var num int
err = tx.QueryRowx("select count(*) from users").Scan(&num)
if err != nil {
return err
}
if num != 9 {
return errors.New("with transaction create failed")
}
return nil
}
err = fn()
if err != nil {
err := tx.Rollback()
if err != nil {
t.Fatalf("with transaction rollback error %s", err)
}
}
err = tx.Commit()
if err != nil {
t.Fatalf("with transaction commit error %s", err)
}
})
}
func TestRelation(t *testing.T) {
RunWithSchema(t, func(t *testing.T) {
initDatas(t)
moment := &MomentList{}
err := Relation("User", func(b *Builder) {
// this is builder instance
b.Where("status = 1")
}).Get(moment, "select * from moments where id = 1")
if err != nil {
t.Fatalf("relation query error %s", err)
}
})
}