summaryrefslogtreecommitdiff
path: root/benchmark/http/simple.js
blob: 238cd1885d3ca78d45d5cec454e137651692bf34 (plain)
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
'use strict';
const common = require('../common.js');
const PORT = common.PORT;

const 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() {
    const path =
      `/${conf.type}/${conf.len}/${conf.chunks}/${conf.res}/${conf.chunkedEnc}`;

    bench.http({
      path: path,
      connections: conf.c
    }, function() {
      server.close();
    });
  });
}