This commit updates the common.fixturesDir method in the https-timeout test. PR-URL: https://github.com/nodejs/node/pull/15835 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
39 lines
905 B
JavaScript
39 lines
905 B
JavaScript
'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')
|
|
};
|
|
|
|
// a server that never replies
|
|
const server = https.createServer(options, function() {
|
|
console.log('Got request. Doing nothing.');
|
|
}).listen(0, common.mustCall(function() {
|
|
const req = https.request({
|
|
host: 'localhost',
|
|
port: this.address().port,
|
|
path: '/',
|
|
method: 'GET',
|
|
rejectUnauthorized: false
|
|
});
|
|
req.setTimeout(10);
|
|
req.end();
|
|
|
|
req.on('response', function() {
|
|
console.log('got response');
|
|
});
|
|
|
|
req.on('timeout', common.mustCall(function() {
|
|
console.log('timeout occurred outside');
|
|
req.destroy();
|
|
server.close();
|
|
process.exit(0);
|
|
}));
|
|
}));
|