mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
778 B
28 lines
778 B
9 years ago
|
'use strict';
|
||
|
const common = require('../common');
|
||
|
const assert = require('assert');
|
||
|
const net = require('net');
|
||
|
|
||
|
const invalidPort = -1 >>> 0;
|
||
|
const errorMessage = /"port" argument must be \>= 0 and \< 65536/;
|
||
|
|
||
|
net.Server().listen(common.PORT, function() {
|
||
|
assert.equal(this._connectionKey, '6::::' + common.PORT);
|
||
|
this.close();
|
||
|
});
|
||
|
|
||
|
// The first argument is a configuration object
|
||
|
assert.throws(() => {
|
||
|
net.Server().listen({ port: invalidPort }, common.fail);
|
||
|
}, errorMessage);
|
||
|
|
||
|
// The first argument is the port, no IP given.
|
||
|
assert.throws(() => {
|
||
|
net.Server().listen(invalidPort, common.fail);
|
||
|
}, errorMessage);
|
||
|
|
||
|
// The first argument is the port, the second an IP.
|
||
|
assert.throws(() => {
|
||
|
net.Server().listen(invalidPort, '0.0.0.0', common.fail);
|
||
|
}, errorMessage);
|