summaryrefslogtreecommitdiff
path: root/test/parallel/test-tls-ticket-invalid-arg.js
blob: 55143cdca31e77ee8eb62122d837075171316afa (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
'use strict';
const common = require('../common');
if (!common.hasCrypto) {
  common.skip('missing crypto');
}

const assert = require('assert');
const tls = require('tls');

const server = new tls.Server();

[null, undefined, 0, 1, 1n, Symbol(), {}, [], true, false, '', () => {}]
  .forEach((arg) =>
    assert.throws(
      () => server.setTicketKeys(arg),
      { code: 'ERR_INVALID_ARG_TYPE' }
    ));

[new Uint8Array(1), Buffer.from([1]), new DataView(new ArrayBuffer(2))].forEach(
  (arg) =>
    assert.throws(() => {
      server.setTicketKeys(arg);
    }, /Session ticket keys must be a 48-byte buffer/)
);