Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: cleanup/update test-dgram-error-message-address.js #8938

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions test/parallel/test-dgram-error-message-address.js
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
'use strict';
var common = require('../common');
var assert = require('assert');
var dgram = require('dgram');
const common = require('../common');
const assert = require('assert');
const dgram = require('dgram');

// IPv4 Test
var socket_ipv4 = dgram.createSocket('udp4');
const socket_ipv4 = dgram.createSocket('udp4');

socket_ipv4.on('listening', common.fail);

socket_ipv4.on('error', common.mustCall(function(e) {
assert.strictEqual(e.port, undefined);
assert.equal(e.message, 'bind EADDRNOTAVAIL 1.1.1.1');
assert.equal(e.address, '1.1.1.1');
assert.equal(e.code, 'EADDRNOTAVAIL');
assert.strictEqual(e.message, 'bind EADDRNOTAVAIL 1.1.1.1');
assert.strictEqual(e.address, '1.1.1.1');
assert.strictEqual(e.code, 'EADDRNOTAVAIL');
socket_ipv4.close();
}));

socket_ipv4.bind(0, '1.1.1.1');

// IPv6 Test
var socket_ipv6 = dgram.createSocket('udp6');
const socket_ipv6 = dgram.createSocket('udp6');

socket_ipv6.on('listening', common.fail);

socket_ipv6.on('error', common.mustCall(function(e) {
// EAFNOSUPPORT or EPROTONOSUPPORT means IPv6 is disabled on this system.
var allowed = ['EADDRNOTAVAIL', 'EAFNOSUPPORT', 'EPROTONOSUPPORT'];
assert.notEqual(allowed.indexOf(e.code), -1);
const allowed = ['EADDRNOTAVAIL', 'EAFNOSUPPORT', 'EPROTONOSUPPORT'];
assert.notStrictEqual(allowed.indexOf(e.code), -1);
assert.strictEqual(e.port, undefined);
assert.equal(e.message, 'bind ' + e.code + ' 111::1');
assert.equal(e.address, '111::1');
assert.strictEqual(e.message, 'bind ' + e.code + ' 111::1');
assert.strictEqual(e.address, '111::1');
socket_ipv6.close();
}));

Expand Down