summaryrefslogtreecommitdiff
path: root/test/parallel/test-tls-set-ciphers-error.js
blob: f963b414f4463035e2a90f4906d346574d3245e5 (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
'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 options = {
    key: fixtures.readKey('agent2-key.pem'),
    cert: fixtures.readKey('agent2-cert.pem'),
    ciphers: 'aes256-sha'
  };
  assert.throws(() => tls.createServer(options, common.mustNotCall()),
                /no cipher match/i);
  options.ciphers = 'FOOBARBAZ';
  assert.throws(() => tls.createServer(options, common.mustNotCall()),
                /no cipher match/i);
  options.ciphers = 'TLS_not_a_cipher';
  assert.throws(() => tls.createServer(options, common.mustNotCall()),
                /no cipher match/i);
}