-
-
Notifications
You must be signed in to change notification settings - Fork 35.4k
Expand file tree
/
Copy pathpermission-startup.js
More file actions
59 lines (52 loc) · 1.49 KB
/
permission-startup.js
File metadata and controls
59 lines (52 loc) · 1.49 KB
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
'use strict';
const common = require('../common.js');
const path = require('path');
const { spawnSync } = require('child_process');
function mockFiles(n, prefix = '/tmp') {
const files = [];
for (let i = 0; i < n; ++i) {
files.push(prefix + '/file' + i + '.js');
}
return files;
}
const bench = common.createBenchmark(main, {
script: [
'test/fixtures/semicolon',
],
prefixPath: ['/tmp'],
nFiles: [10, 100, 1000],
count: [30],
});
function spawnProcess(script, bench, state) {
const cmd = process.execPath || process.argv[0];
while (state.finished < state.count) {
const child = spawnSync(cmd, script);
if (child.status !== 0) {
console.log('---- STDOUT ----');
console.log(child.stdout.toString());
console.log('---- STDERR ----');
console.log(child.stderr.toString());
throw new Error(`Child process stopped with exit code ${child.status}`);
}
state.finished++;
if (state.finished === 0) {
// Finished warmup.
bench.start();
}
if (state.finished === state.count) {
bench.end(state.count);
}
}
}
function main({ count, script, nFiles, prefixPath }) {
script = path.resolve(__dirname, '../../', `${script}.js`);
const optionsWithScript = [
'--permission',
`--allow-fs-read=${script}`,
...mockFiles(nFiles, prefixPath).map((file) => '--allow-fs-read=' + file),
script,
];
const warmup = 3;
const state = { count, finished: -warmup };
spawnProcess(optionsWithScript, bench, state);
}