mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 15:32:15 +00:00

This allows passing the socket connection timeout to http#request such that it will be set before the socket is connecting PR-URL: https://github.com/nodejs/node/pull/8101 Fixes: https://github.com/nodejs/node/issues/7580 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ilkka Myller <ilkka.myller@nodefield.com>
34 lines
806 B
JavaScript
34 lines
806 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const http = require('http');
|
|
|
|
var options = {
|
|
method: 'GET',
|
|
port: undefined,
|
|
host: '127.0.0.1',
|
|
path: '/',
|
|
timeout: 1
|
|
};
|
|
|
|
var server = http.createServer();
|
|
|
|
server.listen(0, options.host, function() {
|
|
options.port = this.address().port;
|
|
var req = http.request(options);
|
|
req.on('error', function() {
|
|
// this space is intentionally left blank
|
|
});
|
|
req.on('close', common.mustCall(() => server.close()));
|
|
|
|
var timeout_events = 0;
|
|
req.on('timeout', common.mustCall(() => timeout_events += 1));
|
|
setTimeout(function() {
|
|
req.destroy();
|
|
assert.strictEqual(timeout_events, 1);
|
|
}, common.platformTimeout(100));
|
|
setTimeout(function() {
|
|
req.end();
|
|
}, common.platformTimeout(10));
|
|
});
|