-
Notifications
You must be signed in to change notification settings - Fork 59
/
migrations_tests.js
393 lines (333 loc) · 9.34 KB
/
migrations_tests.js
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
/* global Tinytest */
import { Migrations } from './migrations_server'
Tinytest.addAsync('Migrates up once and only once.', async function(test) {
const run = []; //keeps track of migrations in here
await Migrations._reset();
// first one
Migrations.add({
up: function() {
run.push('u1');
},
version: 1,
});
// migrates once
await Migrations.migrateTo('latest');
test.equal(run, ['u1']);
test.equal(await Migrations.getVersion(), 1);
// shouldn't do anything
await Migrations.migrateTo('latest');
test.equal(run, ['u1']);
test.equal(await Migrations.getVersion(), 1);
});
Tinytest.addAsync('Migrates up once and back down.', async function(test) {
const run = []; //keeps track of migrations in here
await Migrations._reset();
// first one
Migrations.add({
up: function() {
run.push('u1');
},
down: function() {
run.push('d1');
},
version: 1,
});
await Migrations.migrateTo('latest');
test.equal(run, ['u1']);
test.equal(await Migrations.getVersion(), 1);
// shouldn't do anything
await Migrations.migrateTo('0');
test.equal(run, ['u1', 'd1']);
test.equal(await Migrations.getVersion(), 0);
});
Tinytest.addAsync('Migrates up several times.', async function(test) {
const run = []; //keeps track of migrations in here
await Migrations._reset();
// first one
Migrations.add({
up: function() {
run.push('u1');
},
version: 1,
});
// migrates once
await Migrations.migrateTo('latest');
test.equal(run, ['u1']);
test.equal(await Migrations.getVersion(), 1);
// add two more, out of order
Migrations.add({
up: function() {
run.push('u4');
},
version: 4,
});
Migrations.add({
up: function() {
run.push('u3');
},
version: 3,
});
// should run the next two nicely in order
await Migrations.migrateTo('latest');
test.equal(run, ['u1', 'u3', 'u4']);
test.equal(await Migrations.getVersion(), 4);
});
Tinytest.addAsync('Tests migrating down', async function(test) {
const run = []; //keeps track of migrations in here
await Migrations._reset();
// add the migrations
Migrations.add({
up: function() {
run.push('u1');
},
version: 1,
});
Migrations.add({
up: function() {
run.push('u2');
},
version: 2,
});
Migrations.add({
up: function() {
run.push('u3');
},
down: function() {
run.push('d3');
},
version: 3,
name: 'Down Migration', //give it a name, just for shits
});
// migrates up
await Migrations.migrateTo('latest');
test.equal(run, ['u1', 'u2', 'u3']);
test.equal(await Migrations.getVersion(), 3);
// migrates down
await Migrations.migrateTo('2');
test.equal(run, ['u1', 'u2', 'u3', 'd3']);
test.equal(await Migrations.getVersion(), 2);
// should throw as migration u2 has no down method and remain at the save ver
await test.throwsAsync(async function() {
await Migrations.migrateTo('1');
}, /Cannot migrate/);
test.equal(run, ['u1', 'u2', 'u3', 'd3']);
test.equal(await Migrations.getVersion(), 2);
});
Tinytest.addAsync('Tests migrating down to version 0', async function(test) {
const run = []; //keeps track of migrations in here
await Migrations._reset();
test.equal(await Migrations.getVersion(), 0);
Migrations.add({
up: function() {
run.push('u1');
},
down: function() {
run.push('d1');
},
version: 1,
});
// migrates up
await Migrations.migrateTo('latest');
test.equal(run, ['u1']);
test.equal(await Migrations.getVersion(), 1);
// migrates down
await Migrations.migrateTo(0);
test.equal(run, ['u1', 'd1']);
test.equal(await Migrations.getVersion(), 0);
});
Tinytest.addAsync('Checks that locking works correctly', async function(test) {
const run = []; //keeps track of migrations in here
await Migrations._reset();
// add the migrations
Migrations.add({
version: 1,
up: async function() {
run.push('u1');
// attempts a migration from within the migration, this should have no
// effect due to locking
await Migrations.migrateTo('latest');
},
});
// migrates up, should only migrate once
await Migrations.migrateTo('latest');
test.equal(run, ['u1']);
test.equal(await Migrations.getVersion(), 1);
});
Tinytest.addAsync('Checks that version is updated if subsequent migration fails', async function(test) {
const run = [];
let shouldError = true;
await Migrations._reset();
// add the migrations
Migrations.add({
version: 1,
up: function() {
run.push('u1');
},
});
Migrations.add({
version: 2,
up: function() {
if (shouldError) {
throw new Error('Error in migration');
}
run.push('u2');
},
});
// migrate up, which should throw
await test.throwsAsync(async function() {
await Migrations.migrateTo('latest');
});
test.equal(run, ['u1']);
test.equal(await Migrations.getVersion(), 1);
shouldError = false;
// migrate up again, should succeed
await Migrations.unlock();
await Migrations.migrateTo('latest');
test.equal(run, ['u1', 'u2']);
test.equal(await Migrations.getVersion(), 2);
});
Tinytest.addAsync('Does nothing for no migrations.', async function(test) {
await Migrations._reset();
// shouldnt do anything
await Migrations.migrateTo('latest');
test.equal(await Migrations.getVersion(), 0);
});
Tinytest.addAsync('Checks that rerun works correctly', async function(test) {
const run = []; //keeps track of migrations in here
await Migrations._reset();
// add the migrations
Migrations.add({
version: 1,
up: function() {
run.push('u1');
},
});
await Migrations.migrateTo('latest');
test.equal(run, ['u1']);
test.equal(await Migrations.getVersion(), 1);
// shouldn't migrate
await Migrations.migrateTo(1);
test.equal(run, ['u1']);
test.equal(await Migrations.getVersion(), 1);
// should migrate again
await Migrations.migrateTo('1,rerun');
test.equal(run, ['u1', 'u1']);
test.equal(await Migrations.getVersion(), 1);
});
Tinytest.addAsync(
'Checks that rerun works even if there are missing versions',
async function(test) {
const run = []; //keeps track of migrations in here
await Migrations._reset();
// add the migration with a missing step
Migrations.add({
version: 3,
up: function() {
run.push('u1');
},
});
await Migrations.migrateTo('latest');
test.equal(run, ['u1']);
test.equal(await Migrations.getVersion(), 3);
// shouldn't migrate
await Migrations.migrateTo(3);
test.equal(run, ['u1']);
test.equal(await Migrations.getVersion(), 3);
// should migrate again
await Migrations.migrateTo('3,rerun');
test.equal(run, ['u1', 'u1']);
test.equal(await Migrations.getVersion(), 3);
},
);
Tinytest.addAsync(
'Migration callbacks include the migration as an argument',
async function(test) {
let contextArg;
await Migrations._reset();
// add the migrations
const migration = {
version: 1,
up: function(m) {
contextArg = m;
},
};
Migrations.add(migration);
await Migrations.migrateTo(1);
test.equal(contextArg === migration, true);
},
);
Tinytest.addAsync('Migrations can log to injected logger', async function(
test,
done,
) {
await Migrations._reset();
// Ensure this logging code only runs once. More than once and we get
// Tinytest errors that the test "returned multiple times", or "Trace: event
// after complete!". Give me a ping, Vasili. One ping only, please.
let calledDone = false;
Migrations.options.logger = function() {
if (!calledDone) {
calledDone = true;
test.isTrue(true);
done();
}
};
Migrations.add({ version: 1, up: function() {} });
await Migrations.migrateTo(1);
Migrations.options.logger = null;
});
Tinytest.addAsync(
'Migrations should pass correct arguments to logger',
async function(test, done) {
await Migrations._reset();
// Ensure this logging code only runs once. More than once and we get
// Tinytest errors that the test "returned multiple times", or "Trace: event
// after complete!". Give me a ping, Vasili. One ping only, please.
let calledDone = false;
const logger = function(opts) {
if (!calledDone) {
calledDone = true;
test.include(opts, 'level');
test.include(opts, 'message');
test.include(opts, 'tag');
test.equal(opts.tag, 'Migrations');
done();
}
};
Migrations.options.logger = logger;
Migrations.add({ version: 1, up: function() {} });
await Migrations.migrateTo(1);
Migrations.options.logger = null;
},
);
Tinytest.addAsync('Async migrations', async function(test) {
await Migrations._reset();
let num = 10
Migrations.add({
version: 1,
up: async function() {
num = 20
},
down: async function () {
num = 10
}
});
await Migrations.migrateTo(1);
test.equal(num, 20)
await Migrations.migrateTo(0);
test.equal(num, 10)
})
// Tinytest.addAsync('Fail migration when not a function', async function(test) {
// await Migrations._reset();
//
// Migrations.add({
// version: 1,
// name: 'Failure of a migration',
// up: 'this should fail'
// });
//
// test.throwsAsync(async function() {
// await Migrations.migrateTo('latest');
// }, /Migration must supply an up function/);
//
// })