mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
50d2554dd1
PR-URL: https://github.com/nodejs/node/pull/18250 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
41 lines
966 B
JavaScript
41 lines
966 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common.js');
|
|
const PORT = common.PORT;
|
|
const path = require('path');
|
|
const fs = require('fs');
|
|
|
|
const file = path.join(path.resolve(__dirname, '../fixtures'), 'alice.html');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
requests: [100, 1000, 10000, 100000, 1000000],
|
|
streams: [100, 200, 1000],
|
|
clients: [1, 2],
|
|
benchmarker: ['h2load']
|
|
}, { flags: ['--no-warnings', '--expose-http2'] });
|
|
|
|
function main({ requests, streams, clients }) {
|
|
fs.open(file, 'r', (err, fd) => {
|
|
if (err)
|
|
throw err;
|
|
|
|
const http2 = require('http2');
|
|
const server = http2.createServer();
|
|
server.on('stream', (stream) => {
|
|
stream.respondWithFD(fd);
|
|
stream.on('error', (err) => {});
|
|
});
|
|
server.listen(PORT, () => {
|
|
bench.http({
|
|
path: '/',
|
|
requests,
|
|
maxConcurrentStreams: streams,
|
|
clients,
|
|
threads: clients
|
|
}, () => server.close());
|
|
});
|
|
|
|
});
|
|
|
|
}
|