mirror of
https://github.com/nodejs/node.git
synced 2025-05-07 15:35:41 +00:00

This refactors a couple tests to have upper case first characters in comments and to use `input` instead of `i`. It also adds a few TODOs and rewrites a few lines to use default arguments and to prevent function recreation when unnecessary. PR-URL: https://github.com/nodejs/node/pull/19445 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
44 lines
995 B
JavaScript
44 lines
995 B
JavaScript
// 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'
|
|
});
|