errors: improve ERR_INVALID_ARG_TYPE

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>
This commit is contained in:
Ruben Bridgewater 2019-09-23 08:17:25 +02:00
parent fc28761d77
commit ac2fc0dd5f
No known key found for this signature in database
GPG key ID: F07496B3EB3C1762
127 changed files with 665 additions and 534 deletions

View file

@ -72,7 +72,7 @@ const s = http.createServer(common.mustCall((req, res) => {
code: 'ERR_INVALID_ARG_TYPE',
type: TypeError,
message: 'The "name" argument must be of type string. ' +
'Received type undefined'
'Received undefined'
}
);
common.expectsError(
@ -81,7 +81,7 @@ const s = http.createServer(common.mustCall((req, res) => {
code: 'ERR_INVALID_ARG_TYPE',
type: TypeError,
message: 'The "name" argument must be of type string. ' +
'Received type undefined'
'Received undefined'
}
);
@ -124,8 +124,8 @@ const s = http.createServer(common.mustCall((req, res) => {
{
code: 'ERR_INVALID_ARG_TYPE',
type: TypeError,
message: 'The "name" argument must be of type string. ' +
`Received type ${typeof val}`
message: 'The "name" argument must be of type string.' +
common.invalidArgTypeHelper(val)
}
);
});