node/test/gc/test-http-client-connaborted.js
Gibson Fahnestock 7a0e462f9f test: use eslint to fix var->const/let
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>
2017-01-11 11:43:52 +00:00

71 lines
1.3 KiB
JavaScript

'use strict';
// just like test/gc/http-client.js,
// but aborting every connection that comes in.
require('../common');
function serverHandler(req, res) {
res.connection.destroy();
}
const http = require('http');
const weak = require('weak');
const assert = require('assert');
const todo = 500;
let done = 0;
let count = 0;
let countGC = 0;
console.log('We should do ' + todo + ' requests');
const server = http.createServer(serverHandler);
server.listen(0, getall);
function getall() {
if (count >= todo)
return;
(function() {
function cb(res) {
done += 1;
statusLater();
}
const req = http.get({
hostname: 'localhost',
pathname: '/',
port: server.address().port
}, cb).on('error', cb);
count++;
weak(req, afterGC);
})();
setImmediate(getall);
}
for (let i = 0; i < 10; i++)
getall();
function afterGC() {
countGC++;
}
let timer;
function statusLater() {
global.gc();
if (timer) clearTimeout(timer);
timer = setTimeout(status, 1);
}
function status() {
global.gc();
console.log('Done: %d/%d', done, todo);
console.log('Collected: %d/%d', countGC, count);
if (done === todo) {
console.log('All should be collected now.');
assert.strictEqual(count, countGC);
process.exit(0);
}
}