mirror of
https://github.com/zebrajr/node.git
synced 2025-12-06 12:20:27 +01:00
PR-URL: https://github.com/nodejs/node/pull/59872 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
60 lines
1.5 KiB
JavaScript
60 lines
1.5 KiB
JavaScript
'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],
|
|
n: [30],
|
|
});
|
|
|
|
function spawnProcess(script, bench, state) {
|
|
const cmd = process.execPath || process.argv[0];
|
|
while (state.finished < state.n) {
|
|
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.n) {
|
|
bench.end(state.n);
|
|
}
|
|
}
|
|
}
|
|
|
|
function main({ n, 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 = { n, finished: -warmup };
|
|
spawnProcess(optionsWithScript, bench, state);
|
|
}
|