mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02: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>
31 lines
866 B
JavaScript
31 lines
866 B
JavaScript
// Flags: --permission --allow-fs-read=* --allow-child-process
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
const path = require('path');
|
|
common.skipIfWorker();
|
|
|
|
const assert = require('assert');
|
|
const { spawnSync } = require('child_process');
|
|
|
|
{
|
|
// Relative path as CLI args are supported
|
|
const { status, stdout } = spawnSync(
|
|
process.execPath,
|
|
[
|
|
'--permission',
|
|
'--allow-fs-read', '*',
|
|
'--allow-fs-write', path.resolve('../fixtures/permission/deny/regular-file.md'),
|
|
'-e',
|
|
`
|
|
const path = require("path");
|
|
const absolutePath = path.resolve("../fixtures/permission/deny/regular-file.md");
|
|
console.log(process.permission.has("fs.write", absolutePath));
|
|
`,
|
|
]
|
|
);
|
|
|
|
const [fsWrite] = stdout.toString().split('\n');
|
|
assert.strictEqual(fsWrite, 'true');
|
|
assert.strictEqual(status, 0);
|
|
}
|