Skip to content

Commit c15e81a

Browse files
committed
test: Introduce knowledge of FreeBSD jails
FreeBSD jails act differently than your average vm or similar application container. All routing passes through one ip address, which makes things like localhost or 0.0.0.0 resolve differently. Introduce a helper that allows us to verify if we're in a jail and another one for returning an ip address for localhost. Also, skip one test instead of trading additional complexity in common.js for one specific user scenario. PR-URL: #1167 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
1 parent fe0f015 commit c15e81a

7 files changed

+43
-8
lines changed

test/common.js

+29
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,35 @@ exports.tmpDir = path.join(exports.testDir, exports.tmpDirName);
2121

2222
var opensslCli = null;
2323

24+
Object.defineProperty(exports, 'inFreeBSDJail', {
25+
get: function() {
26+
if (process.platform === 'freebsd' &&
27+
child_process.execSync('sysctl -n security.jail.jailed').toString() ===
28+
'1\n') {
29+
return true;
30+
} else {
31+
return false;
32+
}
33+
}
34+
});
35+
36+
Object.defineProperty(exports, 'localhost_ipv4', {
37+
get: function() {
38+
if (exports.inFreeBSDJail) {
39+
// Jailed network interfaces are a bit special - since we need to jump
40+
// through loops, as well as this being an exception case, assume the
41+
// user will provide this instead.
42+
if (process.env.LOCALHOST)
43+
return process.env.LOCALHOST;
44+
45+
console.error('Looks like we\'re in a FreeBSD Jail. ' +
46+
'Please provide your default interface address ' +
47+
'as LOCALHOST or expect some tests to fail.');
48+
}
49+
return '127.0.0.1';
50+
}
51+
});
52+
2453
// opensslCli defined lazily to reduce overhead of spawnSync
2554
Object.defineProperty(exports, 'opensslCli', {get: function() {
2655
if (opensslCli !== null) return opensslCli;

test/parallel/test-dgram-address.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ var assert = require('assert');
33
var dgram = require('dgram');
44

55
// IPv4 Test
6-
var localhost_ipv4 = '127.0.0.1';
6+
var localhost_ipv4 = common.localhost_ipv4;
77
var socket_ipv4 = dgram.createSocket('udp4');
88
var family_ipv4 = 'IPv4';
99

test/parallel/test-dgram-bind-default-address.js

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ var common = require('../common');
22
var assert = require('assert');
33
var dgram = require('dgram');
44

5+
// skip test in FreeBSD jails since 0.0.0.0 will resolve to default interface
6+
if (common.inFreeBSDJail) {
7+
console.log('1..0 # Skipped: In a FreeBSD jail');
8+
process.exit();
9+
}
10+
511
dgram.createSocket('udp4').bind(common.PORT + 0, common.mustCall(function() {
612
assert.equal(this.address().port, common.PORT + 0);
713
assert.equal(this.address().address, '0.0.0.0');

test/parallel/test-dgram-udp4.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ server = dgram.createSocket('udp4');
1111
server.on('message', function(msg, rinfo) {
1212
console.log('server got: ' + msg +
1313
' from ' + rinfo.address + ':' + rinfo.port);
14-
assert.strictEqual(rinfo.address, '127.0.0.1');
14+
assert.strictEqual(rinfo.address, common.localhost_ipv4);
1515
assert.strictEqual(msg.toString(), message_to_send.toString());
1616
server.send(msg, 0, msg.length, rinfo.port, rinfo.address);
1717
});
@@ -22,7 +22,7 @@ server.on('listening', function() {
2222
client.on('message', function(msg, rinfo) {
2323
console.log('client got: ' + msg +
2424
' from ' + rinfo.address + ':' + address.port);
25-
assert.strictEqual(rinfo.address, '127.0.0.1');
25+
assert.strictEqual(rinfo.address, common.localhost_ipv4);
2626
assert.strictEqual(rinfo.port, server_port);
2727
assert.strictEqual(msg.toString(), message_to_send.toString());
2828
client.close();

test/parallel/test-net-local-address-port.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ var conns = 0, conns_closed = 0;
66

77
var server = net.createServer(function(socket) {
88
conns++;
9-
assert.equal('127.0.0.1', socket.localAddress);
9+
assert.equal(common.localhost_ipv4, socket.localAddress);
1010
assert.equal(socket.localPort, common.PORT);
1111
socket.on('end', function() {
1212
server.close();
1313
});
1414
socket.resume();
1515
});
1616

17-
server.listen(common.PORT, '127.0.0.1', function() {
18-
var client = net.createConnection(common.PORT, '127.0.0.1');
17+
server.listen(common.PORT, common.localhost_ipv4, function() {
18+
var client = net.createConnection(common.PORT, common.localhost_ipv4);
1919
client.on('connect', function() {
2020
client.end();
2121
});

test/parallel/test-net-remote-address-port.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ var net = require('net');
55

66
var conns = 0, conns_closed = 0;
77

8-
var remoteAddrCandidates = [ '127.0.0.1'];
8+
var remoteAddrCandidates = [ common.localhost_ipv4 ];
99
if (common.hasIPv6) remoteAddrCandidates.push('::ffff:127.0.0.1');
1010

1111
var remoteFamilyCandidates = ['IPv4'];

test/sequential/test-net-server-address.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ var assert = require('assert');
33
var net = require('net');
44

55
// Test on IPv4 Server
6-
var localhost_ipv4 = '127.0.0.1';
6+
var localhost_ipv4 = common.localhost_ipv4;
77
var family_ipv4 = 'IPv4';
88
var server_ipv4 = net.createServer();
99

0 commit comments

Comments
 (0)