summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-client-override-global-agent.js
blob: c36c9d26a8dd63858ae5834bf12b9a5adc7c4a33 (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
'use strict';
const common = require('../common');
const assert = require('assert');
const http = require('http');

const server = http.Server(common.mustCall((req, res) => {
  res.writeHead(200);
  res.end('Hello, World!');
}));

server.listen(0, common.mustCall(() => {
  const agent = new http.Agent();
  const name = agent.getName({ port: server.address().port });
  http.globalAgent = agent;

  makeRequest();
  assert(agent.sockets.hasOwnProperty(name)); // agent has indeed been used
}));

function makeRequest() {
  const req = http.get({
    port: server.address().port
  });
  req.on('close', () =>
    server.close());
}