mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
c66e5551df
PR-URL: https://github.com/nodejs/node/pull/15939 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
33 lines
742 B
JavaScript
33 lines
742 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
|
|
}, function(c) {
|
|
}).listen(0, common.mustCall(function() {
|
|
const c = tls.connect({
|
|
port: this.address().port,
|
|
ciphers: 'RC4'
|
|
}, common.mustNotCall());
|
|
|
|
c.on('error', common.mustCall(function(err) {
|
|
assert.notStrictEqual(err.code, 'ECONNRESET');
|
|
}));
|
|
|
|
c.on('close', common.mustCall(function(err) {
|
|
assert.ok(err);
|
|
server.close();
|
|
}));
|
|
}));
|