summaryrefslogtreecommitdiff
path: root/test/parallel/test-https-close.js
blob: 4c4dea577c00d6962dfcfb396cf2c362f0c8d3e2 (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
56
'use strict';
const common = require('../common');
const fs = require('fs');

if (!common.hasCrypto) {
  common.skip('missing crypto');
  return;
}
const https = require('https');

const options = {
  key: fs.readFileSync(`${common.fixturesDir}/keys/agent1-key.pem`),
  cert: fs.readFileSync(`${common.fixturesDir}/keys/agent1-cert.pem`)
};

const connections = {};

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

server.on('connection', function(connection) {
  const key = `${connection.remoteAddress}:${connection.remotePort}`;
  connection.on('close', function() {
    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, function() {
  const requestOptions = {
    hostname: '127.0.0.1',
    port: this.address().port,
    path: '/',
    method: 'GET',
    rejectUnauthorized: false
  };

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