mirror of
https://github.com/JonasunderscoreJones/api.jonasjones.dev.git
synced 2025-10-23 12:09:19 +02:00
128 lines
5.3 KiB
TypeScript
128 lines
5.3 KiB
TypeScript
import { isRoutingRuleMatch } from "../pages-dev-util";
|
|
|
|
describe("isRoutingRuleMatch", () => {
|
|
it("should match rules referencing root level correctly", () => {
|
|
const routingRule = "/";
|
|
|
|
expect(isRoutingRuleMatch("/", routingRule)).toBeTruthy();
|
|
expect(isRoutingRuleMatch("/foo", routingRule)).toBeFalsy();
|
|
expect(isRoutingRuleMatch("/foo/", routingRule)).toBeFalsy();
|
|
expect(isRoutingRuleMatch("/foo/bar", routingRule)).toBeFalsy();
|
|
});
|
|
|
|
it("should match include-all rules correctly", () => {
|
|
const routingRule = "/*";
|
|
|
|
expect(isRoutingRuleMatch("/", routingRule)).toBeTruthy();
|
|
expect(isRoutingRuleMatch("/foo", routingRule)).toBeTruthy();
|
|
expect(isRoutingRuleMatch("/foo/", routingRule)).toBeTruthy();
|
|
expect(isRoutingRuleMatch("/foo/bar", routingRule)).toBeTruthy();
|
|
expect(isRoutingRuleMatch("/foo/bar/", routingRule)).toBeTruthy();
|
|
expect(isRoutingRuleMatch("/foo/bar/baz", routingRule)).toBeTruthy();
|
|
expect(isRoutingRuleMatch("/foo/bar/baz/", routingRule)).toBeTruthy();
|
|
});
|
|
|
|
it("should match `/*` suffix-ed rules correctly", () => {
|
|
let routingRule = "/foo/*";
|
|
|
|
expect(isRoutingRuleMatch("/foo", routingRule)).toBeTruthy();
|
|
expect(isRoutingRuleMatch("/foo/", routingRule)).toBeTruthy();
|
|
expect(isRoutingRuleMatch("/foobar", routingRule)).toBeFalsy();
|
|
expect(isRoutingRuleMatch("/foo/bar", routingRule)).toBeTruthy();
|
|
expect(isRoutingRuleMatch("/foo/bar/baz", routingRule)).toBeTruthy();
|
|
expect(isRoutingRuleMatch("/bar/foo", routingRule)).toBeFalsy();
|
|
expect(isRoutingRuleMatch("/bar/foo/baz", routingRule)).toBeFalsy();
|
|
|
|
routingRule = "/foo/bar/*";
|
|
|
|
expect(isRoutingRuleMatch("/foo", routingRule)).toBeFalsy();
|
|
expect(isRoutingRuleMatch("/foo/", routingRule)).toBeFalsy();
|
|
expect(isRoutingRuleMatch("/foo/bar", routingRule)).toBeTruthy();
|
|
expect(isRoutingRuleMatch("/foo/bar/baz", routingRule)).toBeTruthy();
|
|
expect(isRoutingRuleMatch("/foo/barfoo", routingRule)).toBeFalsy();
|
|
expect(isRoutingRuleMatch("baz/foo/bar", routingRule)).toBeFalsy();
|
|
expect(isRoutingRuleMatch("baz/foo/bar/", routingRule)).toBeFalsy();
|
|
});
|
|
|
|
it("should match `/` suffix-ed rules correctly", () => {
|
|
let routingRule = "/foo/";
|
|
expect(isRoutingRuleMatch("/foo/", routingRule)).toBeTruthy();
|
|
expect(isRoutingRuleMatch("/foo", routingRule)).toBeTruthy();
|
|
|
|
routingRule = "/foo/bar/";
|
|
expect(isRoutingRuleMatch("/foo/bar/", routingRule)).toBeTruthy();
|
|
expect(isRoutingRuleMatch("/foo/bar", routingRule)).toBeTruthy();
|
|
});
|
|
|
|
it("should match `*` suffix-ed rules correctly", () => {
|
|
let routingRule = "/foo*";
|
|
expect(isRoutingRuleMatch("/foo", routingRule)).toBeTruthy();
|
|
expect(isRoutingRuleMatch("/foo/", routingRule)).toBeTruthy();
|
|
expect(isRoutingRuleMatch("/foobar", routingRule)).toBeTruthy();
|
|
expect(isRoutingRuleMatch("/barfoo", routingRule)).toBeFalsy();
|
|
expect(isRoutingRuleMatch("/foo/bar", routingRule)).toBeTruthy();
|
|
expect(isRoutingRuleMatch("/bar/foo", routingRule)).toBeFalsy();
|
|
expect(isRoutingRuleMatch("/bar/foobar", routingRule)).toBeFalsy();
|
|
expect(isRoutingRuleMatch("/foo/bar/baz", routingRule)).toBeTruthy();
|
|
expect(isRoutingRuleMatch("/bar/foo/baz", routingRule)).toBeFalsy();
|
|
|
|
routingRule = "/foo/bar*";
|
|
expect(isRoutingRuleMatch("/foo/bar", routingRule)).toBeTruthy();
|
|
expect(isRoutingRuleMatch("/foo/bar/", routingRule)).toBeTruthy();
|
|
expect(isRoutingRuleMatch("/foo/barfoo", routingRule)).toBeTruthy();
|
|
expect(isRoutingRuleMatch("/bar/foo/barfoo", routingRule)).toBeFalsy();
|
|
expect(isRoutingRuleMatch("/foo/bar/baz", routingRule)).toBeTruthy();
|
|
expect(isRoutingRuleMatch("/bar/foo/bar/baz", routingRule)).toBeFalsy();
|
|
});
|
|
|
|
it("should match rules without wildcards correctly", () => {
|
|
let routingRule = "/foo";
|
|
|
|
expect(isRoutingRuleMatch("/foo", routingRule)).toBeTruthy();
|
|
expect(isRoutingRuleMatch("/foo/", routingRule)).toBeTruthy();
|
|
expect(isRoutingRuleMatch("/foo/bar", routingRule)).toBeFalsy();
|
|
expect(isRoutingRuleMatch("/bar/foo", routingRule)).toBeFalsy();
|
|
|
|
routingRule = "/foo/bar";
|
|
expect(isRoutingRuleMatch("/foo/bar", routingRule)).toBeTruthy();
|
|
expect(isRoutingRuleMatch("/foo/bar/", routingRule)).toBeTruthy();
|
|
expect(isRoutingRuleMatch("/foo/bar/baz", routingRule)).toBeFalsy();
|
|
expect(isRoutingRuleMatch("/baz/foo/bar", routingRule)).toBeFalsy();
|
|
});
|
|
|
|
it("should throw an error if pathname or routing rule params are missing", () => {
|
|
// MISSING PATHNAME
|
|
expect(() =>
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
// @ts-ignore: sanity check
|
|
isRoutingRuleMatch(undefined, "/*")
|
|
).toThrow("Pathname is undefined.");
|
|
|
|
expect(() =>
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
// @ts-ignore: sanity check
|
|
isRoutingRuleMatch(null, "/*")
|
|
).toThrow("Pathname is undefined.");
|
|
|
|
expect(() => isRoutingRuleMatch("", "/*")).toThrow(
|
|
"Pathname is undefined."
|
|
);
|
|
|
|
// MISSING ROUTING RULE
|
|
expect(() =>
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
// @ts-ignore: sanity check
|
|
isRoutingRuleMatch("/foo", undefined)
|
|
).toThrow("Routing rule is undefined.");
|
|
|
|
expect(() =>
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
// @ts-ignore: sanity check
|
|
isRoutingRuleMatch("/foo", null)
|
|
).toThrow("Routing rule is undefined.");
|
|
|
|
expect(() => isRoutingRuleMatch("/foo", "")).toThrow(
|
|
"Routing rule is undefined."
|
|
);
|
|
});
|
|
});
|