-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathoctillery_test.go
316 lines (291 loc) · 8.79 KB
/
octillery_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
package octillery
import (
"context"
"database/sql"
"fmt"
"log"
"path/filepath"
"testing"
_ "github.com/mattn/go-sqlite3"
"github.com/pkg/errors"
osql "go.knocknote.io/octillery/database/sql"
"go.knocknote.io/octillery/path"
)
func init() {
BeforeCommitCallback(func(tx *osql.Tx, writeQueries []*osql.QueryLog) error {
log.Println("BeforeCommit", writeQueries)
return nil
})
AfterCommitCallback(func(*osql.Tx) error {
log.Println("AfterCommit")
return nil
}, func(tx *osql.Tx, isCriticalError bool, failureQueries []*osql.QueryLog) error {
log.Println("AfterCommit", failureQueries)
return nil
})
}
func checkErr(t *testing.T, err error) {
if err != nil {
t.Fatalf("%+v", err)
}
}
func fetchUserName(multiRows []*sql.Rows) string {
var name string
for _, rows := range multiRows {
for rows.Next() {
rows.Scan(&name)
}
}
return name
}
var db *osql.DB
func TestLoadConfig(t *testing.T) {
confPath := filepath.Join(path.ThisDirPath(), "test_databases.yml")
err := LoadConfig(confPath)
checkErr(t, err)
db, err = osql.Open("sqlite3", "dummy_dsn")
checkErr(t, err)
}
func TestDropTableWithSequencerAndWithoutShardKey(t *testing.T) {
_, _, err := Exec(db, "drop table if exists users")
checkErr(t, err)
}
func TestCreateTableWithSequencerAndWithoutShardKey(t *testing.T) {
createTable := "create table if not exists users (id integer not null primary key, name varchar(255))"
_, _, err := Exec(db, createTable)
checkErr(t, err)
}
func TestInsertWithSequencerAndWithoutShardKey(t *testing.T) {
_, result, err := Exec(db, "insert into users(id, name) values (null, 'bob')")
checkErr(t, err)
id, err := result.LastInsertId()
checkErr(t, err)
multiRows, _, err := Exec(db, fmt.Sprintf("select name from users where id = %d", id))
checkErr(t, err)
name := fetchUserName(multiRows)
if name != "bob" {
t.Fatal(errors.Errorf("cannot select from id = %d", id))
}
_, result, err = Exec(db, "insert into users(id, name) values (null, 'ken')")
checkErr(t, err)
id, err = result.LastInsertId()
checkErr(t, err)
multiRows, _, err = Exec(db, fmt.Sprintf("select name from users where id = %d", id))
checkErr(t, err)
name = fetchUserName(multiRows)
if name != "ken" {
t.Fatal(errors.Errorf("cannot select from id = %d", id))
}
}
func TestDropTableWithoutSequencer(t *testing.T) {
_, _, err := Exec(db, "drop table if exists user_items")
checkErr(t, err)
}
func TestCreateTableWithoutSequencer(t *testing.T) {
createTable := "create table if not exists user_items (id integer not null primary key autoincrement, user_id integer not null)"
_, _, err := Exec(db, createTable)
checkErr(t, err)
}
func TestInsertWithoutSequencer(t *testing.T) {
userID := 10
insertQuery := fmt.Sprintf("insert into user_items(id, user_id) values (null, %d)", userID)
_, result, err := Exec(db, insertQuery)
checkErr(t, err)
id, err := result.LastInsertId()
checkErr(t, err)
if id != 1 {
t.Fatal(err)
}
_, result, err = Exec(db, insertQuery)
checkErr(t, err)
id, err = result.LastInsertId()
checkErr(t, err)
if id != 2 {
t.Fatal(err)
}
multiRows, _, err := Exec(db, fmt.Sprintf("select user_id from user_items where user_id = %d", userID))
checkErr(t, err)
var rowCount int
for _, rows := range multiRows {
for rows.Next() {
var fetchedID int
rows.Scan(&fetchedID)
rowCount++
if fetchedID != userID {
t.Fatal(errors.New("cannot fetch user_id from user_items"))
}
}
}
if rowCount != 2 {
t.Fatal(errors.New("cannot select from user_items"))
}
}
func TestDropTableWithSequencerAndShardKey(t *testing.T) {
_, _, err := Exec(db, "drop table if exists user_decks")
checkErr(t, err)
}
func TestCreateTableWithSequencerAndShardKey(t *testing.T) {
createTable := "create table if not exists user_decks (id integer not null primary key autoincrement, user_id integer not null)"
_, _, err := Exec(db, createTable)
checkErr(t, err)
}
func TestInsertWithSequencerAndShardKey(t *testing.T) {
userID := 10
insertQuery := fmt.Sprintf("insert into user_decks(id, user_id) values (null, %d)", userID)
_, result, err := Exec(db, insertQuery)
checkErr(t, err)
id, err := result.LastInsertId()
checkErr(t, err)
// id is generated by sequencer. first row's id is 2
if id <= 1 {
t.Fatal(errors.Errorf("id(%d) <= 1", id))
}
_, result, err = Exec(db, insertQuery)
checkErr(t, err)
id, err = result.LastInsertId()
checkErr(t, err)
if id <= 2 {
t.Fatal(errors.Errorf("id(%d) <= 2", id))
}
multiRows, _, err := Exec(db, fmt.Sprintf("select user_id from user_decks where user_id = %d", userID))
checkErr(t, err)
var rowCount int
for _, rows := range multiRows {
for rows.Next() {
var fetchedID int
rows.Scan(&fetchedID)
rowCount++
if fetchedID != userID {
t.Fatal(errors.New("cannot fetch user_id from user_decks"))
}
}
}
if rowCount != 2 {
t.Fatal(errors.New("cannot select from user_decks"))
}
}
func TestDropTableWithoutSharding(t *testing.T) {
_, _, err := Exec(db, "drop table if exists user_stages")
checkErr(t, err)
}
func TestCreateTableWithoutSharding(t *testing.T) {
createTable := "create table if not exists user_stages (id integer not null primary key autoincrement, user_id integer not null)"
_, _, err := Exec(db, createTable)
checkErr(t, err)
}
func TestInsertWithoutSharding(t *testing.T) {
userID := 10
insertQuery := fmt.Sprintf("insert into user_stages(id, user_id) values (null, %d)", userID)
_, result, err := Exec(db, insertQuery)
checkErr(t, err)
id, err := result.LastInsertId()
checkErr(t, err)
if id != 1 {
t.Fatal(errors.Errorf("id(%d) != 1", id))
}
_, result, err = Exec(db, insertQuery)
checkErr(t, err)
id, err = result.LastInsertId()
checkErr(t, err)
if id != 2 {
t.Fatal(errors.Errorf("id(%d) != 2", id))
}
multiRows, _, err := Exec(db, fmt.Sprintf("select user_id from user_stages where user_id = %d", userID))
checkErr(t, err)
var rowCount int
for _, rows := range multiRows {
for rows.Next() {
var fetchedID int
rows.Scan(&fetchedID)
rowCount++
if fetchedID != userID {
t.Fatal(errors.New("cannot fetch user_id from user_stages"))
}
}
}
if rowCount != 2 {
t.Fatal(errors.New("cannot select from user_stages"))
}
}
func TestRollbackWithSequencerAndWithoutShardKey(t *testing.T) {
db, err := osql.Open("mysql", "root:@tcp(127.0.0.1:3306)/?parseTime=true")
defer db.Close()
checkErr(t, err)
tx, err := db.Begin()
checkErr(t, err)
result, err := tx.Exec("insert into users(id, name) values (null, 'alice')")
checkErr(t, err)
id, err := result.LastInsertId()
checkErr(t, err)
tx.Rollback()
var name string
err = db.QueryRow(fmt.Sprintf("select name from users where id = %d", id)).Scan(&name)
if err == nil {
t.Fatal(errors.New("cannot rollback"))
}
}
func TestRollbackWithoutSharding(t *testing.T) {
db, err := osql.Open("mysql", "root:@tcp(127.0.0.1:3306)/?parseTime=true")
defer db.Close()
checkErr(t, err)
tx, err := db.Begin()
checkErr(t, err)
userID := 20
result, err := tx.Exec(fmt.Sprintf("insert into user_stages(id, user_id) values (null, %d)", userID))
checkErr(t, err)
id, err := result.LastInsertId()
checkErr(t, err)
tx.Rollback()
var fetchID interface{}
err = db.QueryRow(fmt.Sprintf("select user_id from user_stages where id = %d", id)).Scan(&fetchID)
if err == nil {
t.Fatal(errors.New("cannot rollback"))
}
}
func TestCommitWithoutSharding(t *testing.T) {
db, err := osql.Open("mysql", "root:@tcp(127.0.0.1:3306)/?parseTime=true")
defer db.Close()
checkErr(t, err)
tx, err := db.Begin()
checkErr(t, err)
userID := 20
result, err := tx.Exec(fmt.Sprintf("insert into user_stages(id, user_id) values (null, %d)", userID))
checkErr(t, err)
id, err := result.LastInsertId()
checkErr(t, err)
checkErr(t, tx.Commit())
var fetchID interface{}
checkErr(t, db.QueryRow(fmt.Sprintf("select user_id from user_stages where id = %d", id)).Scan(&fetchID))
}
func TestPrepareWithoutSharding(t *testing.T) {
db, err := osql.Open("mysql", "root:@tcp(127.0.0.1:3306)/?parseTime=true")
defer db.Close()
checkErr(t, err)
stmt, err := db.Prepare("insert into user_stages(id, user_id) values (null, ?)")
checkErr(t, err)
userID := 30
result, err := stmt.Exec(userID)
checkErr(t, err)
id, err := result.LastInsertId()
checkErr(t, err)
var fetchID int
err = db.QueryRow(fmt.Sprintf("select user_id from user_stages where id = %d", id)).Scan(&fetchID)
checkErr(t, err)
if fetchID != userID {
t.Fatal(errors.New("cannot get userID"))
}
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
stmt, err = db.PrepareContext(ctx, "insert into user_stages(id, user_id) values (null, ?)")
checkErr(t, err)
userID = 40
result, err = stmt.Exec(userID)
checkErr(t, err)
id, err = result.LastInsertId()
checkErr(t, err)
err = db.QueryRow(fmt.Sprintf("select user_id from user_stages where id = %d", id)).Scan(&fetchID)
checkErr(t, err)
if fetchID != userID {
t.Fatal(errors.New("cannot get userID"))
}
}