forked from prebid/Prebid.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karmaRunner.js
97 lines (89 loc) · 3.22 KB
/
karmaRunner.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
const karma = require('karma');
const process = require('process');
const karmaConfMaker = require('./karma.conf.maker.js');
const glob = require('glob');
/**
* Environment variables:
*
* TEST_CHUNKS: number of chunks to split tests into, or MAX to run each test suite in isolation
* TEST_CHUNK: run only this chunk (e.g. TEST_CHUNKS=4 TEST_CHUNK=2 gulp test) will run only the second quarter
* TEST_ALL: set to continue running remaining chunks after a previous chunk failed
* TEST_PAT: test file pattern (default is *_spec.js)
*/
process.on('message', function (options) {
function info(msg) {
// eslint-disable-next-line no-console
console.log('\x1b[46m\x1b[30m%s\x1b[0m', msg);
}
function error(msg) {
// eslint-disable-next-line no-console
console.log('\x1b[41m\x1b[37m%s\x1b[0m', msg);
}
function chunkDesc(chunk) {
return chunk.length > 1 ? `From ${chunk[0]} to ${chunk[chunk.length - 1]}` : chunk[0];
}
const failures = [];
function quit(fail) {
// eslint-disable-next-line no-console
console.log('');
failures.forEach(([chunkNo, chunkTot, chunk]) => {
error(`Chunk ${chunkNo + 1} of ${chunkTot} failed: ${chunkDesc(chunk)}`);
fail = true;
});
process.exit(fail ? 1 : 0);
}
process.on('SIGINT', () => quit());
function runKarma(file) {
let cfg = karmaConfMaker(options.coverage, options.browserstack, options.watch, file, options.disableFeatures);
if (options.browsers && options.browsers.length) {
cfg.browsers = options.browsers;
}
if (options.oneBrowser) {
cfg.browsers = [cfg.browsers.find((b) => b.toLowerCase().includes(options.oneBrowser.toLowerCase())) || cfg.browsers[0]];
}
cfg = karma.config.parseConfig(null, cfg);
return new Promise((resolve, reject) => {
new karma.Server(cfg, (exitCode) => {
exitCode ? reject(exitCode) : resolve(exitCode);
}).start();
});
}
try {
let chunks = [];
if (options.file) {
chunks.push([options.file]);
} else {
const chunkNum = process.env['TEST_CHUNKS'] ?? 1;
const pat = process.env['TEST_PAT'] ?? '*_spec.js'
const tests = glob.sync('test/**/' + pat).sort();
const chunkLen = chunkNum === 'MAX' ? 0 : Math.floor(tests.length / Number(chunkNum));
chunks.push([]);
tests.forEach((fn) => {
chunks[chunks.length - 1].push(fn);
if (chunks[chunks.length - 1].length > chunkLen) chunks.push([]);
});
chunks = chunks.filter(chunk => chunk.length > 0);
if (chunks.length > 1) {
info(`Splitting tests into ${chunkNum} chunks, ${chunkLen + 1} suites each`);
}
}
let pm = Promise.resolve();
chunks.forEach((chunk, i) => {
if (process.env['TEST_CHUNK'] && Number(process.env['TEST_CHUNK']) !== i + 1) return;
pm = pm.then(() => {
info(`Starting chunk ${i + 1} of ${chunks.length}: ${chunkDesc(chunk)}`);
return runKarma(chunk);
}).catch(() => {
failures.push([i, chunks.length, chunk]);
if (!process.env['TEST_ALL']) quit();
}).finally(() => {
info(`Chunk ${i + 1} of ${chunks.length}: done`);
});
});
pm.then(() => quit());
} catch (e) {
// eslint-disable-next-line
error(e);
quit(true);
}
});