| 'use strict'; |
| |
| const { mustCall } = require('../common'); |
| const { strictEqual, throws } = require('assert'); |
| const fixtures = require('../common/fixtures'); |
| const { fork } = require('child_process'); |
| const { getEventListeners } = require('events'); |
| |
| { |
| // Verify default signal |
| const cp = fork(fixtures.path('child-process-stay-alive-forever.js'), { |
| timeout: 5, |
| }); |
| cp.on('exit', mustCall((code, ks) => strictEqual(ks, 'SIGTERM'))); |
| } |
| |
| { |
| // Verify correct signal + closes after at least 4 ms. |
| const cp = fork(fixtures.path('child-process-stay-alive-forever.js'), { |
| timeout: 5, |
| killSignal: 'SIGKILL', |
| }); |
| cp.on('exit', mustCall((code, ks) => strictEqual(ks, 'SIGKILL'))); |
| } |
| |
| { |
| // Verify timeout verification |
| throws(() => fork(fixtures.path('child-process-stay-alive-forever.js'), { |
| timeout: 'badValue', |
| }), /ERR_OUT_OF_RANGE/); |
| |
| throws(() => fork(fixtures.path('child-process-stay-alive-forever.js'), { |
| timeout: {}, |
| }), /ERR_OUT_OF_RANGE/); |
| } |
| |
| { |
| // Verify abort signal gets unregistered |
| const signal = new EventTarget(); |
| signal.aborted = false; |
| |
| const cp = fork(fixtures.path('child-process-stay-alive-forever.js'), { |
| timeout: 6, |
| signal, |
| }); |
| strictEqual(getEventListeners(signal, 'abort').length, 1); |
| cp.on('exit', mustCall(() => { |
| strictEqual(getEventListeners(signal, 'abort').length, 0); |
| })); |
| } |