mirror of
https://github.com/nodejs/node.git
synced 2025-05-03 13:28:42 +00:00

PR-URL: https://github.com/nodejs/node/pull/35086 Reviewed-By: Ruy Adorno <ruyadorno@github.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
46 lines
1.2 KiB
JavaScript
46 lines
1.2 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const path = require('path');
|
|
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 = path.join(tmpdir.path, 'stdout.txt');
|
|
|
|
tmpdir.refresh();
|
|
|
|
function test(size, useBuffer, cb) {
|
|
const cmd = `"${process.argv[0]}" "${
|
|
useBuffer ? scriptBuffer : scriptString}" ${size} > "${tmpFile}"`;
|
|
|
|
try {
|
|
fs.unlinkSync(tmpFile);
|
|
} catch {}
|
|
|
|
console.log(`${size} chars to ${tmpFile}...`);
|
|
|
|
childProcess.exec(cmd, 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');
|
|
}));
|
|
}));
|