|
| 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 | +}); |
0 commit comments