process: allow changing `exitCode` in `on('exit')`
[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 'child5':
35     return child5();
36   case undefined:
37     return parent();
38   default:
39     throw new Error('wtf');
40 }
41
42 function child1() {
43   process.exitCode = 42;
44   process.on('exit', function(code) {
45     assert.equal(code, 42);
46   });
47 }
48
49 function child2() {
50   process.exitCode = 99;
51   process.on('exit', function(code) {
52     assert.equal(code, 42);
53   });
54   process.exit(42);
55 }
56
57 function child3() {
58   process.exitCode = 99;
59   process.on('exit', function(code) {
60     assert.equal(code, 0);
61   });
62   process.exit(0);
63 }
64
65 function child4() {
66   process.exitCode = 99;
67   process.on('exit', function(code) {
68     if (code !== 1) {
69       console.log('wrong code! expected 1 for uncaughtException');
70       process.exit(99);
71     }
72   });
73   throw new Error('ok');
74 }
75
76 function child5() {
77   process.exitCode = 95;
78   process.on('exit', function(code) {
79     assert.equal(code, 95);
80     process.exitCode = 99;
81   });
82 }
83
84 function parent() {
85   test('child1', 42);
86   test('child2', 42);
87   test('child3', 0);
88   test('child4', 1);
89   test('child5', 99);
90 }
91
92 function test(arg, exit) {
93   var spawn = require('child_process').spawn;
94   var node = process.execPath;
95   var f = __filename;
96   var option = { stdio: [ 0, 1, 'ignore' ] };
97   spawn(node, [f, arg], option).on('exit', function(code) {
98     assert.equal(code, exit, 'wrong exit for ' +
99                  arg + '\nexpected:' + exit +
100                  ' but got:' + code);
101     console.log('ok - %s exited with %d', arg, exit);
102   });
103 }