mirror of
https://github.com/nodejs/node.git
synced 2025-05-02 14:56:19 +00:00

If specified, and only when a socket is created internally, the option will make `socket.setTimeout()` to be called on the created socket with the given timeout. This is consistent with the `timeout` option of `net.connect()` and prevents the `timeout` option of the `https.Agent` from being ignored when a socket is created. PR-URL: https://github.com/nodejs/node/pull/25517 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
20 lines
399 B
JavaScript
20 lines
399 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
|
|
// This test verifies that `tls.connect()` honors the `timeout` option when the
|
|
// socket is internally created.
|
|
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
|
|
const assert = require('assert');
|
|
const tls = require('tls');
|
|
|
|
const socket = tls.connect({
|
|
lookup: () => {},
|
|
timeout: 1000
|
|
});
|
|
|
|
assert.strictEqual(socket.timeout, 1000);
|