mirror of
https://github.com/nodejs/node.git
synced 2025-05-01 17:03:34 +00:00

Add two regression tests for stdio over pipes. test-stdio-pipe-access tests if accessing stdio pipe that is being read by another process does not deadlocks Node.js. This was reported in https://github.com/nodejs/node/issues/10836 and was fixed in v8.3.0. The deadlock would happen intermittently, so we run the test 5 times. test-stdio-pipe-redirect tests if redirecting one child process stdin to another process stdout does not crash Node as reported in https://github.com/nodejs/node/issues/17493. It was fixed in https://github.com/nodejs/node/pull/18019. PR-URL: https://github.com/nodejs/node/pull/18614 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
39 lines
1.0 KiB
JavaScript
39 lines
1.0 KiB
JavaScript
'use strict';
|
|
require('../common');
|
|
|
|
// Test if Node handles redirecting one child process stdout to another
|
|
// process stdin without crashing.
|
|
const spawn = require('child_process').spawn;
|
|
|
|
const writeSize = 100;
|
|
const totalDots = 10000;
|
|
|
|
const who = process.argv.length <= 2 ? 'parent' : process.argv[2];
|
|
|
|
switch (who) {
|
|
case 'parent':
|
|
const consumer = spawn(process.argv0, [process.argv[1], 'consumer'], {
|
|
stdio: ['pipe', 'ignore', 'inherit'],
|
|
});
|
|
const producer = spawn(process.argv0, [process.argv[1], 'producer'], {
|
|
stdio: ['pipe', consumer.stdin, 'inherit'],
|
|
});
|
|
process.stdin.on('data', () => {});
|
|
producer.on('exit', process.exit);
|
|
break;
|
|
case 'producer':
|
|
const buffer = Buffer.alloc(writeSize, '.');
|
|
let written = 0;
|
|
const write = () => {
|
|
if (written < totalDots) {
|
|
written += writeSize;
|
|
process.stdout.write(buffer, write);
|
|
}
|
|
};
|
|
write();
|
|
break;
|
|
case 'consumer':
|
|
process.stdin.on('data', () => {});
|
|
break;
|
|
}
|