node/test/parallel/test-http-client-check-http-token.js
Mithun Sasidharan acd4277134
test: replace assert.throws w/ common.expectsError
PR-URL: https://github.com/nodejs/node/pull/17497
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Jon Moss <me@jonathanmoss.me>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
2017-12-08 13:37:33 -05:00

34 lines
995 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. ' +
`Received type ${typeof method}`
});
});
expectedSuccesses.forEach((method) => {
http.request({ method, port: server.address().port }).end();
});
}));