mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
881 B
29 lines
881 B
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
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) => {
|
|
assert.throws(() => {
|
|
http.request({ method, path: '/' }, common.mustNotCall());
|
|
}, /^TypeError: Method must be a string$/);
|
|
});
|
|
|
|
expectedSuccesses.forEach((method) => {
|
|
http.request({ method, port: server.address().port }).end();
|
|
});
|
|
}));
|
|
|