std/url/join_test.ts
2024-04-29 11:57:30 +09:00

30 lines
828 B
TypeScript
Executable File

// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { assertEquals } from "@std/assert";
import * as url from "./mod.ts";
const TESTSUITE: [[string | URL, ...string[]], URL][] = [
[
["https://deno.land", "std", "assert", "mod.ts"],
new URL("https://deno.land/std/assert/mod.ts"),
],
[
[new URL("https://deno.land"), "std", "assert", "mod.ts"],
new URL("https://deno.land/std/assert/mod.ts"),
],
[
[new URL("https:///deno.land//std//"), "/", "/assert/", "//mod.ts"],
new URL("https://deno.land/std/assert/mod.ts"),
],
[
["https://deno.land///", "/"],
new URL("https://deno.land/"),
],
];
Deno.test("join()", function () {
for (const [[testUrl, ...paths], expected] of TESTSUITE) {
assertEquals(url.join(testUrl, ...paths), expected);
}
});