summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-same-map.js
blob: 0adb73222de184018d573850423cee17b42cdcdd (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Flags: --allow_natives_syntax
'use strict';

const common = require('../common');
const assert = require('assert');
const http = require('http');

const server =
    http.createServer(onrequest).listen(0, common.localhostIPv4, () => next(0));

function onrequest(req, res) {
  res.end('ok');
  onrequest.requests.push(req);
  onrequest.responses.push(res);
}
onrequest.requests = [];
onrequest.responses = [];

function next(n) {
  const { address: host, port } = server.address();
  const req = http.get({ host, port });
  req.once('response', (res) => onresponse(n, req, res));
}

function onresponse(n, req, res) {
  res.resume();

  if (n < 3) {
    res.once('end', () => next(n + 1));
  } else {
    server.close();
  }

  onresponse.requests.push(req);
  onresponse.responses.push(res);
}
onresponse.requests = [];
onresponse.responses = [];

function allSame(list) {
  assert(list.length >= 2);
  // Use |elt| in no-op position to pacify eslint.
  for (const elt of list) elt, eval('%DebugPrint(elt)');
  for (const elt of list) elt, assert(eval('%HaveSameMap(list[0], elt)'));
}

process.on('exit', () => {
  eval('%CollectGarbage(0)');
  // TODO(bnoordhuis) Investigate why the first IncomingMessage ends up
  // with a deprecated map.  The map is stable after the first request.
  allSame(onrequest.requests.slice(1));
  allSame(onrequest.responses);
  allSame(onresponse.requests);
  allSame(onresponse.responses);
});