Skip to content

Commit

Permalink
fix: decode path properly on win32 (denoland#6351)
Browse files Browse the repository at this point in the history
  • Loading branch information
r-tae committed Jun 18, 2020
1 parent eea3223 commit 2a5af8b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
12 changes: 7 additions & 5 deletions cli/js/util.ts
Expand Up @@ -82,19 +82,21 @@ export function immutableDefine(
}

function pathFromURLWin32(url: URL): string {
if (url.hostname !== "") {
const hostname = url.hostname;
const pathname = decodeURIComponent(url.pathname.replace(/\//g, "\\"));

if (hostname !== "") {
//TODO(actual-size) Node adds a punycode decoding step, we should consider adding this
return `\\\\${url.hostname}${url.pathname}`;
return `\\\\${hostname}${pathname}`;
}

const validPath = /^\/(?<driveLetter>[A-Za-z]):\//;
const matches = validPath.exec(url.pathname);
const validPath = /^\\(?<driveLetter>[A-Za-z]):\\/;
const matches = validPath.exec(pathname);

if (!matches?.groups?.driveLetter) {
throw new TypeError("A URL with the file schema must be absolute.");
}

const pathname = url.pathname.replace(/\//g, "\\");
// we don't want a leading slash on an absolute path in Windows
return pathname.slice(1);
}
Expand Down
3 changes: 2 additions & 1 deletion cli/tests/unit/path_from_url_test.ts
Expand Up @@ -7,6 +7,7 @@ unitTest(
{ ignore: Deno.build.os === "windows" },
function pathFromURLPosix(): void {
assertEquals(pathFromURL("file:///test/directory"), "/test/directory");
assertEquals(pathFromURL("file:///space_ .txt"), "/space_ .txt");
assertThrows(() => pathFromURL("file://host/test/directory"));
assertThrows(() => pathFromURL("https://deno.land/welcome.ts"));
}
Expand All @@ -16,6 +17,7 @@ unitTest(
{ ignore: Deno.build.os !== "windows" },
function pathFromURLWin32(): void {
assertEquals(pathFromURL("file:///c:/windows/test"), "c:\\windows\\test");
assertEquals(pathFromURL("file:///c:/space_ .txt"), "c:\\space_ .txt");
assertThrows(() => pathFromURL("file:///thing/test"));
assertThrows(() => pathFromURL("https://deno.land/welcome.ts"));
/* TODO(ry) Add tests for these situations
Expand All @@ -24,7 +26,6 @@ unitTest(
* 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
* space_ .txt file:///D:/weird_names/space_%20.txt
* swapped_surrogate_pair_��.txt file:///D:/weird_names/swapped_surrogate_pair_%EF%BF%BD%EF%BF%BD.txt
*/
}
Expand Down

0 comments on commit 2a5af8b

Please sign in to comment.