mirror of
https://github.com/JonasunderscoreJones/api.jonasjones.dev.git
synced 2025-10-23 20:19:19 +02:00
Initial commit (by create-cloudflare CLI)
This commit is contained in:
commit
58a42872a0
1745 changed files with 741893 additions and 0 deletions
128
node_modules/wrangler/templates/__tests__/pages-dev-util.test.ts
generated
vendored
Normal file
128
node_modules/wrangler/templates/__tests__/pages-dev-util.test.ts
generated
vendored
Normal 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."
|
||||
);
|
||||
});
|
||||
});
|
12
node_modules/wrangler/templates/__tests__/tsconfig-sanity.ts
generated
vendored
Normal file
12
node_modules/wrangler/templates/__tests__/tsconfig-sanity.ts
generated
vendored
Normal 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 {};
|
8
node_modules/wrangler/templates/__tests__/tsconfig.json
generated
vendored
Normal file
8
node_modules/wrangler/templates/__tests__/tsconfig.json
generated
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"extends": "@cloudflare/workers-tsconfig/tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"types": ["node", "jest"]
|
||||
},
|
||||
"include": ["**/*.ts"],
|
||||
"exclude": []
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue