-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsqldb_test.go
504 lines (437 loc) · 11.3 KB
/
sqldb_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
package sqldb
import (
"net/url"
"strconv"
"strings"
"testing"
)
func TestNew(t *testing.T) {
c := New()
if len(c.SQLitePragmas) != len(DefaultSQLitePragmas) {
t.FailNow()
return
}
if c.MapperFunc == nil {
t.FailNow()
return
}
if c.LoggingLevel != LogLevelDefault {
t.FailNow()
return
}
if c.ConnectionOptions == nil {
t.FailNow()
return
}
}
func TestUse(t *testing.T) {
c := New()
c.Host = "10.0.0.1"
c.Name = "test"
Use(c)
if cfg.Host != c.Host {
t.FailNow()
return
}
if cfg.Name != c.Name {
t.FailNow()
return
}
}
func TestConnect(t *testing.T) {
//Only test with SQLite since that is the only database type we can be assured
//exists/is available on any device that attempts to run this func.
c := NewSQLite(SQLiteInMemoryFilepathRaceSafe)
err := c.Connect()
if err != nil {
t.Fatal(err)
return
}
defer c.Close()
//Try connecting again which will fail.
err = c.Connect()
if err != ErrConnected {
t.Fatal("Error about connecting to an already connected database should have occured.")
return
}
//Test with a bad config.
c.Close()
c.SQLitePath = ""
err = c.Connect()
if err == nil {
t.Fatal("Error about bad config should have occured.")
return
}
//Test with a bad db type.
c.Type = DBType("bad")
c.SQLitePath = SQLiteInMemoryFilepathRaceSafe
err = c.Connect()
if err == nil {
t.Fatal("Error about bad db type should have occured.")
return
}
//Test with a good config and PRAGMA set, check PRAGMA is set.
c.Close()
c = NewSQLite(SQLiteInMemoryFilepathRaceSafe)
c.SQLitePragmas = []string{
"PRAGMA busy_timeout = 5000",
//cannot set journal mode to WAL with in-memory db. journal mode is memory.
}
err = c.Connect()
if err != nil {
t.Log("con ", c.connectionString)
t.Fatal(err)
return
}
defer c.Close()
var busyTimeout string
q := "PRAGMA busy_timeout"
err = c.Connection().Get(&busyTimeout, q)
if err != nil {
t.Fatal(err)
return
}
expectedBusyTimeout := "5000"
if busyTimeout != expectedBusyTimeout {
t.Fatal("PRAGMA busy_timeout not set correctly.", busyTimeout, expectedBusyTimeout)
return
}
//Check if we are connected.
if !c.Connected() {
t.Fatal("Connection not showing connected as it should!")
return
}
//Test with a bad path.
c.Close()
c.SQLitePath = "/path/is/bad.db"
err = c.Connect()
if err == nil {
t.Fatal("error should have occured because path does not exist.")
return
}
}
func TestDefaultMapperFunc(t *testing.T) {
in := "asdfasdfasdf"
out := DefaultMapperFunc(in)
if in != out {
t.Fatal("defaultMapperFunc modified provided string but should not have.")
return
}
}
func TestValidate(t *testing.T) {
//Test MariaDB/MySQL with missing stuff.
c := New()
c.Type = DBTypeMariaDB
err := c.validate()
if err != ErrHostNotProvided {
t.Fatal("ErrHostNotProvided should have occured but didnt")
return
}
c.Host = "10.0.0.1"
err = c.validate()
if err != ErrInvalidPort {
t.Fatal("ErrInvalidPort should have occured but didnt")
return
}
c.Port = defaultMariaDBPort
err = c.validate()
if err != ErrNameNotProvided {
t.Fatal("ErrNameNotProvided should have occured but didnt")
return
}
c.Name = "dbname"
err = c.validate()
if err != ErrUserNotProvided {
t.Fatal("ErrUserNotProvided should have occured but didnt")
return
}
c.User = "user"
err = c.validate()
if err != ErrPasswordNotProvided {
t.Fatal("ErrPasswordNotProvided should have occured but didnt")
return
}
c.Password = "password"
err = c.validate()
if err != nil {
t.Fatal("Unexpected error", err)
return
}
//Test for SQLite.
c = New()
c.Type = DBTypeSQLite
err = c.validate()
if err != ErrSQLitePathNotProvided {
t.Fatal("ErrSQLitePathNotProvided should have occured but didnt")
return
}
c.SQLitePath = "/path/to/sqlite.db"
err = c.validate()
if err != nil {
t.Fatal("unexpected error", err)
return
}
//Bad db type, which should never occur.
c = New()
c.Type = "bad" //setting to a string which gets autocorrected to the dbType type even though the value is invalid.
err = c.validate()
if err == nil {
t.Fatal("Error about bad db type should have occured in validate.")
return
}
//Test using New... config builders.
host := "10.0.0.1"
dbName := "db_name"
user := "user"
password := "password"
cfg := NewMariaDB(host, dbName, user, password)
if err = cfg.validate(); err != nil {
t.Fatal(err)
return
}
cfg = NewMySQL(host, dbName, user, password)
if err = cfg.validate(); err != nil {
t.Fatal(err)
return
}
cfg = NewMSSQL(host, dbName, user, password)
if err = cfg.validate(); err != nil {
t.Fatal(err)
return
}
cfg = NewSQLite("/path/to/sqlite.db")
if err = cfg.validate(); err != nil {
t.Fatal(err)
return
}
//Bad logging level.
cfg.LoggingLevel = -100
if err = cfg.validate(); err != nil {
t.Fatal(err)
return
}
}
func TestBuildConnectionString(t *testing.T) {
//For deploying a MariaDB/MySQL database (note missing database name).
t.Run("mariadb-deploy", func(t *testing.T) {
c := NewMariaDB("10.0.0.1", "", "user", "password")
got := c.buildConnectionString(true)
expected := c.User + ":" + c.Password + "@tcp(" + c.Host + ":" + strconv.FormatUint(uint64(c.Port), 10) + ")/"
if got != expected {
t.Log("Got:", got)
t.Log("Exp:", expected)
t.Fatal("Connection string not built correctly.")
return
}
})
//For connecting to an already existing MariaDB/MySQL database.
t.Run("mariadb-existing", func(t *testing.T) {
c := NewMariaDB("10.0.0.1", "db_name", "user", "password")
got := c.buildConnectionString(false)
expected := c.User + ":" + c.Password + "@tcp(" + c.Host + ":" + strconv.FormatUint(uint64(c.Port), 10) + ")/" + c.Name
if got != expected {
t.Log("Got:", got)
t.Log("Exp:", expected)
t.Fatal("Connection string not built correctly.")
return
}
})
//For deploying SQLite.
t.Run("sqlite-deploy", func(t *testing.T) {
c := NewSQLite("/path/to/sqlite.db")
got := c.buildConnectionString(true)
expected := c.SQLitePath //plus some pragmas appended to path.
if !strings.HasPrefix(got, expected) {
t.Log("Got:", got)
t.Log("Exp:", expected)
t.Fatal("Connection string for SQLite should just be the path but wasn't.")
return
}
})
//For connecting to an already existing SQLite database.
t.Run("sqlite-existing", func(t *testing.T) {
c := NewSQLite("/path/to/sqlite.db")
got := c.buildConnectionString(false)
expected := c.SQLitePath //plus some pragmas appended to path.
if !strings.HasPrefix(got, expected) {
t.Log("Got:", got)
t.Log("Exp:", expected)
t.Fatal("Connection string for SQLite should just be the path but wasn't.")
return
}
})
//For connecting to an already existing SQLite using PRAGMAs.
t.Run("sqlite-with-pragmas", func(t *testing.T) {
c := NewSQLite("/path/to/sqlite.db")
c.SQLitePragmas = []string{
"PRAGMA busy_timeout = 5000",
}
got := c.buildConnectionString(false)
expected := ""
switch GetSQLiteLibrary() {
case sqliteLibraryMattn:
expected = c.SQLitePath + "?_busy_timeout=5000"
case sqliteLibraryModernc:
expected = c.SQLitePath + "?_pragma=busy_timeout=5000"
//have to handle second equals sign being replaced by %3D.
got, _ = url.QueryUnescape(got)
expected, _ = url.QueryUnescape(expected)
}
if got != expected {
t.Log("Got:", got)
t.Log("Exp:", expected)
t.Fatal("Connection string for SQLite with PRAGMAs is wrong.")
return
}
})
//In-memory SQLite database, that has a query parameter in it already.
t.Run("sqlite-in-memory", func(t *testing.T) {
c := NewSQLite(SQLiteInMemoryFilepathRaceSafe)
c.SQLitePragmas = []string{
"PRAGMA busy_timeout = 5000",
}
got := c.buildConnectionString(false)
expected := ""
switch GetSQLiteLibrary() {
case sqliteLibraryMattn:
expected = c.SQLitePath + "&_busy_timeout=5000"
case sqliteLibraryModernc:
expected = c.SQLitePath + "&_pragma=busy_timeout=5000"
//have to handle second equals sign being replaced by %3D.
got, _ = url.QueryUnescape(got)
expected, _ = url.QueryUnescape(expected)
}
if got != expected {
t.Log("Got:", got)
t.Log("Exp:", expected)
t.Fatal("Connection string for SQLite with PRAGMAs is wrong.")
return
}
})
//For deploying MS SQL.
t.Run("mssql-deploy", func(t *testing.T) {
c := NewMSSQL("10.0.0.1", "", "user", "password")
got := c.buildConnectionString(true)
expected := "sqlserver://" + c.User + ":" + c.Password + "@" + c.Host + ":" + strconv.FormatUint(uint64(c.Port), 10)
if got != expected {
t.Log("Got:", got)
t.Log("Exp:", expected)
t.Fatal("Connection string not built correctly.")
return
}
})
//For connecting to an already existing MS SQL database.
t.Run("mssql-existing", func(t *testing.T) {
c := NewMSSQL("10.0.0.1", "", "user", "password")
got := c.buildConnectionString(false)
expected := "sqlserver://" + c.User + ":" + c.Password + "@" + c.Host + ":" + strconv.FormatUint(uint64(c.Port), 10) + "?database=" + c.Name
if got != expected {
t.Log("Got:", got)
t.Log("Exp:", expected)
t.Fatal("Connection string not built correctly.")
return
}
})
//Test MS SQL with additional connection parameters.
t.Run("mssql-additional", func(t *testing.T) {
c := NewMSSQL("10.0.0.1", "", "user", "password")
c.AddConnectionOption("encrypt", "false")
got := c.buildConnectionString(false)
expected := "sqlserver://" + c.User + ":" + c.Password + "@" + c.Host + ":" + strconv.FormatUint(uint64(c.Port), 10) + "?database=" + c.Name + "&encrypt=false"
if got != expected {
t.Log("Got:", got)
t.Log("Exp:", expected)
t.Fatal("Connection string not built correctly.")
return
}
})
}
func TestGetDriver(t *testing.T) {
d := getDriver(DBTypeMariaDB)
if d != "mysql" {
t.FailNow()
return
}
d = getDriver(DBTypeSQLite)
if d != sqliteDriverName {
t.FailNow()
return
}
d = getDriver(DBTypeMSSQL)
if d != "mssql" {
t.FailNow()
return
}
}
func TestClose(t *testing.T) {
c := NewSQLite(SQLiteInMemoryFilepathRaceSafe)
if c.Type != DBTypeSQLite {
t.Fatal("Config doesn't match")
return
}
err := c.Connect()
if err != nil {
t.Fatal(err)
return
}
err = c.Close()
if err != nil {
t.Fatal(err)
return
}
err = c.connection.Ping()
if err == nil {
t.Fatal("Connection isn't really closed")
return
}
//call close multiple times to make sure there isn't anything odd that happens
//if a user does this.
err = c.Close()
if err != nil {
t.Fatal(err)
return
}
err = c.Close()
if err != nil {
t.Fatal(err)
return
}
}
func TestAddConnectionOption(t *testing.T) {
//Get config to work off of.
c := NewMSSQL("10.0.0.1", "db_name", "user1", "password1")
//Add option.
k := "key"
v := "value"
c.AddConnectionOption(k, v)
//Make sure connection option was saved.
vFound, ok := c.ConnectionOptions[k]
if !ok {
t.Fatal("Could not find key in connection options.")
return
}
if vFound != v {
t.Fatal("Connection option value mismatch.", vFound, v)
return
}
//Make sure blank map is populated if map doesn't exist.
c.ConnectionOptions = nil
c.AddConnectionOption(k, v)
vFound, ok = c.ConnectionOptions[k]
if !ok {
t.Fatal("Could not find key in connection options.")
return
}
if vFound != v {
t.Fatal("Connection option value mismatch.", vFound, v)
return
}
}
func TestType(t *testing.T) {
c := NewMariaDB("10.0.0.1", "test", "user", "password")
Use(c)
if Type() != DBTypeMariaDB {
t.Fatal("Type() returned incorrect value.", Type())
return
}
}