mirror of
https://github.com/denoland/deno.git
synced 2024-12-19 05:45:09 -05:00
70 lines
1.5 KiB
JavaScript
70 lines
1.5 KiB
JavaScript
|
// deno-fmt-ignore-file
|
||
|
// deno-lint-ignore-file
|
||
|
|
||
|
// Copyright Joyent and Node contributors. All rights reserved. MIT license.
|
||
|
// Taken from Node 20.11.1
|
||
|
// This file is automatically generated by `tests/node_compat/runner/setup.ts`. Do not modify this file manually.
|
||
|
|
||
|
'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');
|
||
|
});
|