mirror of
https://github.com/nodejs/node.git
synced 2025-05-10 03:12:57 +00:00

ERR_INVALID_ARG_TYPE is the most common error used throughout the code base. This improves the error message by providing more details to the user and by indicating more precisely which values are allowed ones and which ones are not. It adds the actual input to the error message in case it's a primitive. If it's a class instance, it'll print the class name instead of "object" and "falsy" or similar entries are not named "type" anymore. PR-URL: https://github.com/nodejs/node/pull/29675 Reviewed-By: Rich Trott <rtrott@gmail.com>
67 lines
1.5 KiB
JavaScript
67 lines
1.5 KiB
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
const http2 = require('http2');
|
|
|
|
const server = http2.createServer();
|
|
|
|
const types = [
|
|
true,
|
|
{},
|
|
[],
|
|
null,
|
|
new Date()
|
|
];
|
|
|
|
server.on('stream', common.mustCall((stream) => {
|
|
const session = stream.session;
|
|
|
|
types.forEach((input) => {
|
|
const received = common.invalidArgTypeHelper(input);
|
|
common.expectsError(
|
|
() => session.goaway(input),
|
|
{
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
type: TypeError,
|
|
message: 'The "code" argument must be of type number.' +
|
|
received
|
|
}
|
|
);
|
|
common.expectsError(
|
|
() => session.goaway(0, input),
|
|
{
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
type: TypeError,
|
|
message: 'The "lastStreamID" argument must be of type number.' +
|
|
received
|
|
}
|
|
);
|
|
common.expectsError(
|
|
() => session.goaway(0, 0, input),
|
|
{
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
type: TypeError,
|
|
message: 'The "opaqueData" argument must be an instance of Buffer, ' +
|
|
`TypedArray, or DataView.${received}`
|
|
}
|
|
);
|
|
});
|
|
|
|
stream.session.destroy();
|
|
}));
|
|
|
|
server.listen(
|
|
0,
|
|
common.mustCall(() => {
|
|
const client = http2.connect(`http://localhost:${server.address().port}`);
|
|
const req = client.request();
|
|
req.resume();
|
|
req.on('close', common.mustCall(() => {
|
|
client.close();
|
|
server.close();
|
|
}));
|
|
})
|
|
);
|