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>
26 lines
561 B
JavaScript
26 lines
561 B
JavaScript
'use strict';
|
|
|
|
require('../common');
|
|
const { spawnSync } = require('child_process');
|
|
const assert = require('assert');
|
|
|
|
const warnFlags = [
|
|
'--allow-addons',
|
|
'--allow-child-process',
|
|
'--allow-wasi',
|
|
'--allow-worker',
|
|
];
|
|
|
|
for (const flag of warnFlags) {
|
|
const { status, stderr } = spawnSync(
|
|
process.execPath,
|
|
[
|
|
'--permission', flag, '-e',
|
|
'setTimeout(() => {}, 1)',
|
|
]
|
|
);
|
|
|
|
assert.match(stderr.toString(), new RegExp(`SecurityWarning: The flag ${flag} must be used with extreme caution`));
|
|
assert.strictEqual(status, 0);
|
|
}
|