mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 23:43:09 +01:00
612307564b
The `test/common` module has the capability to identify if any variable is leaked to the global scope and fail the test. So that has to be imported at the beginning. PR-URL: https://github.com/nodejs/node/pull/7786 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
66 lines
1.4 KiB
JavaScript
66 lines
1.4 KiB
JavaScript
'use strict';
|
|
// Flags: --expose_gc
|
|
|
|
const common = require('../common');
|
|
|
|
function newBuffer(size, value) {
|
|
var buffer = Buffer.allocUnsafe(size);
|
|
while (size--) {
|
|
buffer[size] = value;
|
|
}
|
|
//buffer[buffer.length-2]= 0x0d;
|
|
buffer[buffer.length - 1] = 0x0a;
|
|
return buffer;
|
|
}
|
|
|
|
var fs = require('fs');
|
|
var testFileName = require('path').join(common.tmpDir, 'GH-814_testFile.txt');
|
|
var testFileFD = fs.openSync(testFileName, 'w');
|
|
console.log(testFileName);
|
|
|
|
|
|
var kBufSize = 128 * 1024;
|
|
var PASS = true;
|
|
var neverWrittenBuffer = newBuffer(kBufSize, 0x2e); //0x2e === '.'
|
|
var bufPool = [];
|
|
|
|
|
|
var tail = require('child_process').spawn('tail', ['-f', testFileName]);
|
|
tail.stdout.on('data', tailCB);
|
|
|
|
function tailCB(data) {
|
|
PASS = data.toString().indexOf('.') < 0;
|
|
}
|
|
|
|
|
|
var timeToQuit = Date.now() + 8e3; //Test during no more than this seconds.
|
|
(function main() {
|
|
|
|
if (PASS) {
|
|
fs.write(testFileFD, newBuffer(kBufSize, 0x61), 0, kBufSize, -1, cb);
|
|
global.gc();
|
|
var nuBuf = Buffer.allocUnsafe(kBufSize);
|
|
neverWrittenBuffer.copy(nuBuf);
|
|
if (bufPool.push(nuBuf) > 100) {
|
|
bufPool.length = 0;
|
|
}
|
|
} else {
|
|
throw new Error("Buffer GC'ed test -> FAIL");
|
|
}
|
|
|
|
if (Date.now() < timeToQuit) {
|
|
process.nextTick(main);
|
|
} else {
|
|
tail.kill();
|
|
console.log("Buffer GC'ed test -> PASS (OK)");
|
|
}
|
|
|
|
})();
|
|
|
|
|
|
function cb(err, written) {
|
|
if (err) {
|
|
throw err;
|
|
}
|
|
}
|