-
Notifications
You must be signed in to change notification settings - Fork 0
/
migrate_test.go
259 lines (250 loc) · 5.46 KB
/
migrate_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
package dbmigrate
import (
"database/sql"
"testing"
"github.com/stretchr/testify/suite"
_ "modernc.org/sqlite"
)
type migrationSuite struct {
suite.Suite
}
func TestMigrate(t *testing.T) {
suite.Run(t, &migrationSuite{})
}
func (s *migrationSuite) TestMigrationDetection() {
tests := []struct {
name string
mm []Migration
applied []string
expOrder []string
target string
expError bool
}{
{
name: "ok, basic case, initial migration with empty ID",
mm: []Migration{
{Previous: "", ID: "1"},
{Previous: "1", ID: "2"},
{Previous: "2", ID: "3"},
{Previous: "3", ID: "4"},
},
applied: nil,
expError: false,
expOrder: []string{"1", "2", "3", "4"},
},
{
name: "ok, arbitrary order, but still valid",
mm: []Migration{
{Previous: "", ID: "1"},
{Previous: "1", ID: "2"},
{Previous: "3", ID: "4"},
{Previous: "2", ID: "3"},
},
applied: nil,
expError: false,
expOrder: []string{"1", "2", "3", "4"},
},
{
name: "ok, with some migrations applied",
mm: []Migration{
{Previous: "", ID: "1"},
{Previous: "1", ID: "2"},
{Previous: "2", ID: "3"},
{Previous: "3", ID: "4"},
{Previous: "4", ID: "5"},
},
applied: []string{"2"},
expError: false,
expOrder: []string{"3", "4", "5"},
},
{
name: "ok, schema is up to date, nothing to apply",
mm: []Migration{
{Previous: "", ID: "1"},
{Previous: "1", ID: "2"},
{Previous: "2", ID: "3"},
{Previous: "3", ID: "4"},
{Previous: "4", ID: "5"},
},
applied: []string{"1", "2", "3", "4", "5"},
expError: false,
expOrder: []string{},
},
{
name: "ok, initial migration has some previous ID, it is possibly consolidated from previous ones",
mm: []Migration{
{Previous: "some earlier migration ID", ID: "1"},
{Previous: "1", ID: "2"},
{Previous: "2", ID: "3"},
},
applied: nil,
expError: false,
expOrder: []string{"1", "2", "3"},
},
{
name: "ok, some migrations applied, target specified",
mm: []Migration{
{Previous: "", ID: "1"},
{Previous: "1", ID: "2"},
{Previous: "2", ID: "3"},
{Previous: "3", ID: "4"},
{Previous: "4", ID: "5"},
{Previous: "5", ID: "6"},
},
applied: []string{"1", "2", "3"},
target: "5",
expError: false,
expOrder: []string{"4", "5"},
},
{
name: "ok, some migrations applied, target specified as last",
mm: []Migration{
{Previous: "", ID: "1"},
{Previous: "1", ID: "2"},
{Previous: "2", ID: "3"},
{Previous: "3", ID: "4"},
{Previous: "4", ID: "5"},
{Previous: "5", ID: "6"},
},
applied: []string{"1", "2", "3"},
target: "6",
expError: false,
expOrder: []string{"4", "5", "6"},
},
{
name: "ok, single applied",
mm: []Migration{{ID: "1"}},
applied: []string{"1"},
expOrder: []string{},
expError: false,
},
{
name: "ok, target already applied",
mm: []Migration{
{Previous: "", ID: "1"},
{Previous: "1", ID: "2"},
{Previous: "2", ID: "3"},
},
applied: []string{"1", "2"},
target: "2",
expError: false,
expOrder: []string{},
},
{
name: "error, empty ID",
mm: []Migration{{}},
expError: true,
},
{
name: "error, duplicate ID",
mm: []Migration{
{ID: "1"},
{Previous: "1", ID: "2"},
{Previous: "2", ID: "1"},
},
expError: true,
},
{
name: "error, duplicate prev migration ID",
mm: []Migration{
{ID: "1"},
{Previous: "1", ID: "2"},
{Previous: "1", ID: "3"},
},
expError: true,
},
{
name: "error, cycle",
mm: []Migration{
{ID: "1"},
{Previous: "1", ID: "2"},
{Previous: "2", ID: "3"},
{Previous: "3", ID: "1"},
},
expError: true,
},
{
name: "error, multiple not existing initial migrations",
mm: []Migration{
{Previous: "initial 1", ID: "1"},
{Previous: "initial 2", ID: "2"},
},
expError: true,
},
{
name: "error, no initial",
mm: []Migration{
{Previous: "2", ID: "1"},
{Previous: "1", ID: "2"},
{Previous: "2", ID: "1"},
},
expError: true,
},
{
name: "error, no corresponding applied migration detected",
mm: []Migration{
{Previous: "", ID: "1"},
{Previous: "1", ID: "2"},
{Previous: "2", ID: "3"},
},
applied: []string{"4", "5"},
expError: true,
},
{
name: "error, invalid target",
mm: []Migration{
{Previous: "", ID: "1"},
{Previous: "1", ID: "2"},
{Previous: "2", ID: "3"},
},
target: "4",
expError: true,
},
}
for _, t := range tests {
s.Run(t.name, func() {
m, err := findMigrationsToApply(t.mm, t.applied, t.target)
if t.expError {
s.Require().Error(err)
} else {
s.Require().NoError(err)
ids := make([]string, 0, len(m))
for _, mi := range m {
ids = append(ids, mi.ID)
}
s.Require().ElementsMatch(t.expOrder, ids)
}
})
}
}
func (s *migrationSuite) TestActualMigration() {
db, err := sql.Open("sqlite", ":memory:")
s.Require().NoError(err)
mm := []Migration{
{
ID: "1",
Desc: "initial",
Stmt: `
CREATE TABLE test
(
id INTEGER PRIMARY KEY AUTOINCREMENT
);
CREATE TABLE test2
(
id INTEGER PRIMARY KEY AUTOINCREMENT
);
`,
},
{
Previous: "1",
ID: "2",
Desc: "migration #2",
Stmt: `
ALTER TABLE test ADD id2 INTEGER DEFAULT 0;
`,
DisableFK: true,
},
}
s.Require().NoError(Upgrade(db, DialectSQLite, "1", mm...))
s.Require().NoError(UpgradeToLatest(db, DialectSQLite, mm...))
}