2019-01-21 14:03:30 -05:00
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
2019-02-08 15:59:38 -05:00
|
|
|
import { testPerm, assert, assertEqual } from "./test_util.ts";
|
2018-09-25 00:20:49 -04:00
|
|
|
import * as deno from "deno";
|
|
|
|
|
2019-02-08 15:59:38 -05:00
|
|
|
testPerm({ write: true, read: true }, function readlinkSyncSuccess() {
|
2019-01-17 23:39:06 -05:00
|
|
|
const testDir = deno.makeTempDirSync();
|
2018-09-25 00:20:49 -04:00
|
|
|
const target = testDir + "/target";
|
|
|
|
const symlink = testDir + "/symln";
|
|
|
|
deno.mkdirSync(target);
|
|
|
|
// TODO Add test for Windows once symlink is implemented for Windows.
|
|
|
|
// See https://github.com/denoland/deno/issues/815.
|
2018-10-04 07:20:14 -04:00
|
|
|
if (deno.platform.os !== "win") {
|
2018-09-25 00:20:49 -04:00
|
|
|
deno.symlinkSync(target, symlink);
|
|
|
|
const targetPath = deno.readlinkSync(symlink);
|
|
|
|
assertEqual(targetPath, target);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-02-08 15:59:38 -05:00
|
|
|
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");
|
|
|
|
} catch (e) {
|
|
|
|
caughtError = true;
|
|
|
|
assertEqual(e.kind, deno.ErrorKind.NotFound);
|
|
|
|
}
|
|
|
|
assert(caughtError);
|
|
|
|
assertEqual(data, undefined);
|
|
|
|
});
|
|
|
|
|
2019-02-08 15:59:38 -05:00
|
|
|
testPerm({ write: true, read: true }, async function readlinkSuccess() {
|
2019-01-17 23:39:06 -05:00
|
|
|
const testDir = deno.makeTempDirSync();
|
2018-09-25 00:20:49 -04:00
|
|
|
const target = testDir + "/target";
|
|
|
|
const symlink = testDir + "/symln";
|
|
|
|
deno.mkdirSync(target);
|
|
|
|
// TODO Add test for Windows once symlink is implemented for Windows.
|
|
|
|
// See https://github.com/denoland/deno/issues/815.
|
2018-10-04 07:20:14 -04:00
|
|
|
if (deno.platform.os !== "win") {
|
2018-09-25 00:20:49 -04:00
|
|
|
deno.symlinkSync(target, symlink);
|
|
|
|
const targetPath = await deno.readlink(symlink);
|
|
|
|
assertEqual(targetPath, target);
|
|
|
|
}
|
|
|
|
});
|
2019-02-08 15:59:38 -05:00
|
|
|
|
|
|
|
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);
|
|
|
|
});
|