-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathmigrations_tests.js
389 lines (326 loc) · 9.92 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
/* global Tinytest */
import { Migrations } from './migrations_server';
Tinytest.addAsync('Migrates up once and only once with async up function.', async function (test) {
const run = []; // Keeps track of migrations
await Migrations._reset();
// First migration with async up function
Migrations.add({
up: async function () {
await new Promise((resolve) => setTimeout(resolve, 100)); // Simulate async operation
run.push('u1');
},
version: 1,
});
// Migrate up
await Migrations.migrateTo('latest');
test.equal(run, ['u1']);
test.equal(await Migrations.getVersion(), 1);
// Shouldn't do anything since we're already at the latest version
await Migrations.migrateTo('latest');
test.equal(run, ['u1']);
test.equal(await Migrations.getVersion(), 1);
});
Tinytest.addAsync('Migrates up once and back down with async up and down functions.', async function (test) {
const run = []; // Keeps track of migrations
await Migrations._reset();
// Migration with async up and down functions
Migrations.add({
up: async function () {
await new Promise((resolve) => setTimeout(resolve, 100)); // Simulate async operation
run.push('u1');
},
down: async function () {
await new Promise((resolve) => setTimeout(resolve, 100)); // Simulate async operation
run.push('d1');
},
version: 1,
});
// Migrate up
await Migrations.migrateTo('latest');
test.equal(run, ['u1']);
test.equal(await Migrations.getVersion(), 1);
// Migrate down
await Migrations.migrateTo('0');
test.equal(run, ['u1', 'd1']);
test.equal(await Migrations.getVersion(), 0);
});
Tinytest.addAsync('Migrates up several times with async migrations.', async function (test) {
const run = []; // Keeps track of migrations
await Migrations._reset();
// First migration
Migrations.add({
up: async function () {
await new Promise((resolve) => setTimeout(resolve, 50)); // Simulate async operation
run.push('u1');
},
version: 1,
});
// Migrate up
await Migrations.migrateTo('latest');
test.equal(run, ['u1']);
test.equal(await Migrations.getVersion(), 1);
// Add two more migrations out of order
Migrations.add({
up: async function () {
await new Promise((resolve) => setTimeout(resolve, 50));
run.push('u4');
},
version: 4,
});
Migrations.add({
up: async function () {
await new Promise((resolve) => setTimeout(resolve, 50));
run.push('u3');
},
version: 3,
});
// Migrate up to latest
await Migrations.migrateTo('latest');
test.equal(run, ['u1', 'u3', 'u4']);
test.equal(await Migrations.getVersion(), 4);
});
Tinytest.addAsync('Tests migrating down with async down function.', async function (test) {
const run = []; // Keeps track of migrations
await Migrations._reset();
// Add migrations
Migrations.add({
up: async function () {
run.push('u1');
},
version: 1,
});
Migrations.add({
up: async function () {
run.push('u2');
},
version: 2,
});
Migrations.add({
up: async function () {
run.push('u3');
},
down: async function () {
await new Promise((resolve) => setTimeout(resolve, 50));
run.push('d3');
},
version: 3,
name: 'Down Migration', // Give it a name
});
// Migrate up
await Migrations.migrateTo('latest');
test.equal(run, ['u1', 'u2', 'u3']);
test.equal(await Migrations.getVersion(), 3);
// Migrate down to version 2
await Migrations.migrateTo('2');
test.equal(run, ['u1', 'u2', 'u3', 'd3']);
test.equal(await Migrations.getVersion(), 2);
// Should throw since migration u2 has no down method
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 with async down functions.', async function (test) {
const run = []; // Keeps track of migrations
await Migrations._reset();
test.equal(await Migrations.getVersion(), 0);
Migrations.add({
up: async function () {
run.push('u1');
},
down: async function () {
run.push('d1');
},
version: 1,
});
// Migrate up
await Migrations.migrateTo('latest');
test.equal(run, ['u1']);
test.equal(await Migrations.getVersion(), 1);
// Migrate down to version 0
await Migrations.migrateTo(0);
test.equal(run, ['u1', 'd1']);
test.equal(await Migrations.getVersion(), 0);
});
Tinytest.addAsync('Checks that locking works correctly with async migrations.', async function (test) {
const run = []; // Keeps track of migrations
await Migrations._reset();
// Add migration that attempts to start another migration within it
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');
},
});
// Migrate 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 async migration fails.', async function (test) {
const run = [];
let shouldError = true;
await Migrations._reset();
// Add migrations
Migrations.add({
version: 1,
up: async function () {
run.push('u1');
},
});
Migrations.add({
version: 2,
up: async 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();
// Shouldn't do anything
await Migrations.migrateTo('latest');
test.equal(await Migrations.getVersion(), 0);
});
Tinytest.addAsync('Checks that rerun works correctly with async migrations.', async function (test) {
const run = []; // Keeps track of migrations
await Migrations._reset();
// Add migration
Migrations.add({
version: 1,
up: async 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 with rerun
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
await Migrations._reset();
// Add migration with a missing step
Migrations.add({
version: 3,
up: async 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 with rerun
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 migration
const migration = {
version: 1,
up: async 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) {
await Migrations._reset();
let calledDone = false;
Migrations.options.logger = function () {
if (!calledDone) {
calledDone = true;
test.isTrue(true);
}
};
Migrations.add({ version: 1, up: async function () {} });
await Migrations.migrateTo(1);
Migrations.options.logger = null;
});
Tinytest.addAsync('Migrations should pass correct arguments to logger.', async function (test) {
await Migrations._reset();
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');
}
};
Migrations.options.logger = logger;
Migrations.add({ version: 1, up: async function () {} });
await Migrations.migrateTo(1);
Migrations.options.logger = null;
});
Tinytest.addAsync('Async migrations execute in order.', async function (test) {
await Migrations._reset();
const run = [];
Migrations.add({
version: 1,
up: async function () {
await new Promise((resolve) => setTimeout(resolve, 100));
run.push('u1');
},
});
Migrations.add({
version: 2,
up: async function () {
await new Promise((resolve) => setTimeout(resolve, 50));
run.push('u2');
},
});
Migrations.add({
version: 3,
up: async function () {
run.push('u3');
},
});
await Migrations.migrateTo('latest');
test.equal(run, ['u1', 'u2', 'u3']);
});
Tinytest.addAsync('Fails migration when up is not a function.', async function (test) {
await Migrations._reset();
Migrations.add({
version: 1,
name: 'Failure of a migration',
up: 'this should fail',
});
await test.throwsAsync(async function () {
await Migrations.migrateTo('latest');
}, /Migration must supply an up function/);
});