Browse Source

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>
v6.x
Rich Trott 9 years ago
committed by Jeremiah Senkpiel
parent
commit
b383fdde79
  1. 12
      test/parallel/test-http-client-keep-alive-release-before-finish.js
  2. 12
      test/parallel/test-http-no-read-no-dump.js

12
test/parallel/test-http-client-keep-alive-release-before-finish.js

@ -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();

12
test/parallel/test-http-no-read-no-dump.js

@ -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();

Loading…
Cancel
Save