mirror of
https://github.com/denoland/deno.git
synced 2024-11-14 16:33:45 -05:00
46 lines
1.6 KiB
TypeScript
46 lines
1.6 KiB
TypeScript
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||
|
import { assert, assertEquals, unitTest } from "./test_util.ts";
|
||
|
|
||
|
unitTest(function urlPatternFromString() {
|
||
|
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" });
|
||
|
});
|
||
|
|
||
|
unitTest(function urlPatternFromStringWithBase() {
|
||
|
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" });
|
||
|
});
|
||
|
|
||
|
unitTest(function urlPatternFromInit() {
|
||
|
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" }));
|
||
|
});
|