-
Notifications
You must be signed in to change notification settings - Fork 2
/
driver_test.go
401 lines (287 loc) · 8.54 KB
/
driver_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
package dynamic_database_config
import (
"crypto/rand"
"database/sql"
"database/sql/driver"
"fmt"
"os"
"testing"
"time"
"github.com/go-sql-driver/mysql"
"github.com/lib/pq"
"github.com/lthibault/jitterbug/v2"
)
type mySQLCredentials struct {
address string
user string
password string
database string
}
func (m *mySQLCredentials) createConnector() (driver.Connector, error) {
config := mysql.NewConfig()
config.Addr = m.address
config.User = m.user
config.Passwd = m.password
config.DBName = m.database
return mysql.NewConnector(config)
}
func TestMySQLDriver(t *testing.T) {
mySQLHost := os.Getenv("MYSQL_HOST")
database := "mysqltest1"
username := "mysqluser1"
rootDB, err := sql.Open("mysql", "root:password@tcp("+mySQLHost+")/")
if err != nil {
t.Fatal(err)
}
ticker := time.NewTicker(1 * time.Second)
timer := time.NewTimer(10 * time.Second)
mySQLAvailable:
for {
select {
case <-ticker.C:
err = rootDB.Ping()
if err == nil {
ticker.Stop()
timer.Stop()
break mySQLAvailable
}
case <-timer.C:
ticker.Stop()
t.Fatal("Timed out while waiting for MySQL server")
}
}
defer func() {
err := rootDB.Close()
if err != nil {
t.Errorf("Unexpected error while closing the mysql connection: %s", err)
}
}()
dropDB := func() {
_, err = rootDB.Exec("DROP DATABASE IF EXISTS " + database)
if err != nil {
t.Errorf("Unexpected error while dropping the mysql database %s: %s", database, err)
}
}
dropDB()
_, err = rootDB.Exec("CREATE DATABASE " + database)
if err != nil {
t.Fatalf("Error creating test mysql database: %s", err)
}
defer dropDB()
dropUser := func() {
_, err = rootDB.Exec("DROP USER IF EXISTS " + username)
if err != nil {
t.Errorf("Unexpected error while dropping the mysql user %s: %s", database, err)
}
}
dropUser()
password := generatePassword(t)
_, err = rootDB.Exec("CREATE USER " + username + " IDENTIFIED BY '" + password + "'")
if err != nil {
t.Fatalf("Error creating mysql test user: %s", err)
}
defer dropUser()
_, err = rootDB.Exec("GRANT ALL ON " + database + ".test_table TO " + username)
creds := mySQLCredentials{
address: mySQLHost,
user: username,
password: password,
database: database,
}
db := sql.OpenDB(Driver{CreateConnectorFunc: creds.createConnector})
db.SetConnMaxLifetime(2 * time.Second)
_, err = db.Exec("CREATE TABLE test_table (id integer not null)")
if err != nil {
t.Errorf("Error creating table: %s", err)
}
changePasswordTicker := jitterbug.New(1*time.Second, &jitterbug.Norm{Stdev: 2 * time.Second})
changePasswordCh := make(chan struct{})
// Change the password randomly
go func() {
for range changePasswordTicker.C {
newPassword := generatePassword(t)
_, err := rootDB.Exec("SET PASSWORD FOR " + username + " = '" + newPassword + "'")
if err != nil {
t.Fatalf("Error updating user password: %s", err)
}
processes, err := rootDB.Query("SELECT id FROM information_schema.processlist WHERE user = ?", username)
if err != nil {
t.Fatalf("Error querying for processes to terminate: %s", err)
}
for processes.Next() {
var id string
if err := processes.Scan(&id); err != nil {
t.Fatalf("Error scanning id: %s", err)
}
_, err = rootDB.Exec("KILL " + id)
if err != nil {
t.Fatalf("Error killing process: %s", err)
}
}
err = processes.Close()
if err != nil {
t.Fatalf("Error closing rows: %s", err)
}
creds.password = newPassword
}
close(changePasswordCh)
}()
queryTicker := jitterbug.New(1*time.Second, &jitterbug.Norm{Stdev: 4 * time.Second})
defer queryTicker.Stop()
testDurationTimer := time.NewTimer(3 * time.Minute)
defer testDurationTimer.Stop()
insertedRows := 0
terminate:
for {
select {
case <-testDurationTimer.C:
break terminate
case <-queryTicker.C:
_, err := db.Exec("INSERT INTO test_table VALUES(1)")
if err != nil {
t.Errorf("Error inserting row: %s", err)
}
insertedRows++
}
}
changePasswordTicker.Stop()
<-changePasswordCh
var actualInsertedRows int
err = db.QueryRow("SELECT COUNT(id) FROM test_table").Scan(&actualInsertedRows)
if err != nil {
t.Fatalf("Error counting number of inserted rows: %s", err)
}
if actualInsertedRows != insertedRows {
t.Errorf("Inserted rows in database does not match number of insertions, expected %d, got %d", insertedRows, actualInsertedRows)
}
}
type postgresCredentials struct {
host string
username string
password string
database string
}
func (p *postgresCredentials) createConnector() (driver.Connector, error) {
dsn := fmt.Sprintf("postgres://%s:%s@%s/%s?sslmode=disable", p.username, p.password, p.host, p.database)
return pq.NewConnector(dsn)
}
func TestPostgresDriver(t *testing.T) {
postgresHost := os.Getenv("POSTGRES_HOST")
database := "libpqtest1"
username := "libpquser1"
rootDB, err := sql.Open("postgres", "postgres://postgres:password@"+postgresHost+"/?sslmode=disable")
if err != nil {
t.Fatal(err)
}
defer func() {
err := rootDB.Close()
if err != nil {
t.Errorf("Unexpected error while closing the postgres connection: %s", err)
}
}()
dropDB := func() {
_, err = rootDB.Exec("SELECT pg_terminate_backend(pid) FROM pg_stat_activity WHERE datname = $1", database)
if err != nil {
t.Fatalf("Error terminating connections to database: %s", err)
}
_, err = rootDB.Exec("DROP DATABASE IF EXISTS " + database)
if err != nil {
t.Errorf("Unexpected error while dropping the postgres database %s: %s", database, err)
}
}
dropDB()
_, err = rootDB.Exec("CREATE DATABASE " + database)
if err != nil {
t.Fatalf("Error creating test postgres database: %s", err)
}
defer dropDB()
dropUser := func() {
_, err = rootDB.Exec("DROP USER IF EXISTS " + username)
if err != nil {
t.Errorf("Unexpected error while dropping the postgres user %s: %s", database, err)
}
}
dropUser()
password := generatePassword(t)
_, err = rootDB.Exec("CREATE USER " + username + " WITH PASSWORD '" + password + "'")
if err != nil {
t.Fatalf("Error creating postgres test user: %s", err)
}
defer dropUser()
_, err = rootDB.Exec("GRANT ALL PRIVILEGES ON test_table IN SCHEMA" + database + " TO " + username)
creds := postgresCredentials{
host: postgresHost,
username: username,
password: password,
database: database,
}
db := sql.OpenDB(Driver{CreateConnectorFunc: creds.createConnector})
_, err = db.Exec("CREATE TABLE test_table (id integer not null)")
if err != nil {
t.Errorf("Error creating table: %s", err)
}
defer func() {
_, err = db.Exec("DROP TABLE IF EXISTS test_table")
if err != nil {
t.Errorf("Error dropping table: %s", err)
}
}()
changePasswordTicker := jitterbug.New(1*time.Second, &jitterbug.Norm{Stdev: 2 * time.Second})
changePasswordCh := make(chan struct{})
// Change the password randomly
go func() {
for range changePasswordTicker.C {
newPassword := generatePassword(t)
_, err := rootDB.Exec("ALTER USER " + username + " WITH PASSWORD '" + newPassword + "'")
if err != nil {
t.Fatalf("Error updating user password: %s", err)
}
_, err = rootDB.Exec("SELECT pg_terminate_backend(pid) FROM pg_stat_activity WHERE usename = $1", username)
if err != nil {
t.Fatalf("Error terminating user connection: %s", err)
}
creds.password = newPassword
}
close(changePasswordCh)
}()
queryTicker := jitterbug.New(1*time.Second, &jitterbug.Norm{Stdev: 4 * time.Second})
defer queryTicker.Stop()
testDurationTimer := time.NewTimer(3 * time.Minute)
defer testDurationTimer.Stop()
insertedRows := 0
terminate:
for {
select {
case <-testDurationTimer.C:
break terminate
case <-queryTicker.C:
_, err := db.Exec("INSERT INTO test_table VALUES(1)")
if err != nil {
t.Errorf("Error inserting row: %s", err)
}
insertedRows++
}
}
changePasswordTicker.Stop()
<-changePasswordCh
var actualInsertedRows int
err = db.QueryRow("SELECT COUNT(id) FROM test_table").Scan(&actualInsertedRows)
if err != nil {
t.Fatalf("Error counting number of inserted rows: %s", err)
}
if actualInsertedRows != insertedRows {
t.Errorf("Inserted rows in database does not match number of insertions, expected %d, got %d", insertedRows, actualInsertedRows)
}
}
func generatePassword(t *testing.T) string {
dictionary := "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
var bytes = make([]byte, 30)
_, err := rand.Read(bytes)
if err != nil {
t.Fatalf("Error generating password: %s", err)
}
for k, v := range bytes {
bytes[k] = dictionary[v%byte(len(dictionary))]
}
return string(bytes)
}