wrangler 2.0.12 → 2.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -1
- package/bin/wrangler.js +111 -57
- package/miniflare-dist/index.mjs +9 -2
- package/package.json +156 -154
- package/src/__tests__/config-cache-without-cache-dir.test.ts +38 -0
- package/src/__tests__/config-cache.test.ts +30 -24
- package/src/__tests__/configuration.test.ts +3935 -3476
- package/src/__tests__/dev.test.tsx +1128 -979
- package/src/__tests__/guess-worker-format.test.ts +68 -68
- package/src/__tests__/helpers/cmd-shim.d.ts +6 -6
- package/src/__tests__/helpers/faye-websocket.d.ts +4 -4
- package/src/__tests__/helpers/mock-account-id.ts +24 -24
- package/src/__tests__/helpers/mock-bin.ts +20 -20
- package/src/__tests__/helpers/mock-cfetch.ts +92 -92
- package/src/__tests__/helpers/mock-console.ts +49 -39
- package/src/__tests__/helpers/mock-dialogs.ts +94 -71
- package/src/__tests__/helpers/mock-http-server.ts +30 -30
- package/src/__tests__/helpers/mock-istty.ts +65 -18
- package/src/__tests__/helpers/mock-kv.ts +26 -26
- package/src/__tests__/helpers/mock-oauth-flow.ts +223 -228
- package/src/__tests__/helpers/mock-process.ts +39 -0
- package/src/__tests__/helpers/mock-stdin.ts +82 -77
- package/src/__tests__/helpers/mock-web-socket.ts +21 -21
- package/src/__tests__/helpers/run-in-tmp.ts +27 -27
- package/src/__tests__/helpers/run-wrangler.ts +8 -8
- package/src/__tests__/helpers/write-worker-source.ts +16 -16
- package/src/__tests__/helpers/write-wrangler-toml.ts +9 -9
- package/src/__tests__/https-options.test.ts +104 -104
- package/src/__tests__/index.test.ts +239 -234
- package/src/__tests__/init.test.ts +1605 -1250
- package/src/__tests__/jest.setup.ts +63 -33
- package/src/__tests__/kv.test.ts +1128 -1011
- package/src/__tests__/logger.test.ts +100 -74
- package/src/__tests__/package-manager.test.ts +303 -303
- package/src/__tests__/pages.test.ts +1152 -652
- package/src/__tests__/parse.test.ts +252 -252
- package/src/__tests__/publish.test.ts +6371 -5622
- package/src/__tests__/pubsub.test.ts +367 -0
- package/src/__tests__/r2.test.ts +133 -133
- package/src/__tests__/route.test.ts +18 -18
- package/src/__tests__/secret.test.ts +382 -377
- package/src/__tests__/tail.test.ts +530 -530
- package/src/__tests__/user.test.ts +123 -111
- package/src/__tests__/whoami.test.tsx +198 -117
- package/src/__tests__/worker-namespace.test.ts +327 -0
- package/src/abort.d.ts +1 -1
- package/src/api/dev.ts +49 -0
- package/src/api/index.ts +1 -0
- package/src/bundle-reporter.tsx +29 -0
- package/src/bundle.ts +157 -149
- package/src/cfetch/index.ts +80 -80
- package/src/cfetch/internal.ts +90 -83
- package/src/cli.ts +21 -7
- package/src/config/config.ts +204 -195
- package/src/config/diagnostics.ts +61 -61
- package/src/config/environment.ts +390 -357
- package/src/config/index.ts +206 -193
- package/src/config/validation-helpers.ts +366 -366
- package/src/config/validation.ts +1573 -1376
- package/src/config-cache.ts +79 -41
- package/src/create-worker-preview.ts +206 -136
- package/src/create-worker-upload-form.ts +247 -238
- package/src/dev/dev-vars.ts +13 -13
- package/src/dev/dev.tsx +329 -307
- package/src/dev/local.tsx +304 -275
- package/src/dev/remote.tsx +366 -224
- package/src/dev/use-esbuild.ts +126 -91
- package/src/dev.tsx +538 -0
- package/src/dialogs.tsx +97 -97
- package/src/durable.ts +87 -87
- package/src/entry.ts +234 -228
- package/src/environment-variables.ts +23 -23
- package/src/errors.ts +6 -6
- package/src/generate.ts +33 -0
- package/src/git-client.ts +42 -0
- package/src/https-options.ts +79 -79
- package/src/index.tsx +1775 -2763
- package/src/init.ts +549 -0
- package/src/inspect.ts +593 -593
- package/src/intl-polyfill.d.ts +123 -123
- package/src/is-interactive.ts +12 -0
- package/src/kv.ts +277 -277
- package/src/logger.ts +46 -39
- package/src/miniflare-cli/enum-keys.ts +8 -8
- package/src/miniflare-cli/index.ts +42 -31
- package/src/miniflare-cli/request-context.ts +18 -18
- package/src/module-collection.ts +212 -212
- package/src/open-in-browser.ts +4 -6
- package/src/package-manager.ts +123 -123
- package/src/pages/build.tsx +202 -0
- package/src/pages/constants.ts +7 -0
- package/src/pages/deployments.tsx +101 -0
- package/src/pages/dev.tsx +964 -0
- package/src/pages/functions/buildPlugin.ts +105 -0
- package/src/pages/functions/buildWorker.ts +151 -0
- package/{pages → src/pages}/functions/filepath-routing.test.ts +113 -113
- package/src/pages/functions/filepath-routing.ts +189 -0
- package/src/pages/functions/identifiers.ts +78 -0
- package/src/pages/functions/routes.ts +151 -0
- package/src/pages/index.tsx +84 -0
- package/src/pages/projects.tsx +157 -0
- package/src/pages/publish.tsx +335 -0
- package/src/pages/types.ts +40 -0
- package/src/pages/upload.tsx +384 -0
- package/src/pages/utils.ts +12 -0
- package/src/parse.ts +202 -138
- package/src/paths.ts +6 -6
- package/src/preview.ts +31 -0
- package/src/proxy.ts +400 -402
- package/src/publish.ts +667 -621
- package/src/pubsub/index.ts +286 -0
- package/src/pubsub/pubsub-commands.tsx +577 -0
- package/src/r2.ts +19 -19
- package/src/selfsigned.d.ts +23 -23
- package/src/sites.tsx +271 -225
- package/src/tail/filters.ts +108 -108
- package/src/tail/index.ts +217 -217
- package/src/tail/printing.ts +45 -45
- package/src/update-check.ts +11 -11
- package/src/user/choose-account.tsx +60 -0
- package/src/user/env-vars.ts +46 -0
- package/src/user/generate-auth-url.ts +33 -0
- package/src/user/generate-random-state.ts +16 -0
- package/src/user/index.ts +3 -0
- package/src/user/user.tsx +1161 -0
- package/src/whoami.tsx +61 -42
- package/src/worker-namespace.ts +190 -0
- package/src/worker.ts +110 -100
- package/src/zones.ts +39 -36
- package/templates/checked-fetch.js +17 -0
- package/templates/new-worker-scheduled.js +3 -3
- package/templates/new-worker-scheduled.ts +15 -15
- package/templates/new-worker.js +3 -3
- package/templates/new-worker.ts +15 -15
- package/templates/no-op-worker.js +10 -0
- package/templates/pages-template-plugin.ts +155 -0
- package/templates/pages-template-worker.ts +161 -0
- package/templates/static-asset-facade.js +31 -31
- package/templates/tsconfig.json +95 -95
- package/wrangler-dist/cli.js +55383 -54138
- package/pages/functions/buildPlugin.ts +0 -105
- package/pages/functions/buildWorker.ts +0 -151
- package/pages/functions/filepath-routing.ts +0 -189
- package/pages/functions/identifiers.ts +0 -78
- package/pages/functions/routes.ts +0 -156
- package/pages/functions/template-plugin.ts +0 -147
- package/pages/functions/template-worker.ts +0 -143
- package/src/pages.tsx +0 -2093
- package/src/user.tsx +0 -1214
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import { access, lstat } from "node:fs/promises";
|
|
2
|
+
import { dirname, relative, resolve } from "node:path";
|
|
3
|
+
import NodeGlobalsPolyfills from "@esbuild-plugins/node-globals-polyfill";
|
|
4
|
+
import NodeModulesPolyfills from "@esbuild-plugins/node-modules-polyfill";
|
|
5
|
+
import { build } from "esbuild";
|
|
6
|
+
|
|
7
|
+
type Options = {
|
|
8
|
+
routesModule: string;
|
|
9
|
+
outfile: string;
|
|
10
|
+
minify?: boolean;
|
|
11
|
+
sourcemap?: boolean;
|
|
12
|
+
watch?: boolean;
|
|
13
|
+
nodeCompat?: boolean;
|
|
14
|
+
onEnd?: () => void;
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
export function buildPlugin({
|
|
18
|
+
routesModule,
|
|
19
|
+
outfile = "bundle.js",
|
|
20
|
+
minify = false,
|
|
21
|
+
sourcemap = false,
|
|
22
|
+
watch = false,
|
|
23
|
+
nodeCompat,
|
|
24
|
+
onEnd = () => {},
|
|
25
|
+
}: Options) {
|
|
26
|
+
return build({
|
|
27
|
+
entryPoints: [resolve(__dirname, "../templates/pages-template-plugin.ts")],
|
|
28
|
+
inject: [routesModule],
|
|
29
|
+
bundle: true,
|
|
30
|
+
format: "esm",
|
|
31
|
+
target: "esnext",
|
|
32
|
+
outfile,
|
|
33
|
+
minify,
|
|
34
|
+
sourcemap,
|
|
35
|
+
watch,
|
|
36
|
+
allowOverwrite: true,
|
|
37
|
+
define: { ...(nodeCompat ? { global: "globalThis" } : {}) },
|
|
38
|
+
plugins: [
|
|
39
|
+
{
|
|
40
|
+
name: "wrangler notifier and monitor",
|
|
41
|
+
setup(pluginBuild) {
|
|
42
|
+
pluginBuild.onEnd((result) => {
|
|
43
|
+
if (result.errors.length > 0) {
|
|
44
|
+
console.error(
|
|
45
|
+
`${result.errors.length} error(s) and ${result.warnings.length} warning(s) when compiling Worker.`
|
|
46
|
+
);
|
|
47
|
+
} else if (result.warnings.length > 0) {
|
|
48
|
+
console.warn(
|
|
49
|
+
`${result.warnings.length} warning(s) when compiling Worker.`
|
|
50
|
+
);
|
|
51
|
+
onEnd();
|
|
52
|
+
} else {
|
|
53
|
+
console.log("Compiled Worker successfully.");
|
|
54
|
+
onEnd();
|
|
55
|
+
}
|
|
56
|
+
});
|
|
57
|
+
},
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
name: "Assets",
|
|
61
|
+
setup(pluginBuild) {
|
|
62
|
+
if (pluginBuild.initialOptions.outfile) {
|
|
63
|
+
const outdir = dirname(pluginBuild.initialOptions.outfile);
|
|
64
|
+
|
|
65
|
+
pluginBuild.onResolve({ filter: /^assets:/ }, async (args) => {
|
|
66
|
+
const directory = resolve(
|
|
67
|
+
args.resolveDir,
|
|
68
|
+
args.path.slice("assets:".length)
|
|
69
|
+
);
|
|
70
|
+
|
|
71
|
+
const exists = await access(directory)
|
|
72
|
+
.then(() => true)
|
|
73
|
+
.catch(() => false);
|
|
74
|
+
|
|
75
|
+
const isDirectory =
|
|
76
|
+
exists && (await lstat(directory)).isDirectory();
|
|
77
|
+
|
|
78
|
+
if (!isDirectory) {
|
|
79
|
+
return {
|
|
80
|
+
errors: [
|
|
81
|
+
{
|
|
82
|
+
text: `'${directory}' does not exist or is not a directory.`,
|
|
83
|
+
},
|
|
84
|
+
],
|
|
85
|
+
};
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
const path = `assets:./${relative(outdir, directory)}`;
|
|
89
|
+
|
|
90
|
+
return { path, external: true, namespace: "assets" };
|
|
91
|
+
});
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
},
|
|
95
|
+
...(nodeCompat
|
|
96
|
+
? [
|
|
97
|
+
NodeGlobalsPolyfills({
|
|
98
|
+
buffer: true,
|
|
99
|
+
}),
|
|
100
|
+
NodeModulesPolyfills(),
|
|
101
|
+
]
|
|
102
|
+
: []),
|
|
103
|
+
],
|
|
104
|
+
});
|
|
105
|
+
}
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
import { access, cp, lstat, rm } from "node:fs/promises";
|
|
2
|
+
import { join, resolve } from "node:path";
|
|
3
|
+
import NodeGlobalsPolyfills from "@esbuild-plugins/node-globals-polyfill";
|
|
4
|
+
import NodeModulesPolyfills from "@esbuild-plugins/node-modules-polyfill";
|
|
5
|
+
import { build } from "esbuild";
|
|
6
|
+
import { nanoid } from "nanoid";
|
|
7
|
+
|
|
8
|
+
type Options = {
|
|
9
|
+
routesModule: string;
|
|
10
|
+
outfile: string;
|
|
11
|
+
minify?: boolean;
|
|
12
|
+
sourcemap?: boolean;
|
|
13
|
+
fallbackService?: string;
|
|
14
|
+
watch?: boolean;
|
|
15
|
+
onEnd?: () => void;
|
|
16
|
+
buildOutputDirectory?: string;
|
|
17
|
+
nodeCompat?: boolean;
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
export function buildWorker({
|
|
21
|
+
routesModule,
|
|
22
|
+
outfile = "bundle.js",
|
|
23
|
+
minify = false,
|
|
24
|
+
sourcemap = false,
|
|
25
|
+
fallbackService = "ASSETS",
|
|
26
|
+
watch = false,
|
|
27
|
+
onEnd = () => {},
|
|
28
|
+
buildOutputDirectory,
|
|
29
|
+
nodeCompat,
|
|
30
|
+
}: Options) {
|
|
31
|
+
return build({
|
|
32
|
+
entryPoints: [resolve(__dirname, "../templates/pages-template-worker.ts")],
|
|
33
|
+
inject: [routesModule],
|
|
34
|
+
bundle: true,
|
|
35
|
+
format: "esm",
|
|
36
|
+
target: "esnext",
|
|
37
|
+
outfile,
|
|
38
|
+
minify,
|
|
39
|
+
sourcemap,
|
|
40
|
+
watch,
|
|
41
|
+
allowOverwrite: true,
|
|
42
|
+
define: {
|
|
43
|
+
__FALLBACK_SERVICE__: JSON.stringify(fallbackService),
|
|
44
|
+
...(nodeCompat ? { global: "globalThis" } : {}),
|
|
45
|
+
},
|
|
46
|
+
plugins: [
|
|
47
|
+
{
|
|
48
|
+
name: "wrangler notifier and monitor",
|
|
49
|
+
setup(pluginBuild) {
|
|
50
|
+
pluginBuild.onEnd((result) => {
|
|
51
|
+
if (result.errors.length > 0) {
|
|
52
|
+
console.error(
|
|
53
|
+
`${result.errors.length} error(s) and ${result.warnings.length} warning(s) when compiling Worker.`
|
|
54
|
+
);
|
|
55
|
+
} else if (result.warnings.length > 0) {
|
|
56
|
+
console.warn(
|
|
57
|
+
`${result.warnings.length} warning(s) when compiling Worker.`
|
|
58
|
+
);
|
|
59
|
+
onEnd();
|
|
60
|
+
} else {
|
|
61
|
+
console.log("Compiled Worker successfully.");
|
|
62
|
+
onEnd();
|
|
63
|
+
}
|
|
64
|
+
});
|
|
65
|
+
},
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
name: "Assets",
|
|
69
|
+
setup(pluginBuild) {
|
|
70
|
+
const identifiers = new Map<string, string>();
|
|
71
|
+
|
|
72
|
+
pluginBuild.onResolve({ filter: /^assets:/ }, async (args) => {
|
|
73
|
+
const directory = resolve(
|
|
74
|
+
args.resolveDir,
|
|
75
|
+
args.path.slice("assets:".length)
|
|
76
|
+
);
|
|
77
|
+
|
|
78
|
+
const exists = await access(directory)
|
|
79
|
+
.then(() => true)
|
|
80
|
+
.catch(() => false);
|
|
81
|
+
|
|
82
|
+
const isDirectory =
|
|
83
|
+
exists && (await lstat(directory)).isDirectory();
|
|
84
|
+
|
|
85
|
+
if (!isDirectory) {
|
|
86
|
+
return {
|
|
87
|
+
errors: [
|
|
88
|
+
{
|
|
89
|
+
text: `'${directory}' does not exist or is not a directory.`,
|
|
90
|
+
},
|
|
91
|
+
],
|
|
92
|
+
};
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
// TODO: Consider hashing the contents rather than using a unique identifier every time?
|
|
96
|
+
identifiers.set(directory, nanoid());
|
|
97
|
+
if (!buildOutputDirectory) {
|
|
98
|
+
console.warn(
|
|
99
|
+
"You're attempting to import static assets as part of your Pages Functions, but have not specified a directory in which to put them. You must use 'wrangler pages dev <directory>' rather than 'wrangler pages dev -- <command>' to import static assets in Functions."
|
|
100
|
+
);
|
|
101
|
+
}
|
|
102
|
+
return { path: directory, namespace: "assets" };
|
|
103
|
+
});
|
|
104
|
+
|
|
105
|
+
pluginBuild.onLoad(
|
|
106
|
+
{ filter: /.*/, namespace: "assets" },
|
|
107
|
+
async (args) => {
|
|
108
|
+
const identifier = identifiers.get(args.path);
|
|
109
|
+
|
|
110
|
+
if (buildOutputDirectory) {
|
|
111
|
+
const staticAssetsOutputDirectory = join(
|
|
112
|
+
buildOutputDirectory,
|
|
113
|
+
"cdn-cgi",
|
|
114
|
+
"pages-plugins",
|
|
115
|
+
identifier as string
|
|
116
|
+
);
|
|
117
|
+
await rm(staticAssetsOutputDirectory, {
|
|
118
|
+
force: true,
|
|
119
|
+
recursive: true,
|
|
120
|
+
});
|
|
121
|
+
await cp(args.path, staticAssetsOutputDirectory, {
|
|
122
|
+
force: true,
|
|
123
|
+
recursive: true,
|
|
124
|
+
});
|
|
125
|
+
|
|
126
|
+
return {
|
|
127
|
+
// TODO: Watch args.path for changes and re-copy when updated
|
|
128
|
+
contents: `export const onRequest = ({ request, env, functionPath }) => {
|
|
129
|
+
const url = new URL(request.url)
|
|
130
|
+
const relativePathname = \`/\${url.pathname.split(functionPath)[1] || ''}\`.replace(/^\\/\\//, '/');
|
|
131
|
+
url.pathname = '/cdn-cgi/pages-plugins/${identifier}' + relativePathname
|
|
132
|
+
request = new Request(url.toString(), request)
|
|
133
|
+
return env.ASSETS.fetch(request)
|
|
134
|
+
}`,
|
|
135
|
+
};
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
);
|
|
139
|
+
},
|
|
140
|
+
},
|
|
141
|
+
...(nodeCompat
|
|
142
|
+
? [
|
|
143
|
+
NodeGlobalsPolyfills({
|
|
144
|
+
buffer: true,
|
|
145
|
+
}),
|
|
146
|
+
NodeModulesPolyfills(),
|
|
147
|
+
]
|
|
148
|
+
: []),
|
|
149
|
+
],
|
|
150
|
+
});
|
|
151
|
+
}
|
|
@@ -1,141 +1,141 @@
|
|
|
1
1
|
import { writeFileSync, mkdirSync } from "fs";
|
|
2
|
-
import { runInTempDir } from "../../
|
|
3
|
-
import { toUrlPath } from "../../
|
|
2
|
+
import { runInTempDir } from "../../__tests__/helpers/run-in-tmp";
|
|
3
|
+
import { toUrlPath } from "../../paths";
|
|
4
4
|
import { compareRoutes, generateConfigFromFileTree } from "./filepath-routing";
|
|
5
|
-
import type { UrlPath } from "../../
|
|
5
|
+
import type { UrlPath } from "../../paths";
|
|
6
6
|
import type { HTTPMethod, RouteConfig } from "./routes";
|
|
7
7
|
|
|
8
8
|
describe("filepath-routing", () => {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
9
|
+
describe("compareRoutes()", () => {
|
|
10
|
+
test("routes / last", () => {
|
|
11
|
+
expect(
|
|
12
|
+
compareRoutes(routeConfig("/"), routeConfig("/foo"))
|
|
13
|
+
).toBeGreaterThanOrEqual(1);
|
|
14
|
+
expect(
|
|
15
|
+
compareRoutes(routeConfig("/"), routeConfig("/:foo"))
|
|
16
|
+
).toBeGreaterThanOrEqual(1);
|
|
17
|
+
expect(
|
|
18
|
+
compareRoutes(routeConfig("/"), routeConfig("/:foo*"))
|
|
19
|
+
).toBeGreaterThanOrEqual(1);
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
test("routes with fewer segments come after those with more segments", () => {
|
|
23
|
+
expect(
|
|
24
|
+
compareRoutes(routeConfig("/foo"), routeConfig("/foo/bar"))
|
|
25
|
+
).toBeGreaterThanOrEqual(1);
|
|
26
|
+
expect(
|
|
27
|
+
compareRoutes(routeConfig("/foo"), routeConfig("/foo/bar/cat"))
|
|
28
|
+
).toBeGreaterThanOrEqual(1);
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
test("routes with wildcard segments come after those without", () => {
|
|
32
|
+
expect(compareRoutes(routeConfig("/:foo*"), routeConfig("/foo"))).toBe(1);
|
|
33
|
+
expect(compareRoutes(routeConfig("/:foo*"), routeConfig("/:foo"))).toBe(
|
|
34
|
+
1
|
|
35
|
+
);
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
test("routes with dynamic segments come after those without", () => {
|
|
39
|
+
expect(compareRoutes(routeConfig("/:foo"), routeConfig("/foo"))).toBe(1);
|
|
40
|
+
});
|
|
41
|
+
|
|
42
|
+
test("routes with dynamic segments occurring earlier come after those with dynamic segments in later positions", () => {
|
|
43
|
+
expect(
|
|
44
|
+
compareRoutes(routeConfig("/foo/:id/bar"), routeConfig("/foo/bar/:id"))
|
|
45
|
+
).toBe(1);
|
|
46
|
+
});
|
|
47
|
+
|
|
48
|
+
test("routes with no HTTP method come after those specifying a method", () => {
|
|
49
|
+
expect(
|
|
50
|
+
compareRoutes(routeConfig("/foo"), routeConfig("/foo", "GET"))
|
|
51
|
+
).toBe(1);
|
|
52
|
+
});
|
|
53
|
+
|
|
54
|
+
test("two equal routes are sorted according to their original position in the list", () => {
|
|
55
|
+
expect(
|
|
56
|
+
compareRoutes(routeConfig("/foo", "GET"), routeConfig("/foo", "GET"))
|
|
57
|
+
).toBe(0);
|
|
58
|
+
});
|
|
59
|
+
|
|
60
|
+
test("it returns -1 if the first argument should appear first in the list", () => {
|
|
61
|
+
expect(
|
|
62
|
+
compareRoutes(routeConfig("/foo", "GET"), routeConfig("/foo"))
|
|
63
|
+
).toBe(-1);
|
|
64
|
+
});
|
|
65
|
+
});
|
|
66
|
+
|
|
67
|
+
describe("generateConfigFromFileTree", () => {
|
|
68
|
+
runInTempDir();
|
|
69
|
+
|
|
70
|
+
it("should generate a route entry for each file in the tree", async () => {
|
|
71
|
+
writeFileSync(
|
|
72
|
+
"foo.ts",
|
|
73
|
+
`
|
|
74
74
|
export function onRequestGet() {}
|
|
75
75
|
export function onRequestPost() {}
|
|
76
76
|
`
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
77
|
+
);
|
|
78
|
+
writeFileSync(
|
|
79
|
+
"bar.ts",
|
|
80
|
+
`
|
|
81
81
|
export function onRequestPut() {}
|
|
82
82
|
export function onRequestDelete() {}
|
|
83
83
|
`
|
|
84
|
-
|
|
84
|
+
);
|
|
85
85
|
|
|
86
|
-
|
|
86
|
+
mkdirSync("todos");
|
|
87
87
|
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
88
|
+
writeFileSync(
|
|
89
|
+
"todos/[id].ts",
|
|
90
|
+
`
|
|
91
91
|
export function onRequestPost() {}
|
|
92
92
|
export function onRequestDelete() {}
|
|
93
93
|
`
|
|
94
|
-
|
|
94
|
+
);
|
|
95
95
|
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
96
|
+
mkdirSync("authors");
|
|
97
|
+
mkdirSync("authors/[authorId]");
|
|
98
|
+
mkdirSync("authors/[authorId]/todos");
|
|
99
99
|
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
100
|
+
writeFileSync(
|
|
101
|
+
"authors/[authorId]/todos/[todoId].ts",
|
|
102
|
+
`
|
|
103
103
|
export function onRequestPost() {}
|
|
104
104
|
`
|
|
105
|
-
|
|
105
|
+
);
|
|
106
106
|
|
|
107
|
-
|
|
107
|
+
mkdirSync("books");
|
|
108
108
|
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
109
|
+
writeFileSync(
|
|
110
|
+
"books/[[title]].ts",
|
|
111
|
+
`
|
|
112
112
|
export function onRequestPost() {}
|
|
113
113
|
`
|
|
114
|
-
|
|
114
|
+
);
|
|
115
115
|
|
|
116
|
-
|
|
117
|
-
|
|
116
|
+
mkdirSync("cats");
|
|
117
|
+
mkdirSync("cats/[[breed]]");
|
|
118
118
|
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
119
|
+
writeFileSync(
|
|
120
|
+
"cats/[[breed]]/blah.ts",
|
|
121
|
+
`
|
|
122
122
|
export function onRequestPost() {}
|
|
123
123
|
`
|
|
124
|
-
|
|
124
|
+
);
|
|
125
125
|
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
126
|
+
// This won't actually work at runtime.
|
|
127
|
+
writeFileSync(
|
|
128
|
+
"cats/[[breed]]/[[name]].ts",
|
|
129
|
+
`
|
|
130
130
|
export function onRequestPost() {}
|
|
131
131
|
`
|
|
132
|
-
|
|
132
|
+
);
|
|
133
133
|
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
134
|
+
const entries = await generateConfigFromFileTree({
|
|
135
|
+
baseDir: ".",
|
|
136
|
+
baseURL: "/base" as UrlPath,
|
|
137
|
+
});
|
|
138
|
+
expect(entries).toMatchInlineSnapshot(`
|
|
139
139
|
Object {
|
|
140
140
|
"routes": Array [
|
|
141
141
|
Object {
|
|
@@ -221,14 +221,14 @@ describe("filepath-routing", () => {
|
|
|
221
221
|
],
|
|
222
222
|
}
|
|
223
223
|
`);
|
|
224
|
-
|
|
225
|
-
|
|
224
|
+
});
|
|
225
|
+
});
|
|
226
226
|
});
|
|
227
227
|
|
|
228
228
|
function routeConfig(routePath: string, method?: string): RouteConfig {
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
229
|
+
return {
|
|
230
|
+
routePath: toUrlPath(routePath),
|
|
231
|
+
mountPath: toUrlPath("/"),
|
|
232
|
+
method: method as HTTPMethod,
|
|
233
|
+
};
|
|
234
234
|
}
|