mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
6059cbedbd
PR-URL: https://github.com/nodejs/node/pull/45027 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
35 lines
630 B
JavaScript
35 lines
630 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
|
|
const assert = require('assert');
|
|
const tls = require('tls');
|
|
|
|
['foobar', 1, {}, []].forEach(function connectThrows(input) {
|
|
const opts = {
|
|
host: 'localhost',
|
|
port: common.PORT,
|
|
lookup: input
|
|
};
|
|
|
|
assert.throws(() => {
|
|
tls.connect(opts);
|
|
}, {
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
name: 'TypeError'
|
|
});
|
|
});
|
|
|
|
connectDoesNotThrow(common.mustCall());
|
|
|
|
function connectDoesNotThrow(input) {
|
|
const opts = {
|
|
host: 'localhost',
|
|
port: common.PORT,
|
|
lookup: input
|
|
};
|
|
|
|
tls.connect(opts);
|
|
}
|