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.
80 lines
1.6 KiB
80 lines
1.6 KiB
'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');
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const PORT = common.PORT;
|
|
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(PORT, getall);
|
|
|
|
function getall() {
|
|
if (count >= todo)
|
|
return;
|
|
|
|
(function() {
|
|
var req = net.connect(PORT, '127.0.0.1');
|
|
req.resume();
|
|
req.setTimeout(10, function() {
|
|
//console.log('timeout (expected)')
|
|
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);
|
|
}
|
|
}
|
|
|
|
|