2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2020-06-24 18:57:08 -04:00
|
|
|
import {
|
|
|
|
unitTest,
|
|
|
|
assert,
|
|
|
|
assertThrows,
|
|
|
|
assertThrowsAsync,
|
|
|
|
} from "./test_util.ts";
|
2019-11-26 03:40:57 -05:00
|
|
|
|
2020-04-29 16:39:37 -04:00
|
|
|
unitTest({ perms: { read: true } }, function realPathSyncSuccess(): void {
|
2019-11-26 03:40:57 -05:00
|
|
|
const incompletePath = "cli/tests/fixture.json";
|
2020-04-29 16:39:37 -04:00
|
|
|
const realPath = Deno.realPathSync(incompletePath);
|
2020-04-28 12:35:23 -04:00
|
|
|
if (Deno.build.os !== "windows") {
|
2019-12-01 14:23:35 -05:00
|
|
|
assert(realPath.startsWith("/"));
|
|
|
|
} else {
|
|
|
|
assert(/^[A-Z]/.test(realPath));
|
|
|
|
}
|
2019-11-26 03:40:57 -05:00
|
|
|
assert(realPath.endsWith(incompletePath));
|
|
|
|
});
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(
|
|
|
|
{
|
2020-03-28 13:03:49 -04:00
|
|
|
perms: { read: true, write: true },
|
2020-03-04 11:31:14 -05:00
|
|
|
},
|
2020-04-29 16:39:37 -04:00
|
|
|
function realPathSyncSymlink(): void {
|
2019-11-26 03:40:57 -05:00
|
|
|
const testDir = Deno.makeTempDirSync();
|
|
|
|
const target = testDir + "/target";
|
|
|
|
const symlink = testDir + "/symln";
|
|
|
|
Deno.mkdirSync(target);
|
|
|
|
Deno.symlinkSync(target, symlink);
|
2020-04-29 16:39:37 -04:00
|
|
|
const targetPath = Deno.realPathSync(symlink);
|
2020-07-04 10:54:20 -04:00
|
|
|
if (Deno.build.os !== "windows") {
|
|
|
|
assert(targetPath.startsWith("/"));
|
|
|
|
} else {
|
|
|
|
assert(/^[A-Z]/.test(targetPath));
|
|
|
|
}
|
2019-11-26 03:40:57 -05:00
|
|
|
assert(targetPath.endsWith("/target"));
|
2020-03-04 11:31:14 -05:00
|
|
|
}
|
|
|
|
);
|
2019-11-26 03:40:57 -05:00
|
|
|
|
2020-04-29 16:39:37 -04:00
|
|
|
unitTest({ perms: { read: false } }, function realPathSyncPerm(): void {
|
2020-06-24 18:57:08 -04:00
|
|
|
assertThrows(() => {
|
2020-04-29 16:39:37 -04:00
|
|
|
Deno.realPathSync("some_file");
|
2020-06-24 18:57:08 -04:00
|
|
|
}, Deno.errors.PermissionDenied);
|
2019-11-26 03:40:57 -05:00
|
|
|
});
|
|
|
|
|
2020-04-29 16:39:37 -04:00
|
|
|
unitTest({ perms: { read: true } }, function realPathSyncNotFound(): void {
|
2020-06-24 18:57:08 -04:00
|
|
|
assertThrows(() => {
|
2020-04-29 16:39:37 -04:00
|
|
|
Deno.realPathSync("bad_filename");
|
2020-06-24 18:57:08 -04:00
|
|
|
}, Deno.errors.NotFound);
|
2019-11-26 03:40:57 -05:00
|
|
|
});
|
|
|
|
|
2020-04-29 16:39:37 -04:00
|
|
|
unitTest({ perms: { read: true } }, async function realPathSuccess(): Promise<
|
2020-03-04 11:31:14 -05:00
|
|
|
void
|
|
|
|
> {
|
2019-11-26 03:40:57 -05:00
|
|
|
const incompletePath = "cli/tests/fixture.json";
|
2020-04-29 16:39:37 -04:00
|
|
|
const realPath = await Deno.realPath(incompletePath);
|
2020-04-28 12:35:23 -04:00
|
|
|
if (Deno.build.os !== "windows") {
|
2019-12-01 14:23:35 -05:00
|
|
|
assert(realPath.startsWith("/"));
|
|
|
|
} else {
|
|
|
|
assert(/^[A-Z]/.test(realPath));
|
|
|
|
}
|
2019-11-26 03:40:57 -05:00
|
|
|
assert(realPath.endsWith(incompletePath));
|
|
|
|
});
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(
|
|
|
|
{
|
2020-03-28 13:03:49 -04:00
|
|
|
perms: { read: true, write: true },
|
2020-03-04 11:31:14 -05:00
|
|
|
},
|
2020-04-29 16:39:37 -04:00
|
|
|
async function realPathSymlink(): Promise<void> {
|
2020-03-04 11:31:14 -05:00
|
|
|
const testDir = Deno.makeTempDirSync();
|
|
|
|
const target = testDir + "/target";
|
|
|
|
const symlink = testDir + "/symln";
|
|
|
|
Deno.mkdirSync(target);
|
|
|
|
Deno.symlinkSync(target, symlink);
|
2020-04-29 16:39:37 -04:00
|
|
|
const targetPath = await Deno.realPath(symlink);
|
2020-07-04 10:54:20 -04:00
|
|
|
if (Deno.build.os !== "windows") {
|
|
|
|
assert(targetPath.startsWith("/"));
|
|
|
|
} else {
|
|
|
|
assert(/^[A-Z]/.test(targetPath));
|
|
|
|
}
|
2020-03-04 11:31:14 -05:00
|
|
|
assert(targetPath.endsWith("/target"));
|
|
|
|
}
|
|
|
|
);
|
2019-11-26 03:40:57 -05:00
|
|
|
|
2020-04-29 16:39:37 -04:00
|
|
|
unitTest({ perms: { read: false } }, async function realPathPerm(): Promise<
|
2020-03-04 11:31:14 -05:00
|
|
|
void
|
|
|
|
> {
|
2020-06-24 18:57:08 -04:00
|
|
|
await assertThrowsAsync(async () => {
|
2020-04-29 16:39:37 -04:00
|
|
|
await Deno.realPath("some_file");
|
2020-06-24 18:57:08 -04:00
|
|
|
}, Deno.errors.PermissionDenied);
|
2019-11-26 03:40:57 -05:00
|
|
|
});
|
|
|
|
|
2020-04-29 16:39:37 -04:00
|
|
|
unitTest({ perms: { read: true } }, async function realPathNotFound(): Promise<
|
2020-03-04 11:31:14 -05:00
|
|
|
void
|
|
|
|
> {
|
2020-06-24 18:57:08 -04:00
|
|
|
await assertThrowsAsync(async () => {
|
2020-04-29 16:39:37 -04:00
|
|
|
await Deno.realPath("bad_filename");
|
2020-06-24 18:57:08 -04:00
|
|
|
}, Deno.errors.NotFound);
|
2019-11-26 03:40:57 -05:00
|
|
|
});
|