node/test/parallel/test-process-remove-all-signal-listeners.js
Jeremiah Senkpiel 52bae222a3 test: abstract skip functionality to common
The tap skipping output is so prevalent yet obscure in nature that we
ought to move it into it's own function in test/common.js

PR-URL: https://github.com/nodejs/node/pull/6697
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com>
2016-05-12 16:43:35 -04:00

45 lines
1.1 KiB
JavaScript

'use strict';
const assert = require('assert');
const spawn = require('child_process').spawn;
const common = require('../common');
if (common.isWindows) {
common.skip('Win32 doesn\'t have signals, just a kind of ' +
'emulation, insufficient for this test to apply.');
return;
}
var ok;
if (process.argv[2] !== '--do-test') {
// We are the master, fork a child so we can verify it exits with correct
// status.
process.env.DOTEST = 'y';
var child = spawn(process.execPath, [__filename, '--do-test']);
child.once('exit', function(code, signal) {
assert.equal(signal, 'SIGINT');
ok = true;
});
process.on('exit', function() {
assert(ok);
});
return;
}
process.on('SIGINT', function() {
// Remove all handlers and kill ourselves. We should terminate by SIGINT
// now that we have no handlers.
process.removeAllListeners('SIGINT');
process.kill(process.pid, 'SIGINT');
});
// Signal handlers aren't sufficient to keep node alive, so resume stdin
process.stdin.resume();
// Demonstrate that signals are being handled
process.kill(process.pid, 'SIGINT');