mirror of
https://github.com/nodejs/node.git
synced 2025-05-09 11:13:55 +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>
36 lines
962 B
JavaScript
36 lines
962 B
JavaScript
'use strict';
|
|
require('../common');
|
|
|
|
// Test if Node handles acessing process.stdin if it is a redirected
|
|
// pipe without deadlocking
|
|
const { spawn, spawnSync } = require('child_process');
|
|
|
|
const numTries = 5;
|
|
const who = process.argv.length <= 2 ? 'runner' : process.argv[2];
|
|
|
|
switch (who) {
|
|
case 'runner':
|
|
for (let num = 0; num < numTries; ++num) {
|
|
spawnSync(process.argv0,
|
|
[process.argv[1], 'parent'],
|
|
{ 'stdio': 'inherit' });
|
|
}
|
|
break;
|
|
case 'parent':
|
|
const middle = spawn(process.argv0,
|
|
[process.argv[1], 'middle'],
|
|
{ 'stdio': 'pipe' });
|
|
middle.stdout.on('data', () => {});
|
|
break;
|
|
case 'middle':
|
|
spawn(process.argv0,
|
|
[process.argv[1], 'bottom'],
|
|
{ 'stdio': [ process.stdin,
|
|
process.stdout,
|
|
process.stderr ] });
|
|
break;
|
|
case 'bottom':
|
|
process.stdin;
|
|
break;
|
|
}
|