Skip to content

Commit 5ecdc03

Browse files
santigimenopiscisaureus
authored andcommitted
test: add test for reading a large file through a pipe
PR-URL: #1074 Reviewed-By: Bert Belder <bertbelder@gmail.com>
1 parent a6af709 commit 5ecdc03

File tree

2 files changed

+79
-0
lines changed

2 files changed

+79
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
var common = require('../common');
2+
var assert = require('assert');
3+
var path = require('path');
4+
5+
// simulate `cat readfile.js | node readfile.js`
6+
7+
// TODO: Have some way to make this work on windows.
8+
if (process.platform === 'win32') {
9+
console.error('No /dev/stdin on windows. Skipping test.');
10+
process.exit();
11+
}
12+
13+
var fs = require('fs');
14+
15+
var filename = path.join(common.tmpDir, '/readfile_pipe_large_test.txt');
16+
var dataExpected = new Array(1000000).join('a');
17+
fs.writeFileSync(filename, dataExpected);
18+
19+
if (process.argv[2] === 'child') {
20+
fs.readFile('/dev/stdin', function(er, data) {
21+
if (er) throw er;
22+
process.stdout.write(data);
23+
});
24+
return;
25+
}
26+
27+
var exec = require('child_process').exec;
28+
var f = JSON.stringify(__filename);
29+
var node = JSON.stringify(process.execPath);
30+
var cmd = 'cat ' + filename + ' | ' + node + ' ' + f + ' child';
31+
exec(cmd, { maxBuffer: 1000000 }, function(err, stdout, stderr) {
32+
if (err) console.error(err);
33+
assert(!err, 'it exits normally');
34+
assert(stdout === dataExpected, 'it reads the file and outputs it');
35+
assert(stderr === '', 'it does not write to stderr');
36+
console.log('ok');
37+
});
38+
39+
process.on('exit', function() {
40+
fs.unlinkSync(filename);
41+
});
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
var common = require('../common');
2+
var assert = require('assert');
3+
var path = require('path');
4+
5+
// simulate `cat readfile.js | node readfile.js`
6+
7+
// TODO: Have some way to make this work on windows.
8+
if (process.platform === 'win32') {
9+
console.error('No /dev/stdin on windows. Skipping test.');
10+
process.exit();
11+
}
12+
13+
var fs = require('fs');
14+
15+
var filename = path.join(common.tmpDir, '/readfilesync_pipe_large_test.txt');
16+
var dataExpected = new Array(1000000).join('a');
17+
fs.writeFileSync(filename, dataExpected);
18+
19+
if (process.argv[2] === 'child') {
20+
process.stdout.write(fs.readFileSync('/dev/stdin', 'utf8'));
21+
return;
22+
}
23+
24+
var exec = require('child_process').exec;
25+
var f = JSON.stringify(__filename);
26+
var node = JSON.stringify(process.execPath);
27+
var cmd = 'cat ' + filename + ' | ' + node + ' ' + f + ' child';
28+
exec(cmd, { maxBuffer: 1000000 }, function(err, stdout, stderr) {
29+
if (err) console.error(err);
30+
assert(!err, 'it exits normally');
31+
assert(stdout === dataExpected, 'it reads the file and outputs it');
32+
assert(stderr === '', 'it does not write to stderr');
33+
console.log('ok');
34+
});
35+
36+
process.on('exit', function() {
37+
fs.unlinkSync(filename);
38+
});

0 commit comments

Comments
 (0)