mirror of
https://github.com/nodejs/node.git
synced 2025-04-28 13:40:37 +00:00

PR-URL: https://github.com/nodejs/node/pull/57246 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Jason Zhang <xzha4350@gmail.com> Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
27 lines
622 B
JavaScript
27 lines
622 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
|
|
const assert = require('assert');
|
|
const tls = require('tls');
|
|
|
|
const fixtures = require('../common/fixtures');
|
|
|
|
const server = tls.createServer({
|
|
key: fixtures.readKey('agent1-key.pem'),
|
|
cert: fixtures.readKey('agent1-cert.pem'),
|
|
rejectUnauthorized: true
|
|
}, common.mustNotCall()).listen(0, common.mustCall(function() {
|
|
assert.throws(() => {
|
|
tls.connect({
|
|
port: this.address().port,
|
|
ciphers: 'no-such-cipher'
|
|
}, common.mustNotCall());
|
|
}, /no cipher match/i);
|
|
|
|
server.close();
|
|
}));
|