2016-08-05 11:34:50 +02:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const child_process = require('child_process');
|
2017-03-29 17:27:51 +02:00
|
|
|
const path = require('path');
|
|
|
|
const fs = require('fs');
|
2016-08-05 11:34:50 +02:00
|
|
|
|
2017-04-17 03:01:12 +02:00
|
|
|
const requirementsURL =
|
2017-04-17 03:09:50 +02:00
|
|
|
'https://github.com/nodejs/node/blob/master/doc/guides/writing-and-running-benchmarks.md#http-benchmark-requirements';
|
2017-04-17 03:01:12 +02:00
|
|
|
|
2016-08-05 11:34:50 +02:00
|
|
|
// The port used by servers and wrk
|
|
|
|
exports.PORT = process.env.PORT || 12346;
|
|
|
|
|
2017-03-29 17:27:51 +02:00
|
|
|
class AutocannonBenchmarker {
|
|
|
|
constructor() {
|
|
|
|
this.name = 'autocannon';
|
|
|
|
this.executable = process.platform === 'win32' ?
|
|
|
|
'autocannon.cmd' :
|
|
|
|
'autocannon';
|
|
|
|
const result = child_process.spawnSync(this.executable, ['-h']);
|
|
|
|
this.present = !(result.error && result.error.code === 'ENOENT');
|
|
|
|
}
|
|
|
|
|
|
|
|
create(options) {
|
|
|
|
const args = [
|
|
|
|
'-d', options.duration,
|
|
|
|
'-c', options.connections,
|
|
|
|
'-j',
|
|
|
|
'-n',
|
|
|
|
`http://127.0.0.1:${options.port}${options.path}`
|
|
|
|
];
|
|
|
|
const child = child_process.spawn(this.executable, args);
|
|
|
|
return child;
|
|
|
|
}
|
2016-08-05 11:34:50 +02:00
|
|
|
|
2017-03-29 17:27:51 +02:00
|
|
|
processResults(output) {
|
|
|
|
let result;
|
|
|
|
try {
|
|
|
|
result = JSON.parse(output);
|
|
|
|
} catch (err) {
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
if (!result || !result.requests || !result.requests.average) {
|
|
|
|
return undefined;
|
|
|
|
} else {
|
|
|
|
return result.requests.average;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-08-05 11:34:50 +02:00
|
|
|
|
2017-03-29 17:27:51 +02:00
|
|
|
class WrkBenchmarker {
|
|
|
|
constructor() {
|
|
|
|
this.name = 'wrk';
|
|
|
|
this.executable = 'wrk';
|
|
|
|
const result = child_process.spawnSync(this.executable, ['-h']);
|
|
|
|
this.present = !(result.error && result.error.code === 'ENOENT');
|
2016-08-05 11:34:50 +02:00
|
|
|
}
|
2017-03-29 17:27:51 +02:00
|
|
|
|
|
|
|
create(options) {
|
|
|
|
const args = [
|
|
|
|
'-d', options.duration,
|
|
|
|
'-c', options.connections,
|
|
|
|
'-t', 8,
|
|
|
|
`http://127.0.0.1:${options.port}${options.path}`
|
|
|
|
];
|
|
|
|
const child = child_process.spawn(this.executable, args);
|
|
|
|
return child;
|
2016-08-05 11:34:50 +02:00
|
|
|
}
|
|
|
|
|
2017-03-29 17:27:51 +02:00
|
|
|
processResults(output) {
|
|
|
|
const throughputRe = /Requests\/sec:[ \t]+([0-9.]+)/;
|
|
|
|
const match = output.match(throughputRe);
|
|
|
|
const throughput = match && +match[1];
|
|
|
|
if (!isFinite(throughput)) {
|
|
|
|
return undefined;
|
|
|
|
} else {
|
|
|
|
return throughput;
|
|
|
|
}
|
|
|
|
}
|
2016-08-05 11:34:50 +02:00
|
|
|
}
|
|
|
|
|
2017-03-29 17:27:51 +02:00
|
|
|
/**
|
|
|
|
* Simple, single-threaded benchmarker for testing if the benchmark
|
|
|
|
* works
|
|
|
|
*/
|
|
|
|
class TestDoubleBenchmarker {
|
|
|
|
constructor() {
|
|
|
|
this.name = 'test-double';
|
|
|
|
this.executable = path.resolve(__dirname, '_test-double-benchmarker.js');
|
|
|
|
this.present = fs.existsSync(this.executable);
|
|
|
|
}
|
|
|
|
|
|
|
|
create(options) {
|
|
|
|
const child = child_process.fork(this.executable, {
|
|
|
|
silent: true,
|
|
|
|
env: {
|
|
|
|
duration: options.duration,
|
|
|
|
connections: options.connections,
|
|
|
|
path: `http://127.0.0.1:${options.port}${options.path}`
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return child;
|
|
|
|
}
|
2016-08-05 11:34:50 +02:00
|
|
|
|
2017-03-29 17:27:51 +02:00
|
|
|
processResults(output) {
|
|
|
|
let result;
|
|
|
|
try {
|
|
|
|
result = JSON.parse(output);
|
|
|
|
} catch (err) {
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
return result.throughput;
|
2016-08-05 11:34:50 +02:00
|
|
|
}
|
2017-03-29 17:27:51 +02:00
|
|
|
}
|
2016-08-05 11:34:50 +02:00
|
|
|
|
2017-03-29 17:27:51 +02:00
|
|
|
const http_benchmarkers = [
|
|
|
|
new WrkBenchmarker(),
|
|
|
|
new AutocannonBenchmarker(),
|
|
|
|
new TestDoubleBenchmarker()
|
|
|
|
];
|
2016-08-05 11:34:50 +02:00
|
|
|
|
|
|
|
const benchmarkers = {};
|
|
|
|
|
|
|
|
http_benchmarkers.forEach((benchmarker) => {
|
|
|
|
benchmarkers[benchmarker.name] = benchmarker;
|
|
|
|
if (!exports.default_http_benchmarker && benchmarker.present) {
|
|
|
|
exports.default_http_benchmarker = benchmarker.name;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
exports.run = function(options, callback) {
|
|
|
|
options = Object.assign({
|
|
|
|
port: exports.PORT,
|
|
|
|
path: '/',
|
|
|
|
connections: 100,
|
|
|
|
duration: 10,
|
|
|
|
benchmarker: exports.default_http_benchmarker
|
|
|
|
}, options);
|
|
|
|
if (!options.benchmarker) {
|
2017-04-17 03:01:12 +02:00
|
|
|
callback(new Error(`Could not locate required http benchmarker. See ${
|
|
|
|
requirementsURL} for further instructions.`));
|
2016-08-05 11:34:50 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
const benchmarker = benchmarkers[options.benchmarker];
|
|
|
|
if (!benchmarker) {
|
2017-04-17 03:01:12 +02:00
|
|
|
callback(new Error(`Requested benchmarker '${
|
|
|
|
options.benchmarker}' is not supported`));
|
2016-08-05 11:34:50 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!benchmarker.present) {
|
2017-04-17 03:01:12 +02:00
|
|
|
callback(new Error(`Requested benchmarker '${
|
|
|
|
options.benchmarker}' is not installed`));
|
2016-08-05 11:34:50 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const benchmarker_start = process.hrtime();
|
|
|
|
|
|
|
|
const child = benchmarker.create(options);
|
|
|
|
|
|
|
|
child.stderr.pipe(process.stderr);
|
|
|
|
|
|
|
|
let stdout = '';
|
|
|
|
child.stdout.on('data', (chunk) => stdout += chunk.toString());
|
|
|
|
|
|
|
|
child.once('close', function(code) {
|
|
|
|
const elapsed = process.hrtime(benchmarker_start);
|
|
|
|
if (code) {
|
|
|
|
let error_message = `${options.benchmarker} failed with ${code}.`;
|
|
|
|
if (stdout !== '') {
|
|
|
|
error_message += ` Output: ${stdout}`;
|
|
|
|
}
|
|
|
|
callback(new Error(error_message), code);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const result = benchmarker.processResults(stdout);
|
2016-12-31 22:30:05 +01:00
|
|
|
if (result === undefined) {
|
2017-04-17 03:01:12 +02:00
|
|
|
callback(new Error(
|
2017-04-17 03:11:54 +02:00
|
|
|
`${options.benchmarker} produced strange output: ${stdout}`), code);
|
2016-08-05 11:34:50 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
callback(null, code, options.benchmarker, result, elapsed);
|
|
|
|
});
|
|
|
|
|
|
|
|
};
|