summaryrefslogtreecommitdiff
path: root/benchmark/http/simple.js
blob: 6dc69a2d8f6e85779445f0edf5d193743aef1c58 (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';
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();
    });
  });
}