node/test/parallel/test-http2-util-asserts.js
Rich Trott 330f25ef82 test: prepare for consistent comma-dangle lint rule
Make changes so that tests will pass when the comma-dangle settings
applied to the rest of the code base are also applied to tests.

PR-URL: https://github.com/nodejs/node/pull/37930
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Derek Lewis <DerekNonGeneric@inf.is>
2021-04-01 23:14:29 -07:00

46 lines
913 B
JavaScript

// Flags: --expose-internals
'use strict';
const common = require('../common');
const assert = require('assert');
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) => {
assert.throws(
() => assertIsObject(input, 'foo', 'Object'),
{
code: 'ERR_INVALID_ARG_TYPE',
message: 'The "foo" argument must be of type object.' +
common.invalidArgTypeHelper(input)
});
});
assertWithinRange('foo', 1, 0, 2);
assert.throws(() => assertWithinRange('foo', 1, 2, 3),
{
code: 'ERR_HTTP2_INVALID_SETTING_VALUE',
message: 'Invalid value for setting "foo": 1'
});