summaryrefslogtreecommitdiff
path: root/test/parallel/test-https-close.js
blob: d9ed2ba1de90a6d85ac81af28670ba3294b71fb1 (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
'use strict';
const common = require('../common');
if (!common.hasCrypto)
  common.skip('missing crypto');

const fixtures = require('../common/fixtures');
const https = require('https');

const options = {
  key: fixtures.readKey('agent1-key.pem'),
  cert: fixtures.readKey('agent1-cert.pem')
};

const connections = {};

const server = https.createServer(options, (req, res) => {
  const interval = setInterval(() => {
    res.write('data');
  }, 1000);
  interval.unref();
});

server.on('connection', (connection) => {
  const key = `${connection.remoteAddress}:${connection.remotePort}`;
  connection.on('close', () => {
    delete connections[key];
  });
  connections[key] = connection;
});

function shutdown() {
  server.close(common.mustCall());

  for (const key in connections) {
    connections[key].destroy();
    delete connections[key];
  }
}

server.listen(0, () => {
  const requestOptions = {
    hostname: '127.0.0.1',
    port: server.address().port,
    path: '/',
    method: 'GET',
    rejectUnauthorized: false
  };

  const req = https.request(requestOptions, (res) => {
    res.on('data', () => {});
    setImmediate(shutdown);
  });
  req.end();
});