blob: 84368d6d99080b3279f015659c00b25d9adaf656 (
plain)
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
|
// Given an array of potentially asynchronous tests, this function will execute
// each in serial, ensuring that one and only one test is executing at a time.
//
// The test array should look like this:
//
//
// var tests = [
// [
// "Test description goes here.",
// function () {
// // Test code goes here. `this` is bound to the test object.
// }
// ],
// ...
// ];
//
// The |setup| and |teardown| arguments are functions which are executed before
// and after each test, respectively.
function executeTestsSerially(testList, setup, teardown) {
var tests = testList.map(function (t) {
return {
test: async_test(t[0]),
code: t[1]
};
});
var executeNextTest = function () {
var current = tests.shift();
if (current === undefined) {
return;
}
// Setup the test fixtures.
if (setup) {
setup();
}
// Bind a callback to tear down the test fixtures.
if (teardown) {
current.test.add_cleanup(teardown);
}
// Execute the test.
current.test.step(current.code);
};
add_result_callback(function () { setTimeout(executeNextTest, 0) });
executeNextTest();
}
|