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.
54 lines
1.2 KiB
54 lines
1.2 KiB
'use strict';
|
|
const common = require('../common');
|
|
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
return;
|
|
}
|
|
const assert = require('assert');
|
|
const tls = require('tls');
|
|
|
|
const net = require('net');
|
|
const fs = require('fs');
|
|
|
|
const options = {
|
|
key: fs.readFileSync(common.fixturesDir + '/keys/agent1-key.pem'),
|
|
cert: fs.readFileSync(common.fixturesDir + '/keys/agent1-cert.pem')
|
|
};
|
|
|
|
const server = tls.createServer(options, common.mustCall((c) => {
|
|
setImmediate(() => {
|
|
c.write('hello', () => {
|
|
setImmediate(() => {
|
|
c.destroy();
|
|
server.close();
|
|
});
|
|
});
|
|
});
|
|
}));
|
|
|
|
let socket;
|
|
let lastIdleStart;
|
|
|
|
server.listen(0, () => {
|
|
socket = net.connect(server.address().port, function() {
|
|
const s = socket.setTimeout(Number.MAX_VALUE, function() {
|
|
throw new Error('timeout');
|
|
});
|
|
assert.ok(s instanceof net.Socket);
|
|
|
|
assert.notStrictEqual(socket._idleTimeout, -1);
|
|
lastIdleStart = socket._idleStart;
|
|
|
|
const tsocket = tls.connect({
|
|
socket: socket,
|
|
rejectUnauthorized: false
|
|
});
|
|
tsocket.resume();
|
|
});
|
|
});
|
|
|
|
process.on('exit', () => {
|
|
assert.strictEqual(socket._idleTimeout, -1);
|
|
assert(lastIdleStart < socket._idleStart);
|
|
});
|
|
|