test: remove common.PORT from http tests

PR-URL: https://github.com/nodejs/node/pull/7467
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Brian White <mscdex@mscdex.net>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
Rich Trott 2016-06-28 17:14:19 -07:00
parent 42de4bb819
commit abce60cec0
2 changed files with 14 additions and 10 deletions

View File

@ -4,16 +4,18 @@ const http = require('http');
const server = http.createServer((req, res) => {
res.end();
}).listen(common.PORT, common.mustCall(() => {
}).listen(0, common.mustCall(() => {
const agent = new http.Agent({
maxSockets: 1,
keepAlive: true
});
const port = server.address().port;
const post = http.request({
agent: agent,
agent,
method: 'POST',
port: common.PORT,
port,
}, common.mustCall((res) => {
res.resume();
}));
@ -28,9 +30,9 @@ const server = http.createServer((req, res) => {
}, 100);
http.request({
agent: agent,
agent,
method: 'GET',
port: common.PORT,
port,
}, common.mustCall((res) => {
server.close();
res.connection.end();

View File

@ -15,16 +15,18 @@ const server = http.createServer((req, res) => {
res.end();
onPause();
});
}).listen(common.PORT, common.mustCall(() => {
}).listen(0, common.mustCall(() => {
const agent = new http.Agent({
maxSockets: 1,
keepAlive: true
});
const port = server.address().port;
const post = http.request({
agent: agent,
agent,
method: 'POST',
port: common.PORT,
port,
}, common.mustCall((res) => {
res.resume();
@ -41,9 +43,9 @@ const server = http.createServer((req, res) => {
post.write('initial');
http.request({
agent: agent,
agent,
method: 'GET',
port: common.PORT,
port,
}, common.mustCall((res) => {
server.close();
res.connection.end();