xref: /third_party/node/test/parallel/test-tls-ticket-invalid-arg.js
  • Home
  • History
  • Annotate Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /third_party/node/test/parallel/
11cb0ef41Sopenharmony_ci'use strict';
21cb0ef41Sopenharmony_ciconst common = require('../common');
31cb0ef41Sopenharmony_ciif (!common.hasCrypto) {
41cb0ef41Sopenharmony_ci  common.skip('missing crypto');
51cb0ef41Sopenharmony_ci}
61cb0ef41Sopenharmony_ci
71cb0ef41Sopenharmony_ciconst assert = require('assert');
81cb0ef41Sopenharmony_ciconst tls = require('tls');
91cb0ef41Sopenharmony_ci
101cb0ef41Sopenharmony_ciconst server = new tls.Server();
111cb0ef41Sopenharmony_ci
121cb0ef41Sopenharmony_ci[null, undefined, 0, 1, 1n, Symbol(), {}, [], true, false, '', () => {}]
131cb0ef41Sopenharmony_ci  .forEach((arg) =>
141cb0ef41Sopenharmony_ci    assert.throws(
151cb0ef41Sopenharmony_ci      () => server.setTicketKeys(arg),
161cb0ef41Sopenharmony_ci      { code: 'ERR_INVALID_ARG_TYPE' }
171cb0ef41Sopenharmony_ci    ));
181cb0ef41Sopenharmony_ci
191cb0ef41Sopenharmony_ci[new Uint8Array(1), Buffer.from([1]), new DataView(new ArrayBuffer(2))].forEach(
201cb0ef41Sopenharmony_ci  (arg) =>
211cb0ef41Sopenharmony_ci    assert.throws(() => {
221cb0ef41Sopenharmony_ci      server.setTicketKeys(arg);
231cb0ef41Sopenharmony_ci    }, /Session ticket keys must be a 48-byte buffer/)
241cb0ef41Sopenharmony_ci);
25

Indexes created Thu Nov 07 10:32:03 CST 2024