forked from LiskArchive/lisk-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparallel_tests.js
157 lines (136 loc) · 3.54 KB
/
parallel_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
/*
* Copyright © 2018 Lisk Foundation
*
* See the LICENSE file at the top-level directory of this distribution
* for licensing information.
*
* Unless otherwise agreed in a custom licensing agreement with the Lisk Foundation,
* no part of this software, including this file, may be copied, modified,
* propagated, or distributed except according to the terms contained in the
* LICENSE file.
*
* Removal or modification of this copyright notice is prohibited.
*/
'use strict';
var child_process = require('child_process');
var find = require('find');
var maxParallelism = 20;
function parallelTests(tag, suite, section) {
var suiteFolder = null;
switch (suite) {
case 'unit':
suiteFolder = 'test/unit/';
break;
case 'functional':
switch (section) {
case 'get':
suiteFolder = 'test/functional/http/get/';
break;
case 'post':
suiteFolder = 'test/functional/http/post/';
break;
case 'ws':
suiteFolder = 'test/functional/ws/';
break;
case 'system':
suiteFolder = 'test/functional/system/';
break;
case undefined:
suiteFolder = 'test/functional/';
break;
default:
console.warn(
'Invalid section argument. Options are: get, post, ws or system'
);
process.exit();
break;
}
break;
default:
console.warn('Invalid suite argument. Options are: unit or functional');
process.exit();
break;
}
var mochaArguments = [];
switch (tag) {
case 'slow':
mochaArguments.push('--', '--grep', '@slow');
break;
case 'unstable':
mochaArguments.push('--', '--grep', '@unstable');
break;
case 'untagged':
mochaArguments.push('--', '--grep', '@slow|@unstable', '--invert');
break;
case 'extensive':
mochaArguments.push('--', '--grep', '@unstable', '--invert');
break;
default:
mochaArguments.push('--', '--grep', '@slow|@unstable', '--invert');
break;
}
// Looking recursevely for javascript files not containing the word "common"
var pathfiles = find.fileSync(/^((?!common)[\s\S])*.js$/, suiteFolder);
var initPathfiles = pathfiles.splice(0, maxParallelism);
var parallelTestsRunning = {};
var spawnTest = function(test) {
var coverageArguments = [
'cover',
'--dir',
'test/.coverage-unit',
'--include-pid',
'--print',
'none',
'node_modules/.bin/_mocha',
test,
];
var istanbulArguments = coverageArguments.concat(mochaArguments);
var child = child_process.spawn(
'node_modules/.bin/istanbul',
istanbulArguments,
{
cwd: `${__dirname}/../..`,
detached: true,
stdio: 'inherit',
}
);
console.info(
'Running the test:',
test,
'as a separate process - pid',
child.pid
);
parallelTestsRunning[child.pid] = child;
var cleanupRunningTests = function() {
Object.keys(parallelTestsRunning).forEach(k => {
parallelTestsRunning[k].kill('SIGTERM');
});
};
child.on('close', code => {
if (code === 0) {
console.info('Test finished successfully:', test);
delete parallelTestsRunning[child.pid];
if (pathfiles.length) {
spawnTest(pathfiles.shift());
}
if (Object.keys(parallelTestsRunning).length === 0) {
return console.info('All tests finished successfully.');
}
return;
}
console.info('Test failed:', test);
cleanupRunningTests();
process.exit(code);
});
child.on('error', err => {
console.error(err);
cleanupRunningTests();
process.exit();
});
};
initPathfiles.forEach(spawnTest);
}
parallelTests(process.argv[2], process.argv[3], process.argv[4]);
module.exports = {
parallelTests,
};