mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
7a0e462f9f
Manually fix issues that eslint --fix couldn't do automatically. PR-URL: https://github.com/nodejs/node/pull/10685 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
48 lines
933 B
JavaScript
48 lines
933 B
JavaScript
'use strict';
|
|
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const net = require('net');
|
|
const NUM = 8;
|
|
const connections = [];
|
|
const clients = [];
|
|
let clients_counter = 0;
|
|
|
|
const server = net.createServer(function listener(c) {
|
|
connections.push(c);
|
|
}).listen(0, makeConnection);
|
|
|
|
|
|
function makeConnection() {
|
|
if (clients_counter >= NUM) return;
|
|
net.connect(server.address().port, function connected() {
|
|
clientConnected(this);
|
|
makeConnection();
|
|
});
|
|
}
|
|
|
|
|
|
function clientConnected(client) {
|
|
clients.push(client);
|
|
if (++clients_counter >= NUM)
|
|
checkAll();
|
|
}
|
|
|
|
|
|
function checkAll() {
|
|
const handles = process._getActiveHandles();
|
|
|
|
clients.forEach(function(item) {
|
|
assert.ok(handles.indexOf(item) > -1);
|
|
item.destroy();
|
|
});
|
|
|
|
connections.forEach(function(item) {
|
|
assert.ok(handles.indexOf(item) > -1);
|
|
item.end();
|
|
});
|
|
|
|
assert.ok(handles.indexOf(server) > -1);
|
|
server.close();
|
|
}
|