6a19db94c7c3bebbab4bc14ba5ae3165135990f1
[platform/upstream/nodejs.git] / test / simple / test-process-exit-code.js
1 // Copyright Joyent, Inc. and other Node contributors.
2 //
3 // Permission is hereby granted, free of charge, to any person obtaining a
4 // copy of this software and associated documentation files (the
5 // "Software"), to deal in the Software without restriction, including
6 // without limitation the rights to use, copy, modify, merge, publish,
7 // distribute, sublicense, and/or sell copies of the Software, and to permit
8 // persons to whom the Software is furnished to do so, subject to the
9 // following conditions:
10 //
11 // The above copyright notice and this permission notice shall be included
12 // in all copies or substantial portions of the Software.
13 //
14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15 // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
17 // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
18 // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
19 // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20 // USE OR OTHER DEALINGS IN THE SOFTWARE.
21
22 var common = require('../common');
23 var assert = require('assert');
24
25 switch (process.argv[2]) {
26   case 'child1':
27     return child1();
28   case 'child2':
29     return child2();
30   case 'child3':
31     return child3();
32   case 'child4':
33     return child4();
34   case undefined:
35     return parent();
36   default:
37     throw new Error('wtf');
38 }
39
40 function child1() {
41   process.exitCode = 42;
42   process.on('exit', function(code) {
43     assert.equal(code, 42);
44   });
45 }
46
47 function child2() {
48   process.exitCode = 99;
49   process.on('exit', function(code) {
50     assert.equal(code, 42);
51   });
52   process.exit(42);
53 }
54
55 function child3() {
56   process.exitCode = 99;
57   process.on('exit', function(code) {
58     assert.equal(code, 0);
59   });
60   process.exit(0);
61 }
62
63 function child4() {
64   process.exitCode = 99;
65   process.on('exit', function(code) {
66     if (code !== 1) {
67       console.log('wrong code! expected 1 for uncaughtException');
68       process.exit(99);
69     }
70   });
71   throw new Error('ok');
72 }
73
74 function parent() {
75   test('child1', 42);
76   test('child2', 42);
77   test('child3', 0);
78   test('child4', 1);
79 }
80
81 function test(arg, exit) {
82   var spawn = require('child_process').spawn;
83   var node = process.execPath;
84   var f = __filename;
85   var option = { stdio: [ 0, 1, 'ignore' ] };
86   spawn(node, [f, arg], option).on('exit', function(code) {
87     assert.equal(code, exit, 'wrong exit for ' +
88                  arg + '\nexpected:' + exit +
89                  ' but got:' + code);
90     console.log('ok - %s exited with %d', arg, exit);
91   });
92 }