mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
test: test and docs for detached fork process
This tests child process fork component in detached mode by spawning a parent process that creates a child process. We kill the parent process and check if the child is still running. Fixes: https://github.com/nodejs/node/issues/17592 PR-URL: https://github.com/nodejs/node/pull/24524 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
This commit is contained in:
parent
804138093a
commit
f051737ee4
@ -325,6 +325,9 @@ changes:
|
||||
* `args` {string[]} List of string arguments.
|
||||
* `options` {Object}
|
||||
* `cwd` {string} Current working directory of the child process.
|
||||
* `detached` {boolean} Prepare child to run independently of its parent
|
||||
process. Specific behavior depends on the platform, see
|
||||
[`options.detached`][]).
|
||||
* `env` {Object} Environment key-value pairs.
|
||||
* `execPath` {string} Executable used to create the child process.
|
||||
* `execArgv` {string[]} List of string arguments passed to the executable.
|
||||
|
12
test/fixtures/parent-process-nonpersistent-fork.js
vendored
Normal file
12
test/fixtures/parent-process-nonpersistent-fork.js
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
const fork = require('child_process').fork;
|
||||
const path = require('path');
|
||||
|
||||
const child = fork(
|
||||
path.join(__dirname, 'child-process-persistent.js'),
|
||||
[],
|
||||
{ detached: true, stdio: 'ignore' }
|
||||
);
|
||||
|
||||
console.log(child.pid);
|
||||
|
||||
child.unref();
|
23
test/parallel/test-child-process-fork-detached.js
Normal file
23
test/parallel/test-child-process-fork-detached.js
Normal file
@ -0,0 +1,23 @@
|
||||
'use strict';
|
||||
require('../common');
|
||||
const assert = require('assert');
|
||||
const fork = require('child_process').fork;
|
||||
const fixtures = require('../common/fixtures');
|
||||
|
||||
const nonPersistentNode = fork(
|
||||
fixtures.path('parent-process-nonpersistent-fork.js'),
|
||||
[],
|
||||
{ silent: true });
|
||||
|
||||
let childId = -1;
|
||||
|
||||
nonPersistentNode.stdout.on('data', (data) => {
|
||||
childId = parseInt(data, 10);
|
||||
nonPersistentNode.kill();
|
||||
});
|
||||
|
||||
process.on('exit', () => {
|
||||
assert.notStrictEqual(childId, -1);
|
||||
// Killing the child process should not throw an error
|
||||
process.kill(childId);
|
||||
});
|
Loading…
Reference in New Issue
Block a user