node/test/parallel/test-https-close.js
Brian White 2bc7841d0f
test: use random ports where possible
This helps to prevent issues where a failed test can keep a bound
socket open long enough to cause other tests to fail with EADDRINUSE
because the same port number is used.

PR-URL: https://github.com/nodejs/node/pull/7045
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
2016-06-10 22:30:55 -04:00

57 lines
1.2 KiB
JavaScript

'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')
};
var connections = {};
var server = https.createServer(options, function(req, res) {
var interval = setInterval(function() {
res.write('data');
}, 1000);
interval.unref();
});
server.on('connection', function(connection) {
var key = connection.remoteAddress + ':' + connection.remotePort;
connection.on('close', function() {
delete connections[key];
});
connections[key] = connection;
});
function shutdown() {
server.close(common.mustCall(function() {}));
for (var key in connections) {
connections[key].destroy();
delete connections[key];
}
}
server.listen(0, function() {
var requestOptions = {
hostname: '127.0.0.1',
port: this.address().port,
path: '/',
method: 'GET',
rejectUnauthorized: false
};
var req = https.request(requestOptions, function(res) {
res.on('data', function(d) {});
setImmediate(shutdown);
});
req.end();
});