2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2020-02-21 10:36:13 -05:00
|
|
|
import { testPerm, assert } from "./test_util.ts";
|
2019-11-26 03:40:57 -05:00
|
|
|
|
|
|
|
testPerm({ read: true }, function realpathSyncSuccess(): void {
|
|
|
|
const incompletePath = "cli/tests/fixture.json";
|
|
|
|
const realPath = Deno.realpathSync(incompletePath);
|
2019-12-01 14:23:35 -05:00
|
|
|
if (Deno.build.os !== "win") {
|
|
|
|
assert(realPath.startsWith("/"));
|
|
|
|
} else {
|
|
|
|
assert(/^[A-Z]/.test(realPath));
|
|
|
|
}
|
2019-11-26 03:40:57 -05:00
|
|
|
assert(realPath.endsWith(incompletePath));
|
|
|
|
});
|
|
|
|
|
|
|
|
if (Deno.build.os !== "win") {
|
|
|
|
testPerm({ read: true, write: true }, function realpathSyncSymlink(): void {
|
|
|
|
const testDir = Deno.makeTempDirSync();
|
|
|
|
const target = testDir + "/target";
|
|
|
|
const symlink = testDir + "/symln";
|
|
|
|
Deno.mkdirSync(target);
|
|
|
|
Deno.symlinkSync(target, symlink);
|
|
|
|
const targetPath = Deno.realpathSync(symlink);
|
|
|
|
assert(targetPath.startsWith("/"));
|
|
|
|
assert(targetPath.endsWith("/target"));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
testPerm({ read: false }, function realpathSyncPerm(): void {
|
|
|
|
let caughtError = false;
|
|
|
|
try {
|
|
|
|
Deno.realpathSync("some_file");
|
|
|
|
} catch (e) {
|
|
|
|
caughtError = true;
|
2020-02-24 15:48:35 -05:00
|
|
|
assert(e instanceof Deno.errors.PermissionDenied);
|
2019-11-26 03:40:57 -05:00
|
|
|
}
|
|
|
|
assert(caughtError);
|
|
|
|
});
|
|
|
|
|
|
|
|
testPerm({ read: true }, function realpathSyncNotFound(): void {
|
|
|
|
let caughtError = false;
|
|
|
|
try {
|
|
|
|
Deno.realpathSync("bad_filename");
|
|
|
|
} catch (e) {
|
|
|
|
caughtError = true;
|
2020-02-24 15:48:35 -05:00
|
|
|
assert(e instanceof Deno.errors.NotFound);
|
2019-11-26 03:40:57 -05:00
|
|
|
}
|
|
|
|
assert(caughtError);
|
|
|
|
});
|
|
|
|
|
|
|
|
testPerm({ read: true }, async function realpathSuccess(): Promise<void> {
|
|
|
|
const incompletePath = "cli/tests/fixture.json";
|
|
|
|
const realPath = await Deno.realpath(incompletePath);
|
2019-12-01 14:23:35 -05:00
|
|
|
if (Deno.build.os !== "win") {
|
|
|
|
assert(realPath.startsWith("/"));
|
|
|
|
} else {
|
|
|
|
assert(/^[A-Z]/.test(realPath));
|
|
|
|
}
|
2019-11-26 03:40:57 -05:00
|
|
|
assert(realPath.endsWith(incompletePath));
|
|
|
|
});
|
|
|
|
|
|
|
|
if (Deno.build.os !== "win") {
|
|
|
|
testPerm(
|
|
|
|
{ read: true, write: true },
|
|
|
|
async function realpathSymlink(): Promise<void> {
|
|
|
|
const testDir = Deno.makeTempDirSync();
|
|
|
|
const target = testDir + "/target";
|
|
|
|
const symlink = testDir + "/symln";
|
|
|
|
Deno.mkdirSync(target);
|
|
|
|
Deno.symlinkSync(target, symlink);
|
|
|
|
const targetPath = await Deno.realpath(symlink);
|
|
|
|
assert(targetPath.startsWith("/"));
|
|
|
|
assert(targetPath.endsWith("/target"));
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
testPerm({ read: false }, async function realpathPerm(): Promise<void> {
|
|
|
|
let caughtError = false;
|
|
|
|
try {
|
|
|
|
await Deno.realpath("some_file");
|
|
|
|
} catch (e) {
|
|
|
|
caughtError = true;
|
2020-02-24 15:48:35 -05:00
|
|
|
assert(e instanceof Deno.errors.PermissionDenied);
|
2019-11-26 03:40:57 -05:00
|
|
|
}
|
|
|
|
assert(caughtError);
|
|
|
|
});
|
|
|
|
|
|
|
|
testPerm({ read: true }, async function realpathNotFound(): Promise<void> {
|
|
|
|
let caughtError = false;
|
|
|
|
try {
|
|
|
|
await Deno.realpath("bad_filename");
|
|
|
|
} catch (e) {
|
|
|
|
caughtError = true;
|
2020-02-24 15:48:35 -05:00
|
|
|
assert(e instanceof Deno.errors.NotFound);
|
2019-11-26 03:40:57 -05:00
|
|
|
}
|
|
|
|
assert(caughtError);
|
|
|
|
});
|