summaryrefslogtreecommitdiff
path: root/test/parallel/test-vm-sigint.js
diff options
context:
space:
mode:
authorAnna Henningsen <anna@addaleax.net>2016-05-08 03:28:47 +0200
committerAnna Henningsen <anna@addaleax.net>2016-06-18 20:44:16 +0200
commit0815b9401d087202cd64458b6906a5225929fc5d (patch)
tree78fb84a7b6887091cd392e5d9feff11bae6edf96 /test/parallel/test-vm-sigint.js
parentde9a84186e6da9e4e6ee9434aa89715bf3eb9172 (diff)
downloadandroid-node-v8-0815b9401d087202cd64458b6906a5225929fc5d.tar.gz
android-node-v8-0815b9401d087202cd64458b6906a5225929fc5d.tar.bz2
android-node-v8-0815b9401d087202cd64458b6906a5225929fc5d.zip
vm: add ability to break on sigint/ctrl+c
- Adds the `breakEvalOnSigint` option to `vm.runIn(This)Context`. This uses a watchdog thread to wait for SIGINT and generally works just like the existing `timeout` option. - Adds a method to the existing timer-based watchdog to check if it stopped regularly or by running into the timeout. This is used to tell a SIGINT abort from a timer-based one. - Adds (internal) `process._{start,stop}SigintWatchdog` methods to start/stop the watchdog thread used by the above option manually. This will be used in the REPL to set up SIGINT handling before entering terminal raw mode, so that there is no time window in which Ctrl+C fully aborts the process. PR-URL: https://github.com/nodejs/node/pull/6635 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'test/parallel/test-vm-sigint.js')
-rw-r--r--test/parallel/test-vm-sigint.js39
1 files changed, 39 insertions, 0 deletions
diff --git a/test/parallel/test-vm-sigint.js b/test/parallel/test-vm-sigint.js
new file mode 100644
index 0000000000..5260a8464f
--- /dev/null
+++ b/test/parallel/test-vm-sigint.js
@@ -0,0 +1,39 @@
+'use strict';
+const common = require('../common');
+const assert = require('assert');
+const vm = require('vm');
+
+const spawn = require('child_process').spawn;
+
+if (process.platform === 'win32') {
+ // No way to send CTRL_C_EVENT to processes from JS right now.
+ common.skip('platform not supported');
+ return;
+}
+
+if (process.argv[2] === 'child') {
+ const parent = +process.env.REPL_TEST_PPID;
+ assert.ok(parent);
+
+ assert.throws(() => {
+ vm.runInThisContext(`process.kill(${parent}, "SIGUSR2"); while(true) {}`, {
+ breakOnSigint: true
+ });
+ }, /Script execution interrupted/);
+
+ return;
+}
+
+process.env.REPL_TEST_PPID = process.pid;
+const child = spawn(process.execPath, [ __filename, 'child' ], {
+ stdio: [null, 'pipe', 'inherit']
+});
+
+process.on('SIGUSR2', common.mustCall(() => {
+ process.kill(child.pid, 'SIGINT');
+}));
+
+child.on('close', function(code, signal) {
+ assert.strictEqual(signal, null);
+ assert.strictEqual(code, 0);
+});