mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 09:02:40 +00:00

The tap skipping output is so prevalent yet obscure in nature that we ought to move it into it's own function in test/common.js PR-URL: https://github.com/nodejs/node/pull/6697 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com>
31 lines
849 B
JavaScript
31 lines
849 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var dgram = require('dgram');
|
|
|
|
// skip test in FreeBSD jails since 0.0.0.0 will resolve to default interface
|
|
if (common.inFreeBSDJail) {
|
|
common.skip('In a FreeBSD jail');
|
|
return;
|
|
}
|
|
|
|
dgram.createSocket('udp4').bind(common.PORT + 0, common.mustCall(function() {
|
|
assert.equal(this.address().port, common.PORT + 0);
|
|
assert.equal(this.address().address, '0.0.0.0');
|
|
this.close();
|
|
}));
|
|
|
|
if (!common.hasIPv6) {
|
|
common.skip('udp6 part of test, because no IPv6 support');
|
|
return;
|
|
}
|
|
|
|
dgram.createSocket('udp6').bind(common.PORT + 1, common.mustCall(function() {
|
|
assert.equal(this.address().port, common.PORT + 1);
|
|
var address = this.address().address;
|
|
if (address === '::ffff:0.0.0.0')
|
|
address = '::';
|
|
assert.equal(address, '::');
|
|
this.close();
|
|
}));
|