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.
46 lines
1.1 KiB
46 lines
1.1 KiB
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const net = require('net');
|
|
|
|
// skip test in FreeBSD jails
|
|
if (common.inFreeBSDJail) {
|
|
console.log('1..0 # Skipped: In a FreeBSD jail');
|
|
return;
|
|
}
|
|
|
|
var conns = 0;
|
|
var clientLocalPorts = [];
|
|
var serverRemotePorts = [];
|
|
|
|
const server = net.createServer(function(socket) {
|
|
serverRemotePorts.push(socket.remotePort);
|
|
testConnect();
|
|
});
|
|
|
|
const client = new net.Socket();
|
|
|
|
server.on('close', common.mustCall(function() {
|
|
assert.deepEqual(clientLocalPorts, serverRemotePorts,
|
|
'client and server should agree on the ports used');
|
|
assert.equal(2, conns);
|
|
}));
|
|
|
|
server.listen(common.PORT, common.localhostIPv4, testConnect);
|
|
|
|
function testConnect() {
|
|
if (conns > serverRemotePorts.length || conns > clientLocalPorts.length) {
|
|
// We're waiting for a callback to fire.
|
|
return;
|
|
}
|
|
|
|
if (conns === 2) {
|
|
return server.close();
|
|
}
|
|
client.connect(common.PORT, common.localhostIPv4, function() {
|
|
clientLocalPorts.push(this.localPort);
|
|
this.once('close', testConnect);
|
|
this.destroy();
|
|
});
|
|
conns++;
|
|
}
|
|
|