mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 06:38:13 +00:00

Enable linting for the test directory. A number of changes was made so all tests conform the current rules used by lib and src directories. The only exception for tests is that unreachable (dead) code is allowed. test-fs-non-number-arguments-throw had to be excluded from the changes because of a weird issue on Windows CI. PR-URL: https://github.com/nodejs/io.js/pull/1721 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
44 lines
1.2 KiB
JavaScript
44 lines
1.2 KiB
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var dgram = require('dgram');
|
|
|
|
// IPv4 Test
|
|
var socket_ipv4 = dgram.createSocket('udp4');
|
|
var family_ipv4 = 'IPv4';
|
|
|
|
socket_ipv4.on('listening', function() {
|
|
var address_ipv4 = socket_ipv4.address();
|
|
assert.strictEqual(address_ipv4.address, common.localhostIPv4);
|
|
assert.strictEqual(address_ipv4.port, common.PORT);
|
|
assert.strictEqual(address_ipv4.family, family_ipv4);
|
|
socket_ipv4.close();
|
|
});
|
|
|
|
socket_ipv4.on('error', function(e) {
|
|
console.log('Error on udp4 socket. ' + e.toString());
|
|
socket_ipv4.close();
|
|
});
|
|
|
|
socket_ipv4.bind(common.PORT, common.localhostIPv4);
|
|
|
|
// IPv6 Test
|
|
var localhost_ipv6 = '::1';
|
|
var socket_ipv6 = dgram.createSocket('udp6');
|
|
var family_ipv6 = 'IPv6';
|
|
|
|
socket_ipv6.on('listening', function() {
|
|
var address_ipv6 = socket_ipv6.address();
|
|
assert.strictEqual(address_ipv6.address, localhost_ipv6);
|
|
assert.strictEqual(address_ipv6.port, common.PORT);
|
|
assert.strictEqual(address_ipv6.family, family_ipv6);
|
|
socket_ipv6.close();
|
|
});
|
|
|
|
socket_ipv6.on('error', function(e) {
|
|
console.log('Error on udp6 socket. ' + e.toString());
|
|
socket_ipv6.close();
|
|
});
|
|
|
|
socket_ipv6.bind(common.PORT, localhost_ipv6);
|