summaryrefslogtreecommitdiff
path: root/test/parallel/test-http2-createsecureserver-options.js
blob: b97d6e5d6c99d59f7a360e0303e6172859824650 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
'use strict';

const common = require('../common');
if (!common.hasCrypto)
  common.skip('missing crypto');

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

// Error if invalid options are passed to createSecureServer.
const invalidOptions = [() => {}, 1, 'test', null, Symbol('test')];
invalidOptions.forEach((invalidOption) => {
  assert.throws(
    () => http2.createSecureServer(invalidOption),
    {
      name: 'TypeError',
      code: 'ERR_INVALID_ARG_TYPE',
      message: 'The "options" argument must be of type Object. Received ' +
               `type ${typeof invalidOption}`
    }
  );
});

// Error if invalid options.settings are passed to createSecureServer.
invalidOptions.forEach((invalidSettingsOption) => {
  assert.throws(
    () => http2.createSecureServer({ settings: invalidSettingsOption }),
    {
      name: 'TypeError',
      code: 'ERR_INVALID_ARG_TYPE',
      message: 'The "options.settings" property must be of type Object. ' +
               `Received type ${typeof invalidSettingsOption}`
    }
  );
});

// Test that http2.createSecureServer validates input options.
Object.entries({
  maxSessionInvalidFrames: [
    {
      val: -1,
      err: {
        name: 'RangeError',
        code: 'ERR_OUT_OF_RANGE',
      },
    },
    {
      val: Number.NEGATIVE_INFINITY,
      err: {
        name: 'RangeError',
        code: 'ERR_OUT_OF_RANGE',
      },
    },
  ],
}).forEach(([opt, tests]) => {
  tests.forEach(({ val, err }) => {
    assert.throws(
      () => http2.createSecureServer({ [opt]: val }),
      err
    );
  });
});