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>
34 lines
997 B
JavaScript
34 lines
997 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const http = require('http');
|
|
const Countdown = require('../common/countdown');
|
|
|
|
const expectedSuccesses = [undefined, null, 'GET', 'post'];
|
|
const expectedFails = [-1, 1, 0, {}, true, false, [], Symbol()];
|
|
|
|
const countdown =
|
|
new Countdown(expectedSuccesses.length,
|
|
common.mustCall(() => server.close()));
|
|
|
|
const server = http.createServer(common.mustCall((req, res) => {
|
|
res.end();
|
|
countdown.dec();
|
|
}, expectedSuccesses.length));
|
|
|
|
server.listen(0, common.mustCall(() => {
|
|
expectedFails.forEach((method) => {
|
|
common.expectsError(() => {
|
|
http.request({ method, path: '/' }, common.mustNotCall());
|
|
}, {
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
type: TypeError,
|
|
message: 'The "method" argument must be of type string.' +
|
|
common.invalidArgTypeHelper(method)
|
|
});
|
|
});
|
|
|
|
expectedSuccesses.forEach((method) => {
|
|
http.request({ method, port: server.address().port }).end();
|
|
});
|
|
}));
|