mirror of
https://github.com/nodejs/node.git
synced 2025-05-04 16:42:07 +00:00

PR-URL: https://github.com/nodejs/node/pull/47335 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Beth Griggs <bethanyngriggs@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
27 lines
732 B
JavaScript
27 lines
732 B
JavaScript
// Flags: --experimental-permission --allow-child-process --allow-fs-read=*
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
common.skipIfWorker();
|
|
const assert = require('assert');
|
|
const childProcess = require('child_process');
|
|
|
|
if (process.argv[2] === 'child') {
|
|
process.exit(0);
|
|
}
|
|
|
|
// Guarantee the initial state
|
|
{
|
|
assert.ok(process.permission.has('child'));
|
|
}
|
|
|
|
// When a permission is set by cli, the process shouldn't be able
|
|
// to spawn unless --allow-child-process is sent
|
|
{
|
|
// doesNotThrow
|
|
childProcess.spawnSync(process.execPath, ['--version']);
|
|
childProcess.execSync(process.execPath, ['--version']);
|
|
childProcess.fork(__filename, ['child']);
|
|
childProcess.execFileSync(process.execPath, ['--version']);
|
|
}
|