mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
813 B
26 lines
813 B
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const http = require('http');
|
|
|
|
const server = http.createServer((req, res) => {
|
|
// This space is intentionally left blank.
|
|
});
|
|
|
|
server.listen(0, common.localhostIPv4, common.mustCall(() => {
|
|
const port = server.address().port;
|
|
const req = http.get(`http://${common.localhostIPv4}:${port}`);
|
|
|
|
req.setTimeout(1);
|
|
req.on('socket', common.mustCall((socket) => {
|
|
assert.strictEqual(socket._idleTimeout, undefined);
|
|
socket.on('connect', common.mustCall(() => {
|
|
assert.strictEqual(socket._idleTimeout, 1);
|
|
}));
|
|
}));
|
|
req.on('timeout', common.mustCall(() => req.abort()));
|
|
req.on('error', common.mustCall((err) => {
|
|
assert.strictEqual('socket hang up', err.message);
|
|
server.close();
|
|
}));
|
|
}));
|
|
|