mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
99e0d0d218
PR-URL: https://github.com/nodejs/node/pull/55125 Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: LiviaMedeiros <livia@cirno.name> Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
46 lines
1.2 KiB
JavaScript
46 lines
1.2 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const childProcess = require('child_process');
|
|
const fs = require('fs');
|
|
const fixtures = require('../common/fixtures');
|
|
const tmpdir = require('../common/tmpdir');
|
|
|
|
const scriptString = fixtures.path('print-chars.js');
|
|
const scriptBuffer = fixtures.path('print-chars-from-buffer.js');
|
|
const tmpFile = tmpdir.resolve('stdout.txt');
|
|
|
|
tmpdir.refresh();
|
|
|
|
function test(size, useBuffer, cb) {
|
|
try {
|
|
fs.unlinkSync(tmpFile);
|
|
} catch {
|
|
// Continue regardless of error.
|
|
}
|
|
|
|
console.log(`${size} chars to ${tmpFile}...`);
|
|
|
|
childProcess.exec(...common.escapePOSIXShell`"${
|
|
process.execPath}" "${useBuffer ? scriptBuffer : scriptString}" ${size} > "${tmpFile
|
|
}"`, common.mustSucceed(() => {
|
|
console.log('done!');
|
|
|
|
const stat = fs.statSync(tmpFile);
|
|
|
|
console.log(`${tmpFile} has ${stat.size} bytes`);
|
|
|
|
assert.strictEqual(size, stat.size);
|
|
fs.unlinkSync(tmpFile);
|
|
|
|
cb();
|
|
}));
|
|
}
|
|
|
|
test(1024 * 1024, false, common.mustCall(function() {
|
|
console.log('Done printing with string');
|
|
test(1024 * 1024, true, common.mustCall(function() {
|
|
console.log('Done printing with buffer');
|
|
}));
|
|
}));
|