0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/js/read_link_test.ts

68 lines
2 KiB
TypeScript
Raw Normal View History

2019-01-21 14:03:30 -05:00
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import { testPerm, assert, assertEqual } from "./test_util.ts";
2018-09-25 00:20:49 -04:00
testPerm({ write: true, read: true }, function readlinkSyncSuccess() {
const testDir = Deno.makeTempDirSync();
2018-09-25 00:20:49 -04:00
const target = testDir + "/target";
const symlink = testDir + "/symln";
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.
if (Deno.platform.os !== "win") {
Deno.symlinkSync(target, symlink);
const targetPath = Deno.readlinkSync(symlink);
2018-09-25 00:20:49 -04:00
assertEqual(targetPath, target);
}
});
testPerm({ read: false }, async function readlinkSyncPerm() {
let caughtError = false;
try {
Deno.readlinkSync("/symlink");
} catch (e) {
caughtError = true;
assertEqual(e.kind, Deno.ErrorKind.PermissionDenied);
assertEqual(e.name, "PermissionDenied");
}
assert(caughtError);
});
testPerm({ read: true }, function readlinkSyncNotFound() {
2018-09-25 00:20:49 -04:00
let caughtError = false;
let data;
try {
data = Deno.readlinkSync("bad_filename");
2018-09-25 00:20:49 -04:00
} catch (e) {
caughtError = true;
assertEqual(e.kind, Deno.ErrorKind.NotFound);
2018-09-25 00:20:49 -04:00
}
assert(caughtError);
assertEqual(data, undefined);
});
testPerm({ write: true, read: true }, async function readlinkSuccess() {
const testDir = Deno.makeTempDirSync();
2018-09-25 00:20:49 -04:00
const target = testDir + "/target";
const symlink = testDir + "/symln";
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.
if (Deno.platform.os !== "win") {
Deno.symlinkSync(target, symlink);
const targetPath = await Deno.readlink(symlink);
2018-09-25 00:20:49 -04:00
assertEqual(targetPath, target);
}
});
testPerm({ read: false }, async function readlinkPerm() {
let caughtError = false;
try {
await Deno.readlink("/symlink");
} catch (e) {
caughtError = true;
assertEqual(e.kind, Deno.ErrorKind.PermissionDenied);
assertEqual(e.name, "PermissionDenied");
}
assert(caughtError);
});