mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
c4fc7d90ed
PR-URL: https://github.com/nodejs/node/pull/13522 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com>
31 lines
727 B
JavaScript
31 lines
727 B
JavaScript
'use strict';
|
|
var common = require('../common.js');
|
|
var PORT = common.PORT;
|
|
|
|
var bench = common.createBenchmark(main, {
|
|
// unicode confuses ab on os x.
|
|
type: ['bytes', 'buffer'],
|
|
len: [4, 1024, 102400],
|
|
chunks: [1, 4],
|
|
c: [50, 500],
|
|
chunkedEnc: ['true', 'false'],
|
|
res: ['normal', 'setHeader', 'setHeaderWH']
|
|
});
|
|
|
|
function main(conf) {
|
|
process.env.PORT = PORT;
|
|
var server = require('../fixtures/simple-http-server.js')
|
|
.listen(process.env.PORT || common.PORT)
|
|
.on('listening', function() {
|
|
var path =
|
|
`/${conf.type}/${conf.len}/${conf.chunks}/${conf.res}/${conf.chunkedEnc}`;
|
|
|
|
bench.http({
|
|
path: path,
|
|
connections: conf.c
|
|
}, function() {
|
|
server.close();
|
|
});
|
|
});
|
|
}
|