-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding a Windows test to verify that a node process spawned via cmd with named pipes can access its stdio streams. Ref: nodejs/node-v0.x-archive#7345 PR-URL: #2770 Reviewed-By: cjihrig - Colin Ihrig <[email protected]> Reviewed-By: thefourtheye - Sakthipriyan Vairamani <[email protected]> Reviewed-By: evanlucas - Evan Lucas <[email protected]>
- Loading branch information
1 parent
d4cd5ac
commit fa08d1d
Showing
1 changed file
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
'use strict'; | ||
const common = require('../common'); | ||
const assert = require('assert'); | ||
|
||
// This test is intended for Windows only | ||
if (!common.isWindows) { | ||
console.log('1..0 # Skipped: this test is Windows-specific.'); | ||
return; | ||
} | ||
|
||
if (!process.argv[2]) { | ||
// parent | ||
const net = require('net'); | ||
const spawn = require('child_process').spawn; | ||
const path = require('path'); | ||
|
||
const pipeNamePrefix = path.basename(__filename) + '.' + process.pid; | ||
const stdinPipeName = '\\\\.\\pipe\\' + pipeNamePrefix + '.stdin'; | ||
const stdoutPipeName = '\\\\.\\pipe\\' + pipeNamePrefix + '.stdout'; | ||
|
||
const stdinPipeServer = net.createServer(function(c) { | ||
c.on('end', common.mustCall(function() { | ||
})); | ||
c.end('hello'); | ||
}); | ||
stdinPipeServer.listen(stdinPipeName); | ||
|
||
const output = []; | ||
|
||
const stdoutPipeServer = net.createServer(function(c) { | ||
c.on('data', function(x) { | ||
output.push(x); | ||
}); | ||
c.on('end', common.mustCall(function() { | ||
assert.strictEqual(output.join(''), 'hello'); | ||
})); | ||
}); | ||
stdoutPipeServer.listen(stdoutPipeName); | ||
|
||
const comspec = process.env['comspec']; | ||
if (!comspec || comspec.length === 0) { | ||
assert.fail('Failed to get COMSPEC'); | ||
} | ||
|
||
const args = ['/c', process.execPath, __filename, 'child', | ||
'<', stdinPipeName, '>', stdoutPipeName]; | ||
|
||
const child = spawn(comspec, args); | ||
|
||
child.on('exit', common.mustCall(function(exitCode) { | ||
stdinPipeServer.close(); | ||
stdoutPipeServer.close(); | ||
assert.strictEqual(exitCode, 0); | ||
})); | ||
} else { | ||
// child | ||
process.stdin.pipe(process.stdout); | ||
} |