-
Notifications
You must be signed in to change notification settings - Fork 3
/
mysql_test.go
160 lines (136 loc) · 3.38 KB
/
mysql_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
package mysql
import (
"database/sql"
"os"
"reflect"
"strings"
"testing"
"github.com/db-journey/migrate/v2/direction"
"github.com/db-journey/migrate/v2/driver"
"github.com/db-journey/migrate/v2/file"
)
// TestMigrate runs some additional tests on Migrate().
// Basic testing is already done in migrate_test.go
func TestMigrate(t *testing.T) {
host := getenvDefault("MYSQL_PORT_3306_TCP_ADDR", "localhost")
port := getenvDefault("MYSQL_PORT_3306_TCP_PORT", "3306")
driverURL := "mysql://root@tcp(" + host + ":" + port + ")/migratetest"
// prepare clean database
connection, err := sql.Open("mysql", strings.SplitN(driverURL, "mysql://", 2)[1])
if err != nil {
t.Fatal(err)
}
dropTestTables(t, connection)
migrate(t, driverURL)
dropTestTables(t, connection)
// Make an old-style 32-bit int version column that we'll have to upgrade.
_, err = connection.Exec("CREATE TABLE IF NOT EXISTS " + versionsTableName + " (version int not null primary key);")
if err != nil {
t.Fatal(err)
}
migrate(t, driverURL)
}
func migrate(t *testing.T, driverURL string) {
var err error
var d driver.Driver
if d, err = Open(driverURL); err != nil {
t.Fatal(err)
}
files := []file.File{
{
Path: "/foobar",
FileName: "20060102150405_foobar.up.sql",
Version: 20060102150405,
Name: "foobar",
Direction: direction.Up,
Content: []byte(`
CREATE TABLE yolo (
id int(11) not null primary key auto_increment
);
CREATE TABLE yolo1 (
id int(11) not null primary key auto_increment
);
`),
},
{
Path: "/foobar",
FileName: "20060102150405_foobar.down.sql",
Version: 20060102150405,
Name: "foobar",
Direction: direction.Down,
Content: []byte(`
DROP TABLE yolo;
`),
},
{
Path: "/foobar",
FileName: "20070000000000_foobar.up.sql",
Version: 20070000000000,
Name: "foobar",
Direction: direction.Up,
Content: []byte(`
// a comment
CREATE TABLE error (
id THIS WILL CAUSE AN ERROR
);
`),
},
}
driver.Lock(d)
err = d.Migrate(files[0])
if err != nil {
t.Fatal(err)
}
version, err := d.Version()
if err != nil {
t.Fatal(err)
}
if version != 20060102150405 {
t.Errorf("Expected version to be: %d, got: %d", 20060102150405, version)
}
driver.Unlock(d)
// Check versions applied in DB
expectedVersions := file.Versions{20060102150405}
versions, err := d.Versions()
if err != nil {
t.Errorf("Could not fetch versions: %s", err)
}
driver.Lock(d)
err = d.Migrate(files[1])
if err != nil {
t.Fatal(err)
}
driver.Unlock(d)
driver.Lock(d)
err = d.Migrate(files[2])
if err == nil {
t.Error("Expected test case to fail")
}
driver.Unlock(d)
// Check versions applied in DB
driver.Lock(d)
expectedVersions = file.Versions{}
versions, err = d.Versions()
if err != nil {
t.Errorf("Could not fetch versions: %s", err)
}
driver.Unlock(d)
if !reflect.DeepEqual(versions, expectedVersions) {
t.Errorf("Expected versions to be: %v, got: %v", expectedVersions, versions)
}
if err := d.Close(); err != nil {
t.Fatal(err)
}
}
func dropTestTables(t *testing.T, db *sql.DB) {
if _, err := db.Exec(`DROP TABLE IF EXISTS yolo, yolo1, ` + versionsTableName); err != nil {
t.Fatal(err)
}
}
func getenvDefault(varname, defaultValue string) string {
v := os.Getenv(varname)
if v == "" {
return defaultValue
}
return v
}