2022-01-20 02:10:16 -05:00
|
|
|
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2020-06-24 18:57:08 -04:00
|
|
|
import {
|
|
|
|
assert,
|
2021-05-17 00:31:21 -04:00
|
|
|
assertEquals,
|
2020-10-07 08:05:43 -04:00
|
|
|
assertMatch,
|
2021-09-22 09:21:11 -04:00
|
|
|
assertRejects,
|
2020-06-24 18:57:08 -04:00
|
|
|
assertThrows,
|
2021-05-17 00:31:21 -04:00
|
|
|
pathToAbsoluteFileUrl,
|
2020-06-24 18:57:08 -04:00
|
|
|
} from "./test_util.ts";
|
2019-11-26 03:40:57 -05:00
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test({ permissions: { read: true } }, function realPathSyncSuccess() {
|
2022-09-19 10:32:21 -04:00
|
|
|
const relative = "cli/tests/testdata/assets/fixture.json";
|
2020-10-07 08:05:43 -04:00
|
|
|
const realPath = Deno.realPathSync(relative);
|
2020-04-28 12:35:23 -04:00
|
|
|
if (Deno.build.os !== "windows") {
|
2019-12-01 14:23:35 -05:00
|
|
|
assert(realPath.startsWith("/"));
|
2020-10-07 08:05:43 -04:00
|
|
|
assert(realPath.endsWith(relative));
|
2019-12-01 14:23:35 -05:00
|
|
|
} else {
|
2020-10-07 08:05:43 -04:00
|
|
|
assertMatch(realPath, /^[A-Z]:\\/);
|
|
|
|
assert(realPath.endsWith(relative.replace(/\//g, "\\")));
|
2019-12-01 14:23:35 -05:00
|
|
|
}
|
2019-11-26 03:40:57 -05:00
|
|
|
});
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test({ permissions: { read: true } }, function realPathSyncUrl() {
|
2022-09-19 10:32:21 -04:00
|
|
|
const relative = "cli/tests/testdata/assets/fixture.json";
|
2021-05-17 00:31:21 -04:00
|
|
|
const url = pathToAbsoluteFileUrl(relative);
|
|
|
|
assertEquals(Deno.realPathSync(relative), Deno.realPathSync(url));
|
|
|
|
});
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(
|
2020-03-04 11:31:14 -05:00
|
|
|
{
|
2021-09-22 19:50:50 -04:00
|
|
|
permissions: { read: true, write: true },
|
2020-03-04 11:31:14 -05:00
|
|
|
},
|
2021-08-05 07:08:58 -04:00
|
|
|
function realPathSyncSymlink() {
|
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-10-07 08:05:43 -04:00
|
|
|
const realPath = Deno.realPathSync(symlink);
|
2020-07-04 10:54:20 -04:00
|
|
|
if (Deno.build.os !== "windows") {
|
2020-10-07 08:05:43 -04:00
|
|
|
assert(realPath.startsWith("/"));
|
|
|
|
assert(realPath.endsWith("/target"));
|
2020-07-04 10:54:20 -04:00
|
|
|
} else {
|
2020-10-07 08:05:43 -04:00
|
|
|
assertMatch(realPath, /^[A-Z]:\\/);
|
|
|
|
assert(realPath.endsWith("\\target"));
|
2020-07-04 10:54:20 -04:00
|
|
|
}
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-03-04 11:31:14 -05:00
|
|
|
);
|
2019-11-26 03:40:57 -05:00
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test({ permissions: { read: false } }, function realPathSyncPerm() {
|
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
|
|
|
});
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test({ permissions: { read: true } }, function realPathSyncNotFound() {
|
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
|
|
|
});
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test({ permissions: { read: true } }, async function realPathSuccess() {
|
2022-09-19 10:32:21 -04:00
|
|
|
const relativePath = "cli/tests/testdata/assets/fixture.json";
|
2020-10-07 08:05:43 -04:00
|
|
|
const realPath = await Deno.realPath(relativePath);
|
2020-04-28 12:35:23 -04:00
|
|
|
if (Deno.build.os !== "windows") {
|
2019-12-01 14:23:35 -05:00
|
|
|
assert(realPath.startsWith("/"));
|
2020-10-07 08:05:43 -04:00
|
|
|
assert(realPath.endsWith(relativePath));
|
2019-12-01 14:23:35 -05:00
|
|
|
} else {
|
2020-10-07 08:05:43 -04:00
|
|
|
assertMatch(realPath, /^[A-Z]:\\/);
|
|
|
|
assert(realPath.endsWith(relativePath.replace(/\//g, "\\")));
|
2019-12-01 14:23:35 -05:00
|
|
|
}
|
2019-11-26 03:40:57 -05:00
|
|
|
});
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(
|
2021-09-22 19:50:50 -04:00
|
|
|
{ permissions: { read: true } },
|
2021-08-05 07:08:58 -04:00
|
|
|
async function realPathUrl() {
|
2022-09-19 10:32:21 -04:00
|
|
|
const relative = "cli/tests/testdata/assets/fixture.json";
|
2021-05-17 00:31:21 -04:00
|
|
|
const url = pathToAbsoluteFileUrl(relative);
|
|
|
|
assertEquals(await Deno.realPath(relative), await Deno.realPath(url));
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(
|
2020-03-04 11:31:14 -05:00
|
|
|
{
|
2021-09-22 19:50:50 -04:00
|
|
|
permissions: { read: true, write: true },
|
2020-03-04 11:31:14 -05:00
|
|
|
},
|
2021-08-05 07:08:58 -04:00
|
|
|
async function realPathSymlink() {
|
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-10-07 08:05:43 -04:00
|
|
|
const realPath = await Deno.realPath(symlink);
|
2020-07-04 10:54:20 -04:00
|
|
|
if (Deno.build.os !== "windows") {
|
2020-10-07 08:05:43 -04:00
|
|
|
assert(realPath.startsWith("/"));
|
|
|
|
assert(realPath.endsWith("/target"));
|
2020-07-04 10:54:20 -04:00
|
|
|
} else {
|
2020-10-07 08:05:43 -04:00
|
|
|
assertMatch(realPath, /^[A-Z]:\\/);
|
|
|
|
assert(realPath.endsWith("\\target"));
|
2020-07-04 10:54:20 -04:00
|
|
|
}
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-03-04 11:31:14 -05:00
|
|
|
);
|
2019-11-26 03:40:57 -05:00
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test({ permissions: { read: false } }, async function realPathPerm() {
|
2021-09-22 09:21:11 -04:00
|
|
|
await assertRejects(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
|
|
|
});
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test({ permissions: { read: true } }, async function realPathNotFound() {
|
2021-09-22 09:21:11 -04:00
|
|
|
await assertRejects(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
|
|
|
});
|