2017-01-03 13:16:48 -08:00
|
|
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
// copy of this software and associated documentation files (the
|
|
|
|
// "Software"), to deal in the Software without restriction, including
|
|
|
|
// without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
|
|
|
// persons to whom the Software is furnished to do so, subject to the
|
|
|
|
// following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included
|
|
|
|
// in all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|
|
|
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
|
|
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
|
|
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
|
|
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
2015-05-19 13:00:06 +02:00
|
|
|
'use strict';
|
2016-12-01 10:12:47 -06:00
|
|
|
const common = require('../common');
|
|
|
|
const assert = require('assert');
|
|
|
|
const net = require('net');
|
2014-02-17 17:30:12 -08:00
|
|
|
|
2015-02-23 11:23:53 -05:00
|
|
|
connect({
|
|
|
|
host: 'localhost',
|
|
|
|
port: common.PORT,
|
|
|
|
localPort: 'foobar',
|
2016-12-01 10:12:47 -06:00
|
|
|
}, /^TypeError: "localPort" option should be a number: foobar$/);
|
2014-02-17 17:30:12 -08:00
|
|
|
|
2015-02-23 11:23:53 -05:00
|
|
|
connect({
|
|
|
|
host: 'localhost',
|
|
|
|
port: common.PORT,
|
|
|
|
localAddress: 'foobar',
|
2016-12-01 10:12:47 -06:00
|
|
|
}, /^TypeError: "localAddress" option must be a valid IP: foobar$/);
|
2014-02-17 17:30:12 -08:00
|
|
|
|
2015-01-03 18:26:26 -05:00
|
|
|
function connect(opts, msg) {
|
|
|
|
assert.throws(function() {
|
2015-12-26 13:48:54 -08:00
|
|
|
net.connect(opts);
|
2015-01-03 18:26:26 -05:00
|
|
|
}, msg);
|
2014-02-17 17:30:12 -08:00
|
|
|
}
|