2020-06-11 12:36:20 -04:00
|
|
|
|
import { assertThrows, assertEquals, unitTest } from "./test_util.ts";
|
|
|
|
|
|
|
|
|
|
// @ts-expect-error TypeScript (as of 3.7) does not support indexing namespaces by symbol
|
|
|
|
|
const { pathFromURL } = Deno[Deno.internal];
|
|
|
|
|
|
|
|
|
|
unitTest(
|
|
|
|
|
{ ignore: Deno.build.os === "windows" },
|
|
|
|
|
function pathFromURLPosix(): void {
|
2020-06-26 08:29:34 -04:00
|
|
|
|
assertEquals(
|
|
|
|
|
pathFromURL(new URL("file:///test/directory")),
|
2020-07-14 15:24:17 -04:00
|
|
|
|
"/test/directory",
|
2020-06-26 08:29:34 -04:00
|
|
|
|
);
|
|
|
|
|
assertEquals(pathFromURL(new URL("file:///space_ .txt")), "/space_ .txt");
|
|
|
|
|
assertThrows(() => pathFromURL(new URL("https://deno.land/welcome.ts")));
|
2020-07-14 15:24:17 -04:00
|
|
|
|
},
|
2020-06-11 12:36:20 -04:00
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
unitTest(
|
|
|
|
|
{ ignore: Deno.build.os !== "windows" },
|
|
|
|
|
function pathFromURLWin32(): void {
|
2020-06-26 08:29:34 -04:00
|
|
|
|
assertEquals(
|
|
|
|
|
pathFromURL(new URL("file:///c:/windows/test")),
|
2020-07-14 15:24:17 -04:00
|
|
|
|
"c:\\windows\\test",
|
2020-06-26 08:29:34 -04:00
|
|
|
|
);
|
|
|
|
|
assertEquals(
|
|
|
|
|
pathFromURL(new URL("file:///c:/space_ .txt")),
|
2020-07-14 15:24:17 -04:00
|
|
|
|
"c:\\space_ .txt",
|
2020-06-26 08:29:34 -04:00
|
|
|
|
);
|
|
|
|
|
assertThrows(() => pathFromURL(new URL("https://deno.land/welcome.ts")));
|
2020-06-11 12:36:20 -04:00
|
|
|
|
/* TODO(ry) Add tests for these situations
|
|
|
|
|
* ampersand_&.tx file:///D:/weird_names/ampersand_&.txt
|
|
|
|
|
* at_@.txt file:///D:/weird_names/at_@.txt
|
|
|
|
|
* emoji_🙃.txt file:///D:/weird_names/emoji_%F0%9F%99%83.txt
|
|
|
|
|
* percent_%.txt file:///D:/weird_names/percent_%25.txt
|
|
|
|
|
* pound_#.txt file:///D:/weird_names/pound_%23.txt
|
|
|
|
|
* swapped_surrogate_pair_<EFBFBD><EFBFBD>.txt file:///D:/weird_names/swapped_surrogate_pair_%EF%BF%BD%EF%BF%BD.txt
|
|
|
|
|
*/
|
2020-07-14 15:24:17 -04:00
|
|
|
|
},
|
2020-06-11 12:36:20 -04:00
|
|
|
|
);
|