-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathrunner_recursive.js
98 lines (84 loc) · 2.57 KB
/
runner_recursive.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
#!/usr/bin/env node
const cypress = require('cypress');
const glob = require('glob');
/* Parse args */
let { executors = 1, filter } = process.argv.slice(2).reduce((acc, pair) => {
let [key, value] = pair.split('=');
acc[key] = value;
return acc;
}, {});
process.exitCode = 0;
/* get list of all .spec files*/
let specs = glob
.sync('cypress/e2e/**/*.cy.js')
.filter(specPath =>
typeof filter === 'undefined'
? specPath
: specPath.includes(filter)
);
const initialSpecsCount = specs.length;
process.stdout.write(`Running cypress with ${executors} executors\n`);
process.stdout.write(`Found ${initialSpecsCount} spec files\n`);
/* execute cypress run for spec file */
const cypressTask = (spec, envVariables) => {
return new Promise((resolve, reject) => {
cypress
.run({
browser: 'chrome',
spec: spec,
config: {
video: false
},
env: {
...envVariables
}
})
.then(results => {
resolve();
process.exitCode += results.totalFailed || 0;
})
.catch(err => {
process.stdout.write(err);
process.exitCode += 1;
});
});
};
/* pick spec from array and run cypress task */
function next() {
if (specs.length > 0) {
const globalHooks = {}
// global before hook:
specs.length === initialSpecsCount && (globalHooks.setupSuite = true)
// global after hook:
specs.length === 0 && (globalHooks.teardownSuite = true)
const nextSpec = specs.shift();
process.stdout.write(
`PICKING UP NEXT TASK (${nextSpec}) ${initialSpecsCount -
specs.length}/${initialSpecsCount}\n`
);
return cypressTask(
nextSpec,
globalHooks
);
} else {
return Promise.reject('ALL SPECS PROCESSED\n');
}
}
/* chain recursively cypress run task and picking another feature from array */
const chainer = () => {
return new Promise(resolve => {
resolve(
(function recursive() {
next()
.then(recursive)
.catch(e => process.stdout.write(e));
})()
);
});
};
/* create array of executors */
let chains = Array.from({ length: executors }, chainer);
Promise.all(chains);
process.on('exit', code => {
return console.log(`Runner process exit with code ${code}`);
});