mirror of https://github.com/lukechilds/node.git
Browse Source
Remove common.PORT from, test-net-connect-immediate-destroy, test-net-options-lookup, test-net-connect-local-error, test-net-connect-handle-econnrefused, test-net-socket-destroy-twice, test-net-better-error-messages-port-hostname, test-net-localerror, to reduce possibility that a dynamic port used in another test will collide with common.PORT. Moved test-net-listen-shared-ports, test-net-better-error-messages-port from tests/parallel to test/sequential Refs: https://github.com/nodejs/node/issues/12376 PR-URL: https://github.com/nodejs/node/pull/12473 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>v6.x
Aditya Anand
8 years ago
committed by
Myles Borins
10 changed files with 40 additions and 25 deletions
@ -1,22 +1,23 @@ |
|||
'use strict'; |
|||
const common = require('../common'); |
|||
require('../common'); |
|||
const assert = require('assert'); |
|||
const net = require('net'); |
|||
|
|||
// Using port 0 as localPort / localAddress is already invalid.
|
|||
connect({ |
|||
host: 'localhost', |
|||
port: common.PORT, |
|||
port: 0, |
|||
localPort: 'foobar', |
|||
}, /^TypeError: "localPort" option should be a number: foobar$/); |
|||
|
|||
connect({ |
|||
host: 'localhost', |
|||
port: common.PORT, |
|||
port: 0, |
|||
localAddress: 'foobar', |
|||
}, /^TypeError: "localAddress" option must be a valid IP: foobar$/); |
|||
|
|||
function connect(opts, msg) { |
|||
assert.throws(function() { |
|||
assert.throws(() => { |
|||
net.connect(opts); |
|||
}, msg); |
|||
} |
|||
|
Loading…
Reference in new issue