mirror of
https://github.com/nodejs/node.git
synced 2025-05-22 08:35:19 +00:00

A number of test files use IIFEs to separate distinct tests from each other in the same file. The project has been moving toward using block scopes and let/const in favor of IIFEs. This commit moves IIFE tests to block scopes. Some additional cleanup such as use of strictEqual() and common.mustCall() is also included. PR-URL: https://github.com/nodejs/node/pull/7694 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
76 lines
1.5 KiB
JavaScript
76 lines
1.5 KiB
JavaScript
'use strict';
|
|
// just like test/gc/http-client-timeout.js,
|
|
// but using a net server/client instead
|
|
|
|
function serverHandler(sock) {
|
|
sock.setTimeout(120000);
|
|
sock.resume();
|
|
var timer;
|
|
sock.on('close', function() {
|
|
clearTimeout(timer);
|
|
});
|
|
sock.on('error', function(err) {
|
|
assert.strictEqual(err.code, 'ECONNRESET');
|
|
});
|
|
timer = setTimeout(function() {
|
|
sock.end('hello\n');
|
|
}, 100);
|
|
}
|
|
|
|
const net = require('net');
|
|
const weak = require('weak');
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const todo = 500;
|
|
let done = 0;
|
|
let count = 0;
|
|
let countGC = 0;
|
|
|
|
console.log('We should do ' + todo + ' requests');
|
|
|
|
var server = net.createServer(serverHandler);
|
|
server.listen(0, getall);
|
|
|
|
function getall() {
|
|
if (count >= todo)
|
|
return;
|
|
|
|
const req = net.connect(server.address().port, server.address().address);
|
|
req.resume();
|
|
req.setTimeout(10, function() {
|
|
req.destroy();
|
|
done++;
|
|
global.gc();
|
|
});
|
|
|
|
count++;
|
|
weak(req, afterGC);
|
|
|
|
setImmediate(getall);
|
|
}
|
|
|
|
for (var i = 0; i < 10; i++)
|
|
getall();
|
|
|
|
function afterGC() {
|
|
countGC++;
|
|
}
|
|
|
|
setInterval(status, 100).unref();
|
|
|
|
function status() {
|
|
global.gc();
|
|
console.log('Done: %d/%d', done, todo);
|
|
console.log('Collected: %d/%d', countGC, count);
|
|
if (done === todo) {
|
|
/* Give libuv some time to make close callbacks. */
|
|
setTimeout(function() {
|
|
global.gc();
|
|
console.log('All should be collected now.');
|
|
console.log('Collected: %d/%d', countGC, count);
|
|
assert(count === countGC);
|
|
process.exit(0);
|
|
}, 200);
|
|
}
|
|
}
|