node/test/parallel/test-net-create-connection.js
Gibson Fahnestock 3d2aef3979 test: s/assert.equal/assert.strictEqual/
Use assert.strictEqual instead of assert.equal in tests, manually
convert types where necessary.

PR-URL: https://github.com/nodejs/node/pull/10698
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Teddy Katz <teddy.katz@gmail.com>
2017-01-11 14:19:26 +00:00

107 lines
2.7 KiB
JavaScript

'use strict';
require('../common');
const assert = require('assert');
const dns = require('dns');
const net = require('net');
const expectedConnections = 7;
let clientConnected = 0;
let serverConnected = 0;
const server = net.createServer(function(socket) {
socket.end();
if (++serverConnected === expectedConnections) {
server.close();
}
});
server.listen(0, 'localhost', function() {
function cb() {
++clientConnected;
}
function fail(opts, errtype, msg) {
assert.throws(function() {
net.createConnection(opts, cb);
}, function(err) {
return err instanceof errtype && msg === err.message;
});
}
net.createConnection(this.address().port).on('connect', cb);
net.createConnection(this.address().port, 'localhost').on('connect', cb);
net.createConnection(this.address().port, cb);
net.createConnection(this.address().port, 'localhost', cb);
net.createConnection(this.address().port + '', 'localhost', cb);
net.createConnection({port: this.address().port + ''}).on('connect', cb);
net.createConnection({port: '0x' + this.address().port.toString(16)}, cb);
fail({
port: true
}, TypeError, '"port" option should be a number or string: true');
fail({
port: false
}, TypeError, '"port" option should be a number or string: false');
fail({
port: []
}, TypeError, '"port" option should be a number or string: ');
fail({
port: {}
}, TypeError, '"port" option should be a number or string: [object Object]');
fail({
port: null
}, TypeError, '"port" option should be a number or string: null');
fail({
port: ''
}, RangeError, '"port" option should be >= 0 and < 65536: ');
fail({
port: ' '
}, RangeError, '"port" option should be >= 0 and < 65536: ');
fail({
port: '0x'
}, RangeError, '"port" option should be >= 0 and < 65536: 0x');
fail({
port: '-0x1'
}, RangeError, '"port" option should be >= 0 and < 65536: -0x1');
fail({
port: NaN
}, RangeError, '"port" option should be >= 0 and < 65536: NaN');
fail({
port: Infinity
}, RangeError, '"port" option should be >= 0 and < 65536: Infinity');
fail({
port: -1
}, RangeError, '"port" option should be >= 0 and < 65536: -1');
fail({
port: 65536
}, RangeError, '"port" option should be >= 0 and < 65536: 65536');
fail({
hints: (dns.ADDRCONFIG | dns.V4MAPPED) + 42,
}, TypeError, 'Invalid argument: hints must use valid flags');
});
// Try connecting to random ports, but do so once the server is closed
server.on('close', function() {
function nop() {}
net.createConnection({port: 0}).on('error', nop);
net.createConnection({port: undefined}).on('error', nop);
});
process.on('exit', function() {
assert.strictEqual(clientConnected, expectedConnections);
});