Skip to content

Commit

Permalink
test: use dynamic port instead of common.PORT
Browse files Browse the repository at this point in the history
Remove common.PORT from, test-net-connect-immediate-destroy,
test-net-options-lookup, test-net-connect-local-error,
test-net-connect-handle-econnrefused, test-net-socket-destroy-twice,
test-net-better-error-messages-port-hostname, test-net-localerror,
to reduce possibility that a dynamic port used in another test will
collide with common.PORT.

Moved test-net-listen-shared-ports, test-net-better-error-messages-port
from tests/parallel to test/sequential

Refs: #12376
PR-URL: #12473
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
  • Loading branch information
thelostone-mc authored and MylesBorins committed Jul 11, 2017
1 parent 186c075 commit 29d35d0
Show file tree
Hide file tree
Showing 10 changed files with 40 additions and 25 deletions.
5 changes: 3 additions & 2 deletions test/parallel/test-net-better-error-messages-port-hostname.js
Expand Up @@ -3,12 +3,13 @@ const common = require('../common');
const net = require('net');
const assert = require('assert');

const c = net.createConnection(common.PORT, '***');
// Using port 0 as hostname used is already invalid.
const c = net.createConnection(0, '***');

c.on('connect', common.mustNotCall());

c.on('error', common.mustCall(function(e) {
assert.strictEqual(e.code, 'ENOTFOUND');
assert.strictEqual(e.port, common.PORT);
assert.strictEqual(e.port, 0);
assert.strictEqual(e.hostname, '***');
}));
11 changes: 6 additions & 5 deletions test/parallel/test-net-connect-handle-econnrefused.js
Expand Up @@ -3,13 +3,14 @@ const common = require('../common');
const net = require('net');
const assert = require('assert');


// Hopefully nothing is running on common.PORT
const c = net.createConnection(common.PORT);
const server = net.createServer();
server.listen(0);
const port = server.address().port;
const c = net.createConnection(port);

c.on('connect', common.mustNotCall());

c.on('error', common.mustCall(function(e) {
console.error('couldn\'t connect.');
c.on('error', common.mustCall((e) => {
assert.strictEqual('ECONNREFUSED', e.code);
}));
server.close();
7 changes: 5 additions & 2 deletions test/parallel/test-net-connect-immediate-destroy.js
Expand Up @@ -2,7 +2,10 @@
const common = require('../common');
const net = require('net');

const socket = net.connect(common.PORT, common.localhostIPv4,
common.mustNotCall());
const server = net.createServer();
server.listen(0);
const port = server.address().port;
const socket = net.connect(port, common.localhostIPv4, common.mustNotCall());
socket.on('error', common.mustNotCall());
server.close();
socket.destroy();
2 changes: 1 addition & 1 deletion test/parallel/test-net-connect-immediate-finish.js
Expand Up @@ -5,7 +5,7 @@ const net = require('net');

const client = net.connect({host: '***', port: common.PORT});

client.once('error', common.mustCall(function(err) {
client.once('error', common.mustCall((err) => {
assert(err);
assert.strictEqual(err.code, err.errno);
assert.strictEqual(err.code, 'ENOTFOUND');
Expand Down
12 changes: 8 additions & 4 deletions test/parallel/test-net-connect-local-error.js
Expand Up @@ -3,21 +3,25 @@ const common = require('../common');
const assert = require('assert');
const net = require('net');

const server = net.createServer();
server.listen(0);
const port = server.address().port;
const client = net.connect({
port: common.PORT + 1,
localPort: common.PORT,
port: port + 1,
localPort: port,
localAddress: common.localhostIPv4
});

client.on('error', common.mustCall(function onError(err) {
assert.strictEqual(
err.localPort,
common.PORT,
`${err.localPort} !== ${common.PORT} in ${err}`
port,
`${err.localPort} !== ${port} in ${err}`
);
assert.strictEqual(
err.localAddress,
common.localhostIPv4,
`${err.localAddress} !== ${common.localhostIPv4} in ${err}`
);
}));
server.close();
9 changes: 5 additions & 4 deletions test/parallel/test-net-localerror.js
@@ -1,22 +1,23 @@
'use strict';
const common = require('../common');
require('../common');
const assert = require('assert');
const net = require('net');

// Using port 0 as localPort / localAddress is already invalid.
connect({
host: 'localhost',
port: common.PORT,
port: 0,
localPort: 'foobar',
}, /^TypeError: "localPort" option should be a number: foobar$/);

connect({
host: 'localhost',
port: common.PORT,
port: 0,
localAddress: 'foobar',
}, /^TypeError: "localAddress" option must be a valid IP: foobar$/);

function connect(opts, msg) {
assert.throws(function() {
assert.throws(() => {
net.connect(opts);
}, msg);
}
11 changes: 6 additions & 5 deletions test/parallel/test-net-options-lookup.js
@@ -1,20 +1,21 @@
'use strict';
const common = require('../common');
require('../common');
const assert = require('assert');
const net = require('net');

const expectedError = /^TypeError: "lookup" option should be a function$/;

['foobar', 1, {}, []].forEach((input) => connectThrows(input));

// Using port 0 as lookup is emitted before connecting.
function connectThrows(input) {
const opts = {
host: 'localhost',
port: common.PORT,
port: 0,
lookup: input
};

assert.throws(function() {
assert.throws(() => {
net.connect(opts);
}, expectedError);
}
Expand All @@ -24,11 +25,11 @@ function connectThrows(input) {
function connectDoesNotThrow(input) {
const opts = {
host: 'localhost',
port: common.PORT,
port: 0,
lookup: input
};

assert.doesNotThrow(function() {
assert.doesNotThrow(() => {
net.connect(opts);
});
}
8 changes: 6 additions & 2 deletions test/parallel/test-net-socket-destroy-twice.js
Expand Up @@ -2,10 +2,14 @@
const common = require('../common');
const net = require('net');

const conn = net.createConnection(common.PORT);
const server = net.createServer();
server.listen(0);
const port = server.address().port;
const conn = net.createConnection(port);

conn.on('error', common.mustCall(function() {
conn.on('error', common.mustCall(() => {
conn.destroy();
}));

conn.on('close', common.mustCall(function() {}));
server.close();

0 comments on commit 29d35d0

Please sign in to comment.