mirror of
https://github.com/nodejs/node.git
synced 2025-05-17 10:27:12 +00:00

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>
24 lines
554 B
JavaScript
24 lines
554 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const net = require('net');
|
|
|
|
const client = net.connect({
|
|
port: common.PORT + 1,
|
|
localPort: common.PORT,
|
|
localAddress: common.localhostIPv4
|
|
});
|
|
|
|
client.on('error', common.mustCall(function onError(err) {
|
|
assert.strictEqual(
|
|
err.localPort,
|
|
common.PORT,
|
|
`${err.localPort} !== ${common.PORT} in ${err}`
|
|
);
|
|
assert.strictEqual(
|
|
err.localAddress,
|
|
common.localhostIPv4,
|
|
`${err.localAddress} !== ${common.localhostIPv4} in ${err}`
|
|
);
|
|
}));
|