test: improve message in net-connect-local-error

test-net-connect-local-error can fail with messages that report
`AssertionError: undefined === 12346`. Unfortunately, this doesn't
provide sufficient information to identify what went wrong with the
test. Increase information provided.

PR-URL: https://github.com/nodejs/node/pull/11393
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
This commit is contained in:
Rich Trott 2017-02-14 21:55:50 -08:00 committed by James M Snell
parent 66e263035a
commit eeae3bd071

View File

@ -10,6 +10,14 @@ const client = net.connect({
});
client.on('error', common.mustCall(function onError(err) {
assert.strictEqual(err.localPort, common.PORT);
assert.strictEqual(err.localAddress, common.localhostIPv4);
assert.strictEqual(
err.localPort,
common.PORT,
`${err.localPort} !== ${common.PORT} in ${err}`
);
assert.strictEqual(
err.localAddress,
common.localhostIPv4,
`${err.localAddress} !== ${common.localhostIPv4} in ${err}`
);
}));