2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2019-03-06 20:48:46 -05:00
|
|
|
import { testPerm, assert, assertEquals } from "./test_util.ts";
|
2018-09-25 00:20:49 -04:00
|
|
|
|
2019-04-21 16:40:10 -04:00
|
|
|
testPerm({ write: true, read: true }, function readlinkSyncSuccess(): void {
|
2019-02-12 10:08:56 -05:00
|
|
|
const testDir = Deno.makeTempDirSync();
|
2018-09-25 00:20:49 -04:00
|
|
|
const target = testDir + "/target";
|
|
|
|
const symlink = testDir + "/symln";
|
2019-02-12 10:08:56 -05:00
|
|
|
Deno.mkdirSync(target);
|
2018-09-25 00:20:49 -04:00
|
|
|
// TODO Add test for Windows once symlink is implemented for Windows.
|
|
|
|
// See https://github.com/denoland/deno/issues/815.
|
2019-03-06 16:54:58 -05:00
|
|
|
if (Deno.build.os !== "win") {
|
2019-02-12 10:08:56 -05:00
|
|
|
Deno.symlinkSync(target, symlink);
|
|
|
|
const targetPath = Deno.readlinkSync(symlink);
|
2019-03-06 20:48:46 -05:00
|
|
|
assertEquals(targetPath, target);
|
2018-09-25 00:20:49 -04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-04-21 16:40:10 -04:00
|
|
|
testPerm({ read: false }, async function readlinkSyncPerm(): Promise<void> {
|
2019-02-08 15:59:38 -05:00
|
|
|
let caughtError = false;
|
|
|
|
try {
|
2019-02-12 10:08:56 -05:00
|
|
|
Deno.readlinkSync("/symlink");
|
2019-02-08 15:59:38 -05:00
|
|
|
} catch (e) {
|
|
|
|
caughtError = true;
|
2020-02-24 15:48:35 -05:00
|
|
|
assert(e instanceof Deno.errors.PermissionDenied);
|
2019-02-08 15:59:38 -05:00
|
|
|
}
|
|
|
|
assert(caughtError);
|
|
|
|
});
|
|
|
|
|
2019-04-21 16:40:10 -04:00
|
|
|
testPerm({ read: true }, function readlinkSyncNotFound(): void {
|
2018-09-25 00:20:49 -04:00
|
|
|
let caughtError = false;
|
|
|
|
let data;
|
|
|
|
try {
|
2019-02-12 10:08:56 -05:00
|
|
|
data = Deno.readlinkSync("bad_filename");
|
2018-09-25 00:20:49 -04:00
|
|
|
} catch (e) {
|
|
|
|
caughtError = true;
|
2020-02-24 15:48:35 -05:00
|
|
|
assert(e instanceof Deno.errors.NotFound);
|
2018-09-25 00:20:49 -04:00
|
|
|
}
|
|
|
|
assert(caughtError);
|
2019-03-06 20:48:46 -05:00
|
|
|
assertEquals(data, undefined);
|
2018-09-25 00:20:49 -04:00
|
|
|
});
|
|
|
|
|
2019-04-21 16:40:10 -04:00
|
|
|
testPerm({ write: true, read: true }, async function readlinkSuccess(): Promise<
|
|
|
|
void
|
|
|
|
> {
|
2019-02-12 10:08:56 -05:00
|
|
|
const testDir = Deno.makeTempDirSync();
|
2018-09-25 00:20:49 -04:00
|
|
|
const target = testDir + "/target";
|
|
|
|
const symlink = testDir + "/symln";
|
2019-02-12 10:08:56 -05:00
|
|
|
Deno.mkdirSync(target);
|
2018-09-25 00:20:49 -04:00
|
|
|
// TODO Add test for Windows once symlink is implemented for Windows.
|
|
|
|
// See https://github.com/denoland/deno/issues/815.
|
2019-03-06 16:54:58 -05:00
|
|
|
if (Deno.build.os !== "win") {
|
2019-02-12 10:08:56 -05:00
|
|
|
Deno.symlinkSync(target, symlink);
|
|
|
|
const targetPath = await Deno.readlink(symlink);
|
2019-03-06 20:48:46 -05:00
|
|
|
assertEquals(targetPath, target);
|
2018-09-25 00:20:49 -04:00
|
|
|
}
|
|
|
|
});
|
2019-02-08 15:59:38 -05:00
|
|
|
|
2019-04-21 16:40:10 -04:00
|
|
|
testPerm({ read: false }, async function readlinkPerm(): Promise<void> {
|
2019-02-08 15:59:38 -05:00
|
|
|
let caughtError = false;
|
|
|
|
try {
|
2019-02-12 10:08:56 -05:00
|
|
|
await Deno.readlink("/symlink");
|
2019-02-08 15:59:38 -05:00
|
|
|
} catch (e) {
|
|
|
|
caughtError = true;
|
2020-02-24 15:48:35 -05:00
|
|
|
assert(e instanceof Deno.errors.PermissionDenied);
|
2019-02-08 15:59:38 -05:00
|
|
|
}
|
|
|
|
assert(caughtError);
|
|
|
|
});
|