node/test/parallel/test-fs-read-stream-fd-leak.js
mzucker 87d0aa8686 test: fix the arguments order in assert.strictEqual
This change was initiated from the NodeConfEU session.

PR-URL: https://github.com/nodejs/node/pull/24226
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
2018-11-09 20:44:26 -08:00

63 lines
1.2 KiB
JavaScript

'use strict';
require('../common');
const assert = require('assert');
const fs = require('fs');
const fixtures = require('../common/fixtures');
let openCount = 0;
const _fsopen = fs.open;
const _fsclose = fs.close;
const loopCount = 50;
const totalCheck = 50;
const emptyTxt = fixtures.path('empty.txt');
fs.open = function() {
openCount++;
return _fsopen.apply(null, arguments);
};
fs.close = function() {
openCount--;
return _fsclose.apply(null, arguments);
};
function testLeak(endFn, callback) {
console.log(`testing for leaks from fs.createReadStream().${endFn}()...`);
let i = 0;
let check = 0;
function checkFunction() {
if (openCount !== 0 && check < totalCheck) {
check++;
setTimeout(checkFunction, 100);
return;
}
assert.strictEqual(
openCount,
0,
`no leaked file descriptors using ${endFn}() (got ${openCount})`
);
openCount = 0;
callback && setTimeout(callback, 100);
}
setInterval(function() {
const s = fs.createReadStream(emptyTxt);
s[endFn]();
if (++i === loopCount) {
clearTimeout(this);
setTimeout(checkFunction, 100);
}
}, 2);
}
testLeak('close', function() {
testLeak('destroy');
});