2022-01-20 02:10:16 -05:00
|
|
|
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2021-11-23 11:45:18 -05:00
|
|
|
import { assert, assertEquals } from "./test_util.ts";
|
2021-09-08 05:14:29 -04:00
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(function urlPatternFromString() {
|
2021-09-08 05:14:29 -04:00
|
|
|
const pattern = new URLPattern("https://deno.land/foo/:bar");
|
|
|
|
assertEquals(pattern.protocol, "https");
|
|
|
|
assertEquals(pattern.hostname, "deno.land");
|
|
|
|
assertEquals(pattern.pathname, "/foo/:bar");
|
|
|
|
|
|
|
|
assert(pattern.test("https://deno.land/foo/x"));
|
|
|
|
assert(!pattern.test("https://deno.com/foo/x"));
|
|
|
|
const match = pattern.exec("https://deno.land/foo/x");
|
|
|
|
assert(match);
|
|
|
|
assertEquals(match.pathname.input, "/foo/x");
|
|
|
|
assertEquals(match.pathname.groups, { bar: "x" });
|
|
|
|
});
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(function urlPatternFromStringWithBase() {
|
2021-09-08 05:14:29 -04:00
|
|
|
const pattern = new URLPattern("/foo/:bar", "https://deno.land");
|
|
|
|
assertEquals(pattern.protocol, "https");
|
|
|
|
assertEquals(pattern.hostname, "deno.land");
|
|
|
|
assertEquals(pattern.pathname, "/foo/:bar");
|
|
|
|
|
|
|
|
assert(pattern.test("https://deno.land/foo/x"));
|
|
|
|
assert(!pattern.test("https://deno.com/foo/x"));
|
|
|
|
const match = pattern.exec("https://deno.land/foo/x");
|
|
|
|
assert(match);
|
|
|
|
assertEquals(match.pathname.input, "/foo/x");
|
|
|
|
assertEquals(match.pathname.groups, { bar: "x" });
|
|
|
|
});
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(function urlPatternFromInit() {
|
2021-09-08 05:14:29 -04:00
|
|
|
const pattern = new URLPattern({
|
|
|
|
pathname: "/foo/:bar",
|
|
|
|
});
|
|
|
|
assertEquals(pattern.protocol, "*");
|
|
|
|
assertEquals(pattern.hostname, "*");
|
|
|
|
assertEquals(pattern.pathname, "/foo/:bar");
|
|
|
|
|
|
|
|
assert(pattern.test("https://deno.land/foo/x"));
|
|
|
|
assert(pattern.test("https://deno.com/foo/x"));
|
|
|
|
assert(!pattern.test("https://deno.com/bar/x"));
|
|
|
|
|
|
|
|
assert(pattern.test({ pathname: "/foo/x" }));
|
|
|
|
});
|