mirror of
https://github.com/nodejs/node.git
synced 2025-04-28 21:46:48 +00:00

Move permission model from 1.1 (Active Development) to 2.0 (Stable). PR-URL: https://github.com/nodejs/node/pull/56201 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
27 lines
747 B
JavaScript
27 lines
747 B
JavaScript
// Flags: --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(...common.escapePOSIXShell`"${process.execPath}" --version`);
|
|
childProcess.fork(__filename, ['child']);
|
|
childProcess.execFileSync(process.execPath, ['--version']);
|
|
}
|