-
Notifications
You must be signed in to change notification settings - Fork 471
/
Copy pathtestUtil.js
54 lines (50 loc) · 1.14 KB
/
testUtil.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
// Run each test function in sequence,
// with an async delay and GC call between each.
function tick (x) {
return new Promise((resolve) => {
setImmediate(function ontick () {
if (--x === 0) {
resolve();
} else {
setImmediate(ontick);
}
});
});
}
async function runGCTests (tests) {
// Break up test list into a list of lists of the form
// [ [ 'test name', function() {}, ... ], ..., ].
const testList = [];
let currentTest;
for (const item of tests) {
if (typeof item === 'string') {
currentTest = [];
testList.push(currentTest);
}
currentTest.push(item);
}
for (const test of testList) {
await (async function (test) {
let title;
for (let i = 0; i < test.length; i++) {
if (i === 0) {
title = test[i];
} else {
try {
test[i]();
} catch (e) {
console.error('Test failed: ' + title);
throw e;
}
if (i < tests.length - 1) {
global.gc();
await tick(10);
}
}
}
})(test);
}
}
module.exports = {
runGCTests
};