node/test/parallel/test-fs-read-stream-fd-leak.js
Rich Trott a180259e42 test,lib,doc: use function declarations
Replace function expressions with function declarations in preparation
for a lint rule requiring function declarations.

PR-URL: https://github.com/nodejs/node/pull/12711
Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
2017-05-01 15:56:58 -07:00

63 lines
1.2 KiB
JavaScript

'use strict';
const common = require('../common');
const assert = require('assert');
const fs = require('fs');
const path = require('path');
let openCount = 0;
const _fsopen = fs.open;
const _fsclose = fs.close;
const loopCount = 50;
const totalCheck = 50;
const emptyTxt = path.join(common.fixturesDir, '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().%s()...', endFn);
let i = 0;
let check = 0;
function checkFunction() {
if (openCount !== 0 && check < totalCheck) {
check++;
setTimeout(checkFunction, 100);
return;
}
assert.strictEqual(
0,
openCount,
`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');
});