-
Notifications
You must be signed in to change notification settings - Fork 7.3k
Feature/fix child process type checking #8454
Changes from all commits
eeae1e1
178f0ab
40daa75
ce20b65
df567ab
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,30 +19,91 @@ | |
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE | ||
// USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
|
||
var spawn = require('child_process').spawn, | ||
assert = require('assert'), | ||
windows = (process.platform === 'win32'), | ||
cmd = (windows) ? 'dir' : 'ls', | ||
invalidcmd = (windows) ? 'ls' : 'dir', | ||
errors = 0; | ||
|
||
try { | ||
// Ensure this throws a TypeError | ||
var child = spawn(invalidcmd, 'this is not an array'); | ||
|
||
child.on('error', function (err) { | ||
errors++; | ||
}); | ||
|
||
} catch (e) { | ||
assert.equal(e instanceof TypeError, true); | ||
} | ||
|
||
// verify that args argument is optional | ||
assert.doesNotThrow(function() { | ||
spawn(cmd, {}); | ||
}); | ||
|
||
process.on('exit', function() { | ||
assert.equal(errors, 0); | ||
}); | ||
var assert = require('assert'); | ||
var child_process = require('child_process'); | ||
var spawn = child_process.spawn; | ||
var fork = child_process.fork; | ||
var execFile = child_process.execFile; | ||
var cmd = (process.platform === 'win32') ? 'rundll32' : 'ls'; | ||
var empty = require('../common').fixturesDir + '/empty.js'; | ||
|
||
// Argument types for combinatorics | ||
var a=[], o={}, c=(function callback(){}), s='string', u=undefined, n=null; | ||
|
||
// function spawn(file=f [,args=a] [, options=o]) has valid combinations: | ||
// (f) | ||
// (f, a) | ||
// (f, a, o) | ||
// (f, o) | ||
assert.doesNotThrow(function() { spawn(cmd); }); | ||
assert.doesNotThrow(function() { spawn(cmd, a); }); | ||
assert.doesNotThrow(function() { spawn(cmd, a, o); }); | ||
assert.doesNotThrow(function() { spawn(cmd, o); }); | ||
|
||
// Variants of undefined as explicit 'no argument' at a position | ||
assert.doesNotThrow(function() { execFile(empty, u, o); }); | ||
assert.doesNotThrow(function() { execFile(empty, a, u); }); | ||
assert.doesNotThrow(function() { execFile(empty, n, o); }); | ||
assert.doesNotThrow(function() { execFile(empty, a, n); }); | ||
|
||
assert.throws(function() { spawn(cmd, s); }, TypeError); | ||
assert.doesNotThrow(function() { spawn(cmd, a, s); }, TypeError); | ||
|
||
|
||
// verify that execFile has same argument parsing behaviour as spawn | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. My personal opinion is that these tests should go in a different file. I'm not sure that future developers would think to look in There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd prefer to rename it, so that when some future developer changes the signature of execFile they will think, "hey, I should change spawn, too!". OK? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sounds like a fine idea to me. I don't have the ultimate say, but I think it makes sense. |
||
// | ||
// function execFile(file=f [,args=a] [, options=o] [, callback=c]) has valid | ||
// combinations: | ||
// (f) | ||
// (f, a) | ||
// (f, a, o) | ||
// (f, a, o, c) | ||
// (f, a, c) | ||
// (f, o) | ||
// (f, o, c) | ||
// (f, c) | ||
assert.doesNotThrow(function() { execFile(cmd); }); | ||
assert.doesNotThrow(function() { execFile(cmd, a); }); | ||
assert.doesNotThrow(function() { execFile(cmd, a, o); }); | ||
assert.doesNotThrow(function() { execFile(cmd, a, o, c); }); | ||
assert.doesNotThrow(function() { execFile(cmd, a, c); }); | ||
assert.doesNotThrow(function() { execFile(cmd, o); }); | ||
assert.doesNotThrow(function() { execFile(cmd, o, c); }); | ||
assert.doesNotThrow(function() { execFile(cmd, c); }); | ||
|
||
// Variants of undefined as explicit 'no argument' at a position | ||
assert.doesNotThrow(function() { execFile(cmd, u, o, c); }); | ||
assert.doesNotThrow(function() { execFile(cmd, a, u, c); }); | ||
assert.doesNotThrow(function() { execFile(cmd, a, o, u); }); | ||
assert.doesNotThrow(function() { execFile(cmd, n, o, c); }); | ||
assert.doesNotThrow(function() { execFile(cmd, a, n, c); }); | ||
assert.doesNotThrow(function() { execFile(cmd, a, o, n); }); | ||
|
||
// string is invalid in arg position (this may seem strange, but is | ||
// consistent across node API, cf. `net.createServer('not options', 'not | ||
// callback')` | ||
assert.throws(function() { execFile(cmd, s, o, c); }, TypeError); | ||
assert.doesNotThrow(function() { execFile(cmd, a, s, c); }); | ||
assert.doesNotThrow(function() { execFile(cmd, a, o, s); }); | ||
|
||
|
||
// verify that fork has same argument parsing behaviour as spawn | ||
// | ||
// function fork(file=f [,args=a] [, options=o]) has valid combinations: | ||
// (f) | ||
// (f, a) | ||
// (f, a, o) | ||
// (f, o) | ||
assert.doesNotThrow(function() { fork(empty); }); | ||
assert.doesNotThrow(function() { fork(empty, a); }); | ||
assert.doesNotThrow(function() { fork(empty, a, o); }); | ||
assert.doesNotThrow(function() { fork(empty, o); }); | ||
|
||
// Variants of undefined as explicit 'no argument' at a position | ||
assert.doesNotThrow(function() { execFile(empty, u, o); }); | ||
assert.doesNotThrow(function() { execFile(empty, a, u); }); | ||
assert.doesNotThrow(function() { execFile(empty, n, o); }); | ||
assert.doesNotThrow(function() { execFile(empty, a, n); }); | ||
|
||
assert.throws(function() { fork(empty, s); }, TypeError); | ||
assert.doesNotThrow(function() { fork(empty, a, s); }, TypeError); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Even before my changes, I think this test was a bit overkill. It intentionally ran a bad command and passed in bad arguments to make sure that the
TypeError
was thrown, and the invalid command error wasn't encountered. A simpleassert.throws()
like you've done would have been simpler. I'm fine with getting rid of this code.Would you mind removing the the
errors
variable and theprocess.on('exit', ...)
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not at all, I will do.