-
Notifications
You must be signed in to change notification settings - Fork 33
/
darwin_test.go
443 lines (363 loc) · 8.64 KB
/
darwin_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
package darwin
import (
"errors"
"fmt"
"sort"
"testing"
"time"
)
type dummyDriver struct {
CreateError bool
InsertError bool
AllError bool
ExecError bool
records []MigrationRecord
}
func (d *dummyDriver) Create() error {
if d.CreateError {
return errors.New("Error")
}
return nil
}
func (d *dummyDriver) Insert(m MigrationRecord) error {
if d.InsertError {
return errors.New("Error")
}
d.records = append(d.records, m)
return nil
}
func (d *dummyDriver) All() ([]MigrationRecord, error) {
if d.AllError {
return []MigrationRecord{}, errors.New("Error")
}
return d.records, nil
}
func (d *dummyDriver) Exec(string) (time.Duration, error) {
if d.ExecError {
return time.Millisecond * 1, errors.New("Error")
}
return time.Millisecond * 1, nil
}
func Test_Status_String(t *testing.T) {
expectations := []struct {
status Status
expected string
}{
{
Ignored, "IGNORED",
},
{
Applied, "APPLIED",
},
{
Pending, "PENDING",
},
{
Error, "ERROR",
},
{
Status(-1), "INVALID",
},
}
for _, expectation := range expectations {
if expectation.expected != expectation.status.String() {
t.Errorf("Expected %s, got %s", expectation.expected, expectation.status.String())
t.FailNow()
}
}
}
func Test_Info(t *testing.T) {
baseTime, _ := time.Parse(time.RFC3339, "2002-10-02T15:00:00Z")
records := []MigrationRecord{
{
Version: 1.0,
Description: "1.0",
AppliedAt: baseTime,
},
{
Version: 2.0,
Description: "2.0",
AppliedAt: baseTime.Add(2 * time.Second),
},
}
migrations := []Migration{
{
Version: 1.0,
Description: "Must Be APPLIED",
Script: "does not matter!",
},
{
Version: 1.1,
Description: "Must Be IGNORED",
Script: "does not matter!",
},
{
Version: 2.0,
Description: "Must Be APPLIED",
Script: "does not matter!",
},
{
Version: 3.0,
Description: "Must Be PENDING",
Script: "does not matter!",
},
}
d := New(&dummyDriver{records: records}, migrations, nil)
d.Migrate()
infos, err := d.Info()
if err != nil {
t.Error("Must not return error")
t.FailNow()
}
expectations := []Status{Applied, Ignored, Applied, Pending}
for i, info := range infos {
if expectations[i] != info.Status {
t.Errorf("Expected %s, got %s", expectations[i], info.Status)
t.FailNow()
}
}
}
func Test_Info_with_error(t *testing.T) {
driver := &dummyDriver{AllError: true}
migrations := []Migration{}
_, err := Info(driver, migrations)
if err == nil {
t.Error("Must emit error")
}
}
func Test_DuplicateMigrationVersionError_Error(t *testing.T) {
err := DuplicateMigrationVersionError{Version: 1}
if err.Error() != fmt.Sprintf("Multiple migrations have the version number %f.", 1.0) {
t.Error("Must inform the version of the duplicated migration")
}
}
func Test_IllegalMigrationVersionError_Error(t *testing.T) {
err := IllegalMigrationVersionError{Version: 1}
if err.Error() != fmt.Sprintf("Illegal migration version number %f.", 1.0) {
t.Error("Must inform the version of the invalid migration")
}
}
func Test_RemovedMigrationError_Error(t *testing.T) {
err := RemovedMigrationError{Version: 1}
if err.Error() != fmt.Sprintf("Migration %f was removed", 1.0) {
t.Error("Must inform when a migration is removed from the list")
}
}
func Test_InvalidChecksumError_Error(t *testing.T) {
err := InvalidChecksumError{Version: 1}
if err.Error() != fmt.Sprintf("Invalid cheksum for migration %f", 1.0) {
t.Error("Must inform when a migration have an invalid checksum")
}
}
func Test_Validate_invalid_version(t *testing.T) {
migrations := []Migration{
{
Version: -1,
Description: "Hello World",
Script: "does not matter!",
},
}
err := Validate(&dummyDriver{}, migrations)
if err.(IllegalMigrationVersionError).Version != -1 {
t.Errorf("Must not accept migrations with invalid version numbers")
}
}
func Test_Validate_duplicated_version(t *testing.T) {
migrations := []Migration{
{
Version: 1,
Description: "Hello World",
Script: "does not matter!",
},
{
Version: 1,
Description: "Hello World",
Script: "does not matter!",
},
}
err := Validate(&dummyDriver{}, migrations)
if err.(DuplicateMigrationVersionError).Version != 1 {
t.Errorf("Must not accept migrations with duplicated version numbers")
}
}
func Test_Validate_removed_migration(t *testing.T) {
// Other fields are not necessary for testing...
records := []MigrationRecord{
{
Version: 1.0,
},
{
Version: 1.1,
},
}
migrations := []Migration{
{
Version: 1.1,
Description: "Hello World",
Script: "does not matter!",
},
}
// Running with struct
d := New(&dummyDriver{records: records}, migrations, nil)
err := d.Validate()
if err.(RemovedMigrationError).Version != 1 {
t.Errorf("Must not validate when some migration was removed from the migration list")
}
}
func Test_Validate_invalid_checksum(t *testing.T) {
// Other fields are not necessary for testing...
records := []MigrationRecord{
{
Version: 1.0,
Checksum: "3310d0ff858faac79e854454c9e403db",
},
}
migrations := []Migration{
{
Version: 1.0,
Description: "Hello World",
Script: "does not matter!",
},
}
err := Validate(&dummyDriver{records: records}, migrations)
if err.(InvalidChecksumError).Version != 1 {
t.Errorf("Must not validate when some migration differ from the migration applied in the database")
}
}
func Test_Migrate_migrate_all(t *testing.T) {
migrations := []Migration{
{
Version: 1,
Description: "First Migration",
Script: "does not matter!",
},
{
Version: 2,
Description: "Second Migration",
Script: "does not matter!",
},
}
driver := &dummyDriver{records: []MigrationRecord{}}
infoChan := make(chan MigrationInfo, 2)
Migrate(driver, migrations, infoChan)
all, _ := driver.All()
if len(all) != 2 {
t.Errorf("Must not apply all migrations")
}
info := <-infoChan
if info.Migration.Version != 1 {
t.Errorf("Must send a message for each migration applied")
}
info = <-infoChan
if info.Migration.Version != 2 {
t.Errorf("Must send a message for each migration applied")
}
}
func Test_Migrate_migrate_partial(t *testing.T) {
applied := []MigrationRecord{
{
Version: 1,
Checksum: "3310d0ff858faac79e854454c9e403da",
},
}
migrations := []Migration{
{
Version: 1,
Description: "First Migration",
Script: "does not matter!",
},
{
Version: 2,
Description: "Second Migration",
Script: "does not matter!",
},
{
Version: 3,
Description: "Third Migration",
Script: "does not matter!",
},
}
driver := &dummyDriver{records: applied}
all, _ := driver.All()
if len(all) != 1 {
t.Errorf("Should have 1 migration already applied")
}
// Running with struct
d := New(driver, migrations, nil)
d.Migrate()
all, _ = driver.All()
if len(all) != 3 {
t.Errorf("Must not apply all migrations")
}
}
func Test_Migrate_migrate_error(t *testing.T) {
driver := &dummyDriver{CreateError: true}
migrations := []Migration{}
err := Migrate(driver, migrations, nil)
if err == nil {
t.Error("Must emit error")
}
}
func Test_Migrate_with_error_in_Validate(t *testing.T) {
driver := &dummyDriver{AllError: true}
migrations := []Migration{}
err := Migrate(driver, migrations, nil)
if err == nil {
t.Error("Must emit error")
}
}
func Test_Migrate_with_error_in_driver_insert(t *testing.T) {
driver := &dummyDriver{InsertError: true}
migrations := []Migration{
{
Version: 1,
Description: "First Migration",
Script: "does not matter!",
},
}
err := Migrate(driver, migrations, nil)
if err == nil {
t.Error("Must emit error")
}
}
func Test_Migrate_with_error_in_driver_exec(t *testing.T) {
driver := &dummyDriver{ExecError: true}
migrations := []Migration{
{
Version: 1,
Description: "First Migration",
Script: "does not matter!",
},
}
Migrate(driver, migrations, nil)
all, _ := driver.All()
if len(all) != 0 {
t.Errorf("Must not apply all migrations")
}
}
func Test_planMigration_error_driver(t *testing.T) {
driver := &dummyDriver{AllError: true}
migrations := []Migration{}
_, err := planMigration(driver, migrations)
if err == nil {
t.Error("Must emit error")
}
}
func Test_byMigrationVersion(t *testing.T) {
unordered := []Migration{
{
Version: 3,
Description: "Hello World",
Script: "does not matter!",
},
{
Version: 1,
Description: "Hello World",
Script: "does not matter!",
},
}
sort.Sort(byMigrationVersion(unordered))
if unordered[0].Version != 1.0 {
t.Errorf("Must order by version number")
}
}