test: refactor test-dgram-bind-default-address

- changes var to const/let
- changes assert.equal to assert.strictEqual

PR-URL: https://github.com/nodejs/node/pull/9947
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
Michael-Bryant Choa 2016-12-01 10:39:59 -06:00 committed by Italo A. Casas
parent cdeb85efc2
commit da077ee58a

12
test/parallel/test-dgram-bind-default-address.js Normal file → Executable file
View File

@ -1,7 +1,7 @@
'use strict'; 'use strict';
var common = require('../common'); const common = require('../common');
var assert = require('assert'); const assert = require('assert');
var dgram = require('dgram'); const dgram = require('dgram');
// skip test in FreeBSD jails since 0.0.0.0 will resolve to default interface // skip test in FreeBSD jails since 0.0.0.0 will resolve to default interface
if (common.inFreeBSDJail) { if (common.inFreeBSDJail) {
@ -13,7 +13,7 @@ dgram.createSocket('udp4').bind(0, common.mustCall(function() {
assert.strictEqual(typeof this.address().port, 'number'); assert.strictEqual(typeof this.address().port, 'number');
assert.ok(isFinite(this.address().port)); assert.ok(isFinite(this.address().port));
assert.ok(this.address().port > 0); assert.ok(this.address().port > 0);
assert.equal(this.address().address, '0.0.0.0'); assert.strictEqual(this.address().address, '0.0.0.0');
this.close(); this.close();
})); }));
@ -26,9 +26,9 @@ dgram.createSocket('udp6').bind(0, common.mustCall(function() {
assert.strictEqual(typeof this.address().port, 'number'); assert.strictEqual(typeof this.address().port, 'number');
assert.ok(isFinite(this.address().port)); assert.ok(isFinite(this.address().port));
assert.ok(this.address().port > 0); assert.ok(this.address().port > 0);
var address = this.address().address; let address = this.address().address;
if (address === '::ffff:0.0.0.0') if (address === '::ffff:0.0.0.0')
address = '::'; address = '::';
assert.equal(address, '::'); assert.strictEqual(address, '::');
this.close(); this.close();
})); }));