mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
2bc7841d0f
This helps to prevent issues where a failed test can keep a bound socket open long enough to cause other tests to fail with EADDRINUSE because the same port number is used. PR-URL: https://github.com/nodejs/node/pull/7045 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rod Vagg <rod@vagg.org>
34 lines
906 B
JavaScript
34 lines
906 B
JavaScript
'use strict';
|
|
require('../common');
|
|
var assert = require('assert');
|
|
var http = require('http');
|
|
var url = require('url');
|
|
|
|
var testURL;
|
|
|
|
function check(request) {
|
|
//url.parse should not mess with the method
|
|
assert.strictEqual(request.method, 'POST');
|
|
//everything else should be right
|
|
assert.strictEqual(request.url, '/asdf?qwer=zxcv');
|
|
//the host header should use the url.parse.hostname
|
|
assert.strictEqual(request.headers.host,
|
|
testURL.hostname + ':' + testURL.port);
|
|
}
|
|
|
|
var server = http.createServer(function(request, response) {
|
|
// run the check function
|
|
check.call(this, request, response);
|
|
response.writeHead(200, {});
|
|
response.end('ok');
|
|
server.close();
|
|
});
|
|
|
|
server.listen(0, function() {
|
|
testURL = url.parse(`http://localhost:${this.address().port}/asdf?qwer=zxcv`);
|
|
testURL.method = 'POST';
|
|
|
|
// make the request
|
|
http.request(testURL).end();
|
|
});
|