2024-01-01 14:58:21 -05:00
|
|
|
// Copyright 2018-2024 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() {
|
chore: move cli/tests/ -> tests/ (#22369)
This looks like a massive PR, but it's only a move from cli/tests ->
tests, and updates of relative paths for files.
This is the first step towards aggregate all of the integration test
files under tests/, which will lead to a set of integration tests that
can run without the CLI binary being built.
While we could leave these tests under `cli`, it would require us to
keep a more complex directory structure for the various test runners. In
addition, we have a lot of complexity to ignore various test files in
the `cli` project itself (cargo publish exclusion rules, autotests =
false, etc).
And finally, the `tests/` folder will eventually house the `test_ffi`,
`test_napi` and other testing code, reducing the size of the root repo
directory.
For easier review, the extremely large and noisy "move" is in the first
commit (with no changes -- just a move), while the remainder of the
changes to actual files is in the second commit.
2024-02-10 15:22:13 -05:00
|
|
|
const relative = "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() {
|
chore: move cli/tests/ -> tests/ (#22369)
This looks like a massive PR, but it's only a move from cli/tests ->
tests, and updates of relative paths for files.
This is the first step towards aggregate all of the integration test
files under tests/, which will lead to a set of integration tests that
can run without the CLI binary being built.
While we could leave these tests under `cli`, it would require us to
keep a more complex directory structure for the various test runners. In
addition, we have a lot of complexity to ignore various test files in
the `cli` project itself (cargo publish exclusion rules, autotests =
false, etc).
And finally, the `tests/` folder will eventually house the `test_ffi`,
`test_napi` and other testing code, reducing the size of the root repo
directory.
For easier review, the extremely large and noisy "move" is in the first
commit (with no changes -- just a move), while the remainder of the
changes to actual files is in the second commit.
2024-02-10 15:22:13 -05:00
|
|
|
const relative = "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");
|
2024-09-10 14:12:24 -04:00
|
|
|
}, Deno.errors.NotCapable);
|
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() {
|
chore: move cli/tests/ -> tests/ (#22369)
This looks like a massive PR, but it's only a move from cli/tests ->
tests, and updates of relative paths for files.
This is the first step towards aggregate all of the integration test
files under tests/, which will lead to a set of integration tests that
can run without the CLI binary being built.
While we could leave these tests under `cli`, it would require us to
keep a more complex directory structure for the various test runners. In
addition, we have a lot of complexity to ignore various test files in
the `cli` project itself (cargo publish exclusion rules, autotests =
false, etc).
And finally, the `tests/` folder will eventually house the `test_ffi`,
`test_napi` and other testing code, reducing the size of the root repo
directory.
For easier review, the extremely large and noisy "move" is in the first
commit (with no changes -- just a move), while the remainder of the
changes to actual files is in the second commit.
2024-02-10 15:22:13 -05:00
|
|
|
const relativePath = "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() {
|
chore: move cli/tests/ -> tests/ (#22369)
This looks like a massive PR, but it's only a move from cli/tests ->
tests, and updates of relative paths for files.
This is the first step towards aggregate all of the integration test
files under tests/, which will lead to a set of integration tests that
can run without the CLI binary being built.
While we could leave these tests under `cli`, it would require us to
keep a more complex directory structure for the various test runners. In
addition, we have a lot of complexity to ignore various test files in
the `cli` project itself (cargo publish exclusion rules, autotests =
false, etc).
And finally, the `tests/` folder will eventually house the `test_ffi`,
`test_napi` and other testing code, reducing the size of the root repo
directory.
For easier review, the extremely large and noisy "move" is in the first
commit (with no changes -- just a move), while the remainder of the
changes to actual files is in the second commit.
2024-02-10 15:22:13 -05:00
|
|
|
const relative = "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");
|
2024-09-10 14:12:24 -04:00
|
|
|
}, Deno.errors.NotCapable);
|
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
|
|
|
});
|