summaryrefslogtreecommitdiff
path: root/test/parallel/test-http2-util-asserts.js
blob: 136c76cc049cdd7bb0775c40b60a38e068aa38c9 (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
// Flags: --expose-internals
'use strict';

const common = require('../common');
const {
  assertIsObject,
  assertWithinRange,
} = require('internal/http2/util');

[
  undefined,
  {},
  Object.create(null),
  new Date(),
  new (class Foo {})()
].forEach((input) => {
  assertIsObject(input, 'foo', 'Object');
});

[
  1,
  false,
  'hello',
  NaN,
  Infinity,
  [],
  [{}]
].forEach((input) => {
  common.expectsError(() => assertIsObject(input, 'foo', 'Object'),
                      {
                        code: 'ERR_INVALID_ARG_TYPE',
                        message: 'The "foo" argument must be of type Object. ' +
                                 `Received type ${typeof input}`
                      });
});

assertWithinRange('foo', 1, 0, 2);

common.expectsError(() => assertWithinRange('foo', 1, 2, 3),
                    {
                      code: 'ERR_HTTP2_INVALID_SETTING_VALUE',
                      message: 'Invalid value for setting "foo": 1'
                    });