node/test/parallel/test-net-server-close.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

39 lines
970 B
JavaScript

'use strict';
require('../common');
const assert = require('assert');
const net = require('net');
const events = [];
const sockets = [];
process.on('exit', function() {
assert.strictEqual(server.connections, 0);
assert.strictEqual(events.length, 3);
// Expect to see one server event and two client events. The order of the
// events is undefined because they arrive on the same event loop tick.
assert.strictEqual(events.join(' ').match(/server/g).length, 1);
assert.strictEqual(events.join(' ').match(/client/g).length, 2);
});
const server = net.createServer(function(c) {
c.on('close', function() {
events.push('client');
});
sockets.push(c);
if (sockets.length === 2) {
server.close();
sockets.forEach(function(c) { c.destroy(); });
}
});
server.on('close', function() {
events.push('server');
});
server.listen(0, function() {
net.createConnection(this.address().port);
net.createConnection(this.address().port);
});