Initial commit (by create-cloudflare CLI)

This commit is contained in:
J-onasJones 2023-09-14 18:58:13 +02:00
commit 58a42872a0
1745 changed files with 741893 additions and 0 deletions

View file

@ -0,0 +1,128 @@
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."
);
});
});

View file

@ -0,0 +1,12 @@
// `@types/node` should be included
Buffer.from("test");
// `@types/jest` should be included
test("test");
// @ts-expect-error `@cloudflare/workers-types` should NOT be included
const _handler: ExportedHandler = {};
// @ts-expect-error `@cloudflare/workers-types` should NOT be included
new HTMLRewriter();
export {};

View file

@ -0,0 +1,8 @@
{
"extends": "@cloudflare/workers-tsconfig/tsconfig.json",
"compilerOptions": {
"types": ["node", "jest"]
},
"include": ["**/*.ts"],
"exclude": []
}