mirror of
https://github.com/nodejs/node.git
synced 2025-05-17 10:27:12 +00:00

Export a new common.noop no-operation function for general use. Allow using common.mustCall() without a fn argument to simplify test cases. Replace various non-op functions throughout tests with common.noop PR-URL: https://github.com/nodejs/node/pull/12027 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Teddy Katz <teddy.katz@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
57 lines
1.2 KiB
JavaScript
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')
|
|
};
|
|
|
|
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', common.noop);
|
|
setImmediate(shutdown);
|
|
});
|
|
req.end();
|
|
});
|