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>
41 lines
1.3 KiB
JavaScript
41 lines
1.3 KiB
JavaScript
// Flags: --permission --allow-fs-read=* --allow-fs-write=*
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
common.skipIfWorker();
|
|
|
|
const assert = require('assert');
|
|
const path = require('path');
|
|
const { symlinkSync, symlink, promises: { symlink: symlinkAsync } } = require('fs');
|
|
|
|
const error = {
|
|
code: 'ERR_ACCESS_DENIED',
|
|
message: /relative symbolic link target/,
|
|
};
|
|
|
|
for (const targetString of ['a', './b/c', '../d', 'e/../f', 'C:drive-relative', 'ntfs:alternate']) {
|
|
for (const target of [targetString, Buffer.from(targetString)]) {
|
|
for (const path of [__filename, __dirname, process.execPath]) {
|
|
assert.throws(() => symlinkSync(target, path), error);
|
|
symlink(target, path, common.mustCall((err) => {
|
|
assert(err);
|
|
assert.strictEqual(err.code, error.code);
|
|
assert.match(err.message, error.message);
|
|
}));
|
|
assert.rejects(() => symlinkAsync(target, path), error).then(common.mustCall());
|
|
}
|
|
}
|
|
}
|
|
|
|
// Absolute should not throw
|
|
for (const targetString of [path.resolve('.')]) {
|
|
for (const target of [targetString, Buffer.from(targetString)]) {
|
|
for (const path of [__filename]) {
|
|
symlink(target, path, common.mustCall((err) => {
|
|
assert(err);
|
|
assert.strictEqual(err.code, 'EEXIST');
|
|
assert.match(err.message, /file already exists/);
|
|
}));
|
|
}
|
|
}
|
|
}
|