node/test/parallel/test-https-timeout.js
Mike Fleming 541866ea86
test: replaces fixturesDir with fixtures
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>
2017-11-28 13:10:24 +09:00

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);
}));
}));