-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtx_test.go
138 lines (96 loc) · 2.68 KB
/
tx_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
package asql_test
import (
"context"
"testing"
"github.com/danielgatis/go-asql"
_ "github.com/mattn/go-sqlite3"
"github.com/stretchr/testify/assert"
)
func TestTxCommit(t *testing.T) {
t.Parallel()
db, _ := asql.Open("sqlite3", "file::memory:")
db.Load("testdata/schema.sql")
tx, _ := db.BeginTx(context.Background(), nil)
rc1, _ := tx.Exec(`insert into test_table (id, name) values (3, "jack")`)
rc2, _ := tx.Exec(`insert into test_table (id, name) values (4, "jill")`)
<-rc1
<-rc2
tx.Commit()
rc, _ := db.QueryRow(`select count(*) from test_table`)
row := <-rc
var count int
row.Scan(&count)
assert.Equal(t, 4, count)
}
func TestTxRollback(t *testing.T) {
t.Parallel()
db, _ := asql.Open("sqlite3", "file::memory:")
db.Load("testdata/schema.sql")
tx, _ := db.BeginTx(context.Background(), nil)
rc1, _ := tx.Exec(`insert into test_table (id, name) values (3, "jack")`)
rc2, _ := tx.Exec(`insert into test_table (id, name) values (4, "jill")`)
<-rc1
<-rc2
tx.Rollback()
rc, _ := db.QueryRow(`select count(*) from test_table`)
row := <-rc
var count int
row.Scan(&count)
assert.Equal(t, 2, count)
}
func TestTxExec(t *testing.T) {
t.Parallel()
db, _ := asql.Open("sqlite3", "file::memory:")
db.Load("testdata/schema.sql")
tx, _ := db.BeginTx(context.Background(), nil)
query := `insert into test_table (id, name) values (3, "jack")`
rc, _ := tx.Exec(query)
result := <-rc
actual, _ := result.RowsAffected()
assert.EqualValues(t, 1, actual)
}
func TestTxPrepare(t *testing.T) {
t.Parallel()
db, _ := asql.Open("sqlite3", "file::memory:")
db.Load("testdata/schema.sql")
tx, _ := db.BeginTx(context.Background(), nil)
stmt, _ := tx.Prepare(`insert into test_table (id, name) values (?, ?)`)
rc, _ := stmt.Exec(4, "jill")
result := <-rc
actual, _ := result.RowsAffected()
assert.EqualValues(t, 1, actual)
}
func TestTxQuery(t *testing.T) {
t.Parallel()
type TestTable struct {
ID int
Name string
}
db, _ := asql.Open("sqlite3", "file::memory:")
db.Load("testdata/schema.sql")
tx, _ := db.BeginTx(context.Background(), nil)
rc, _ := tx.Query(`select * from test_table`)
rows := <-rc
records := make([]TestTable, 0)
for rows.Next() {
var record TestTable
rows.Scan(&record.ID, &record.Name)
records = append(records, record)
}
expected := []TestTable{
{1, "alice"},
{2, "bob"},
}
assert.EqualValues(t, expected, records)
}
func TestTxQueryRow(t *testing.T) {
t.Parallel()
db, _ := asql.Open("sqlite3", "file::memory:")
db.Load("testdata/schema.sql")
tx, _ := db.BeginTx(context.Background(), nil)
rc, _ := tx.QueryRow(`select count(*) from test_table`)
row := <-rc
var count int
row.Scan(&count)
assert.Equal(t, count, 2)
}