summaryrefslogtreecommitdiff
path: root/test/parallel/test-tls-handshake-error.js
blob: 500e7a0cc6016cecf206a0954665a973817f8e9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
'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() {
  assert.throws(() => {
    tls.connect({
      port: this.address().port,
      ciphers: 'no-such-cipher'
    }, common.mustNotCall());
  }, /no cipher match/i);

  server.close();
}));