wrangler 2.9.1 → 2.10.0
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 +3 -3
- package/miniflare-dist/index.mjs +1 -1
- package/package.json +8 -8
- package/src/__tests__/configuration.test.ts +70 -0
- package/src/__tests__/d1/d1.test.ts +2 -2
- package/src/__tests__/d1/execute.test.ts +64 -0
- package/src/__tests__/d1/migrate.test.ts +14 -0
- package/src/__tests__/deployments.test.ts +40 -16
- package/src/__tests__/dev.test.tsx +3 -3
- package/src/__tests__/helpers/msw/handlers/deployments.ts +40 -16
- package/src/__tests__/helpers/string-dynamic-values-matcher.ts +28 -0
- package/src/__tests__/index.test.ts +2 -0
- package/src/__tests__/kv.test.ts +8 -8
- package/src/__tests__/middleware.test.ts +65 -0
- package/src/__tests__/mtls-certificates.test.ts +585 -0
- package/src/__tests__/pages/functions-build.test.ts +402 -0
- package/src/__tests__/pages/pages.test.ts +7 -7
- package/src/__tests__/pages/publish.test.ts +525 -1
- package/src/__tests__/publish.test.ts +58 -27
- package/src/__tests__/queues.test.ts +2 -2
- package/src/__tests__/secret.test.ts +4 -4
- package/src/__tests__/tsconfig.tsbuildinfo +1 -1
- package/src/__tests__/user.test.ts +1 -1
- package/src/__tests__/whoami.test.tsx +1 -1
- package/src/api/index.ts +8 -0
- package/src/api/mtls-certificate.ts +148 -0
- package/src/api/pages/create-worker-bundle-contents.ts +75 -0
- package/src/api/pages/publish.tsx +52 -8
- package/src/bundle.ts +6 -5
- package/src/config/config.ts +7 -7
- package/src/config/environment.ts +9 -2
- package/src/config/index.ts +13 -0
- package/src/config/validation.ts +50 -3
- package/src/create-worker-upload-form.ts +9 -0
- package/src/d1/execute.tsx +123 -90
- package/src/d1/migrations/apply.tsx +29 -24
- package/src/d1/migrations/create.tsx +7 -7
- package/src/d1/migrations/helpers.ts +63 -38
- package/src/d1/migrations/list.tsx +19 -16
- package/src/d1/migrations/options.ts +6 -1
- package/src/d1/types.ts +1 -0
- package/src/d1/utils.ts +2 -1
- package/src/deployments.ts +62 -39
- package/src/dev/dev.tsx +1 -15
- package/src/dev/remote.tsx +2 -2
- package/src/dev.tsx +9 -6
- package/src/generate/index.ts +1 -1
- package/src/index.ts +15 -5
- package/src/miniflare-cli/assets.ts +1 -1
- package/src/miniflare-cli/tsconfig.tsbuildinfo +1 -1
- package/src/mtls-certificate/cli.ts +155 -0
- package/src/pages/build.ts +103 -23
- package/src/pages/buildFunctions.ts +32 -31
- package/src/pages/dev.ts +4 -2
- package/src/pages/functions/tsconfig.tsbuildinfo +1 -1
- package/src/pages/publish.tsx +12 -1
- package/src/pages/utils.ts +1 -1
- package/src/publish/publish.ts +3 -2
- package/src/secret/index.ts +1 -0
- package/src/sites.ts +1 -1
- package/src/tail/filters.ts +1 -1
- package/src/user/user.ts +4 -3
- package/src/worker.ts +6 -0
- package/templates/format-dev-errors.ts +1 -0
- package/templates/new-worker.ts +3 -0
- package/templates/serve-static-assets.ts +1 -0
- package/templates/service-bindings-module-facade.js +1 -0
- package/templates/tsconfig.tsbuildinfo +1 -1
- package/wrangler-dist/cli.d.ts +82 -2
- package/wrangler-dist/cli.js +1501 -1031
|
@@ -0,0 +1,402 @@
|
|
|
1
|
+
import { existsSync, mkdirSync, readFileSync, writeFileSync } from "node:fs";
|
|
2
|
+
import { endEventLoop } from "../helpers/end-event-loop";
|
|
3
|
+
import { mockConsoleMethods } from "../helpers/mock-console";
|
|
4
|
+
import { runInTempDir } from "../helpers/run-in-tmp";
|
|
5
|
+
import { runWrangler } from "../helpers/run-wrangler";
|
|
6
|
+
import { replaceRandomWithConstantData } from "../helpers/string-dynamic-values-matcher";
|
|
7
|
+
|
|
8
|
+
describe("functions build", () => {
|
|
9
|
+
const std = mockConsoleMethods();
|
|
10
|
+
|
|
11
|
+
runInTempDir();
|
|
12
|
+
|
|
13
|
+
afterEach(async () => {
|
|
14
|
+
// Force a tick to ensure that all promises resolve
|
|
15
|
+
await endEventLoop();
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
it("should throw an error if no worker script and no Functions directory was found", async () => {
|
|
19
|
+
await expect(runWrangler("pages functions build")).rejects.toThrowError();
|
|
20
|
+
expect(std.err).toContain("Could not find anything to build.");
|
|
21
|
+
});
|
|
22
|
+
|
|
23
|
+
it("should build functions", async () => {
|
|
24
|
+
/* ---------------------------- */
|
|
25
|
+
/* Set up Functions */
|
|
26
|
+
/* ---------------------------- */
|
|
27
|
+
mkdirSync("functions");
|
|
28
|
+
writeFileSync(
|
|
29
|
+
"functions/hello.js",
|
|
30
|
+
`
|
|
31
|
+
export async function onRequest() {
|
|
32
|
+
return new Response("Hello from Pages Functions");
|
|
33
|
+
}
|
|
34
|
+
`
|
|
35
|
+
);
|
|
36
|
+
|
|
37
|
+
/* --------------------------------- */
|
|
38
|
+
/* Run cmd & make assertions */
|
|
39
|
+
/* --------------------------------- */
|
|
40
|
+
await runWrangler(`pages functions build`);
|
|
41
|
+
|
|
42
|
+
expect(existsSync("_worker.js")).toBe(true);
|
|
43
|
+
expect(std.out).toMatchInlineSnapshot(`
|
|
44
|
+
"🚧 'wrangler pages <command>' is a beta command. Please report any issues to https://github.com/cloudflare/workers-sdk/issues/new/choose
|
|
45
|
+
✨ Compiled Worker successfully"
|
|
46
|
+
`);
|
|
47
|
+
expect(std.err).toMatchInlineSnapshot(`""`);
|
|
48
|
+
});
|
|
49
|
+
|
|
50
|
+
it("should include any external modules imported by functions in the output bundle when the [--experimental-worker-bundle] flag is set", async () => {
|
|
51
|
+
/* ---------------------------- */
|
|
52
|
+
/* Set up wasm files */
|
|
53
|
+
/* ---------------------------- */
|
|
54
|
+
mkdirSync("wasm");
|
|
55
|
+
writeFileSync("wasm/greeting.wasm", "Hello");
|
|
56
|
+
writeFileSync("wasm/name.wasm", "wasm Functions");
|
|
57
|
+
|
|
58
|
+
/* ---------------------------- */
|
|
59
|
+
/* Set up Functions */
|
|
60
|
+
/* ---------------------------- */
|
|
61
|
+
mkdirSync("functions");
|
|
62
|
+
writeFileSync(
|
|
63
|
+
"functions/hello.js",
|
|
64
|
+
`
|
|
65
|
+
import hello from "./../wasm/greeting.wasm";
|
|
66
|
+
import name from "./../wasm/name.wasm";
|
|
67
|
+
|
|
68
|
+
export async function onRequest() {
|
|
69
|
+
const greetingModule = await WebAssembly.instantiate(greeting);
|
|
70
|
+
const nameModule = await WebAssembly.instantiate(name);
|
|
71
|
+
return new Response(greetingModule.exports.hello + " " + nameModule.exports.name);
|
|
72
|
+
}
|
|
73
|
+
`
|
|
74
|
+
);
|
|
75
|
+
|
|
76
|
+
/* --------------------------------- */
|
|
77
|
+
/* Run cmd & make assertions */
|
|
78
|
+
/* --------------------------------- */
|
|
79
|
+
await runWrangler(
|
|
80
|
+
`pages functions build --outfile=_worker.bundle --experimental-worker-bundle=true`
|
|
81
|
+
);
|
|
82
|
+
|
|
83
|
+
expect(existsSync("_worker.bundle")).toBe(true);
|
|
84
|
+
expect(std.out).toMatchInlineSnapshot(`
|
|
85
|
+
"🚧 'wrangler pages <command>' is a beta command. Please report any issues to https://github.com/cloudflare/workers-sdk/issues/new/choose
|
|
86
|
+
✨ Compiled Worker successfully"
|
|
87
|
+
`);
|
|
88
|
+
|
|
89
|
+
// some values in workerBundleContents, such as the undici form boundary
|
|
90
|
+
// or the file hashes, are randomly generated. Let's replace them
|
|
91
|
+
// with static values so we can test the file contents
|
|
92
|
+
const workerBundleContents = readFileSync("_worker.bundle", "utf-8");
|
|
93
|
+
const workerBundleWithConstantData = replaceRandomWithConstantData(
|
|
94
|
+
workerBundleContents,
|
|
95
|
+
[
|
|
96
|
+
[/------formdata-undici-0.[0-9]*/g, "------formdata-undici-0.test"],
|
|
97
|
+
[/functionsWorker-0.[0-9]*.js/g, "functionsWorker-0.test.js"],
|
|
98
|
+
[/[0-9a-z]*-greeting.wasm/g, "test-greeting.wasm"],
|
|
99
|
+
[/[0-9a-z]*-name.wasm/g, "test-name.wasm"],
|
|
100
|
+
]
|
|
101
|
+
);
|
|
102
|
+
|
|
103
|
+
// check we appended the metadata
|
|
104
|
+
expect(workerBundleWithConstantData).toContain(
|
|
105
|
+
`Content-Disposition: form-data; name="metadata"`
|
|
106
|
+
);
|
|
107
|
+
expect(workerBundleWithConstantData).toContain(
|
|
108
|
+
`{"main_module":"functionsWorker-0.test.js"}`
|
|
109
|
+
);
|
|
110
|
+
|
|
111
|
+
// check we appended the compiled Worker
|
|
112
|
+
expect(workerBundleWithConstantData).toContain(
|
|
113
|
+
`Content-Disposition: form-data; name="functionsWorker-0.test.js"; filename="functionsWorker-0.test.js"`
|
|
114
|
+
);
|
|
115
|
+
|
|
116
|
+
// check we appended the wasm modules
|
|
117
|
+
expect(workerBundleWithConstantData).toContain(
|
|
118
|
+
`Content-Disposition: form-data; name="./test-greeting.wasm"; filename="./test-greeting.wasm"`
|
|
119
|
+
);
|
|
120
|
+
expect(workerBundleWithConstantData).toContain(
|
|
121
|
+
`Content-Disposition: form-data; name="./test-name.wasm"; filename="./test-name.wasm"`
|
|
122
|
+
);
|
|
123
|
+
expect(workerBundleWithConstantData).toContain(`Hello`);
|
|
124
|
+
expect(workerBundleWithConstantData).toContain(`wasm Functions`);
|
|
125
|
+
|
|
126
|
+
expect(std.err).toMatchInlineSnapshot(`""`);
|
|
127
|
+
});
|
|
128
|
+
|
|
129
|
+
it("should fail building if functions use external module imports, but the [--experimental-worker-bundle] flag is not set", async () => {
|
|
130
|
+
/* ---------------------------- */
|
|
131
|
+
/* Set up wasm files */
|
|
132
|
+
/* ---------------------------- */
|
|
133
|
+
mkdirSync("wasm");
|
|
134
|
+
writeFileSync("wasm/greeting.wasm", "Hello wasm Functions!");
|
|
135
|
+
|
|
136
|
+
/* ---------------------------- */
|
|
137
|
+
/* Set up Functions */
|
|
138
|
+
/* ---------------------------- */
|
|
139
|
+
mkdirSync("functions");
|
|
140
|
+
writeFileSync(
|
|
141
|
+
"functions/hello.js",
|
|
142
|
+
`
|
|
143
|
+
import hello from "./../wasm/greeting.wasm";
|
|
144
|
+
|
|
145
|
+
export async function onRequest() {
|
|
146
|
+
const module = await WebAssembly.instantiate(greeting);
|
|
147
|
+
return new Response(module.exports.hello);
|
|
148
|
+
}
|
|
149
|
+
`
|
|
150
|
+
);
|
|
151
|
+
|
|
152
|
+
/* --------------------------------- */
|
|
153
|
+
/* Run cmd & make assertions */
|
|
154
|
+
/* --------------------------------- */
|
|
155
|
+
await expect(runWrangler(`pages functions build`)).rejects.toThrowError();
|
|
156
|
+
expect(std.err).toContain(
|
|
157
|
+
`ERROR: No loader is configured for ".wasm" files: ../wasm/greeting.wasm`
|
|
158
|
+
);
|
|
159
|
+
});
|
|
160
|
+
|
|
161
|
+
it("should build _worker.js if the [--experimental-worker-bundle] flag is set", async () => {
|
|
162
|
+
/* ---------------------------- */
|
|
163
|
+
/* Set up js files */
|
|
164
|
+
/* ---------------------------- */
|
|
165
|
+
mkdirSync("utils");
|
|
166
|
+
writeFileSync(
|
|
167
|
+
"utils/meaning-of-life.js",
|
|
168
|
+
`
|
|
169
|
+
export const MEANING_OF_LIFE = 21;
|
|
170
|
+
`
|
|
171
|
+
);
|
|
172
|
+
|
|
173
|
+
/* ---------------------------- */
|
|
174
|
+
/* Set up _worker.js */
|
|
175
|
+
/* ---------------------------- */
|
|
176
|
+
mkdirSync("public");
|
|
177
|
+
writeFileSync(
|
|
178
|
+
"public/_worker.js",
|
|
179
|
+
`
|
|
180
|
+
import { MEANING_OF_LIFE } from "./../utils/meaning-of-life.js";
|
|
181
|
+
|
|
182
|
+
export default {
|
|
183
|
+
async fetch(request, env) {
|
|
184
|
+
return new Response("Hello from _worker.js. The meaning of life is " + MEANING_OF_LIFE);
|
|
185
|
+
},
|
|
186
|
+
};`
|
|
187
|
+
);
|
|
188
|
+
|
|
189
|
+
/* --------------------------------- */
|
|
190
|
+
/* Run cmd & make assertions */
|
|
191
|
+
/* --------------------------------- */
|
|
192
|
+
await runWrangler(
|
|
193
|
+
`pages functions build --build-output-directory=public --outfile=_worker.bundle --experimental-worker-bundle=true`
|
|
194
|
+
);
|
|
195
|
+
expect(existsSync("_worker.bundle")).toBe(true);
|
|
196
|
+
expect(std.out).toMatchInlineSnapshot(`
|
|
197
|
+
"🚧 'wrangler pages <command>' is a beta command. Please report any issues to https://github.com/cloudflare/workers-sdk/issues/new/choose
|
|
198
|
+
✨ Compiled Worker successfully"
|
|
199
|
+
`);
|
|
200
|
+
|
|
201
|
+
// some values in workerBundleContents, such as the undici form boundary
|
|
202
|
+
// or the file hashes, are randomly generated. Let's replace them
|
|
203
|
+
// with static values so we can test the file contents
|
|
204
|
+
const workerBundleContents = readFileSync("_worker.bundle", "utf-8");
|
|
205
|
+
const workerBundleWithConstantData = replaceRandomWithConstantData(
|
|
206
|
+
workerBundleContents,
|
|
207
|
+
[
|
|
208
|
+
[/------formdata-undici-0.[0-9]*/g, "------formdata-undici-0.test"],
|
|
209
|
+
[/bundledWorker-0.[0-9]*.mjs/g, "bundledWorker-0.test.mjs"],
|
|
210
|
+
]
|
|
211
|
+
);
|
|
212
|
+
|
|
213
|
+
expect(workerBundleWithConstantData).toMatchInlineSnapshot(`
|
|
214
|
+
"------formdata-undici-0.test
|
|
215
|
+
Content-Disposition: form-data; name=\\"metadata\\"
|
|
216
|
+
|
|
217
|
+
{\\"main_module\\":\\"bundledWorker-0.test.mjs\\"}
|
|
218
|
+
------formdata-undici-0.test
|
|
219
|
+
Content-Disposition: form-data; name=\\"bundledWorker-0.test.mjs\\"; filename=\\"bundledWorker-0.test.mjs\\"
|
|
220
|
+
Content-Type: application/javascript+module
|
|
221
|
+
|
|
222
|
+
// ../utils/meaning-of-life.js
|
|
223
|
+
var MEANING_OF_LIFE = 21;
|
|
224
|
+
|
|
225
|
+
// _worker.js
|
|
226
|
+
var worker_default = {
|
|
227
|
+
async fetch(request, env) {
|
|
228
|
+
return new Response(\\"Hello from _worker.js. The meaning of life is \\" + MEANING_OF_LIFE);
|
|
229
|
+
}
|
|
230
|
+
};
|
|
231
|
+
export {
|
|
232
|
+
worker_default as default
|
|
233
|
+
};
|
|
234
|
+
//# sourceMappingURL=bundledWorker-0.test.mjs.map
|
|
235
|
+
|
|
236
|
+
------formdata-undici-0.test--"
|
|
237
|
+
`);
|
|
238
|
+
expect(std.err).toMatchInlineSnapshot(`""`);
|
|
239
|
+
|
|
240
|
+
await expect(
|
|
241
|
+
runWrangler(`pages functions build --build-output-directory=public`)
|
|
242
|
+
).rejects.toThrowError();
|
|
243
|
+
expect(std.err).toMatch(
|
|
244
|
+
/ENOENT: no such file or directory, scandir '.*functions'/
|
|
245
|
+
);
|
|
246
|
+
});
|
|
247
|
+
|
|
248
|
+
it("should include all external modules imported by _worker.js in the output bundle, when bundling _worker.js", async () => {
|
|
249
|
+
/* ---------------------------- */
|
|
250
|
+
/* Set up wasm files */
|
|
251
|
+
/* ---------------------------- */
|
|
252
|
+
mkdirSync("wasm");
|
|
253
|
+
writeFileSync("wasm/greeting.wasm", "Hello");
|
|
254
|
+
writeFileSync("wasm/name.wasm", "wasm _worker.js");
|
|
255
|
+
|
|
256
|
+
/* ---------------------------- */
|
|
257
|
+
/* Set up _worker.js */
|
|
258
|
+
/* ---------------------------- */
|
|
259
|
+
mkdirSync("public");
|
|
260
|
+
writeFileSync(
|
|
261
|
+
"public/_worker.js",
|
|
262
|
+
`
|
|
263
|
+
import greeting from "./../wasm/greeting.wasm";
|
|
264
|
+
import name from "./../wasm/name.wasm";
|
|
265
|
+
|
|
266
|
+
export default {
|
|
267
|
+
async fetch(request, env) {
|
|
268
|
+
const greetingModule = await WebAssembly.instantiate(greeting);
|
|
269
|
+
const nameModule = await WebAssembly.instantiate(name);
|
|
270
|
+
return new Response(greetingModule.exports.hello + " " + nameModule.exports.name + "!");
|
|
271
|
+
},
|
|
272
|
+
};`
|
|
273
|
+
);
|
|
274
|
+
|
|
275
|
+
/* --------------------------------- */
|
|
276
|
+
/* Run cmd & make assertions */
|
|
277
|
+
/* --------------------------------- */
|
|
278
|
+
await runWrangler(
|
|
279
|
+
`pages functions build --build-output-directory=public --experimental-worker-bundle=true`
|
|
280
|
+
);
|
|
281
|
+
|
|
282
|
+
// built to _worker.js by default
|
|
283
|
+
expect(existsSync("_worker.js")).toBe(true);
|
|
284
|
+
expect(std.out).toMatchInlineSnapshot(`
|
|
285
|
+
"🚧 'wrangler pages <command>' is a beta command. Please report any issues to https://github.com/cloudflare/workers-sdk/issues/new/choose
|
|
286
|
+
✨ Compiled Worker successfully"
|
|
287
|
+
`);
|
|
288
|
+
|
|
289
|
+
// some values in workerBundleContents, such as the undici form boundary
|
|
290
|
+
// or the file hashes, are randomly generated. Let's replace them
|
|
291
|
+
// with static values so we can test the file contents
|
|
292
|
+
const workerBundleContents = readFileSync("_worker.js", "utf-8");
|
|
293
|
+
const workerBundleWithConstantData = replaceRandomWithConstantData(
|
|
294
|
+
workerBundleContents,
|
|
295
|
+
[
|
|
296
|
+
[/------formdata-undici-0.[0-9]*/g, "------formdata-undici-0.test"],
|
|
297
|
+
[/bundledWorker-0.[0-9]*.mjs/g, "bundledWorker-0.test.mjs"],
|
|
298
|
+
[/[0-9a-z]*-greeting.wasm/g, "test-greeting.wasm"],
|
|
299
|
+
[/[0-9a-z]*-name.wasm/g, "test-name.wasm"],
|
|
300
|
+
]
|
|
301
|
+
);
|
|
302
|
+
|
|
303
|
+
// check we appended the metadata
|
|
304
|
+
expect(workerBundleWithConstantData).toContain(
|
|
305
|
+
`Content-Disposition: form-data; name="metadata"`
|
|
306
|
+
);
|
|
307
|
+
expect(workerBundleWithConstantData).toContain(
|
|
308
|
+
`{"main_module":"bundledWorker-0.test.mjs"}`
|
|
309
|
+
);
|
|
310
|
+
|
|
311
|
+
// check we appended the wasm modules
|
|
312
|
+
expect(workerBundleWithConstantData).toContain(
|
|
313
|
+
`Content-Disposition: form-data; name="./test-greeting.wasm"; filename="./test-greeting.wasm"`
|
|
314
|
+
);
|
|
315
|
+
expect(workerBundleWithConstantData).toContain(
|
|
316
|
+
`Content-Disposition: form-data; name="./test-name.wasm"; filename="./test-name.wasm"`
|
|
317
|
+
);
|
|
318
|
+
expect(workerBundleWithConstantData).toContain(`Hello`);
|
|
319
|
+
expect(workerBundleWithConstantData).toContain(`wasm _worker.js`);
|
|
320
|
+
|
|
321
|
+
expect(std.err).toMatchInlineSnapshot(`""`);
|
|
322
|
+
});
|
|
323
|
+
|
|
324
|
+
it("should build _worker.js over /functions, if both are present and the [--experimental-worker-bundle] flag is set", async () => {
|
|
325
|
+
/* ---------------------------- */
|
|
326
|
+
/* Set up _worker.js */
|
|
327
|
+
/* ---------------------------- */
|
|
328
|
+
mkdirSync("public");
|
|
329
|
+
writeFileSync(
|
|
330
|
+
"public/_worker.js",
|
|
331
|
+
`
|
|
332
|
+
export default {
|
|
333
|
+
async fetch(request, env) {
|
|
334
|
+
return new Response("Hello from _worker.js");
|
|
335
|
+
},
|
|
336
|
+
};`
|
|
337
|
+
);
|
|
338
|
+
|
|
339
|
+
/* ---------------------------- */
|
|
340
|
+
/* Set up Functions */
|
|
341
|
+
/* ---------------------------- */
|
|
342
|
+
mkdirSync("functions");
|
|
343
|
+
writeFileSync(
|
|
344
|
+
"functions/hello.js",
|
|
345
|
+
`
|
|
346
|
+
export async function onRequest() {
|
|
347
|
+
return new Response("Hello from Pages Functions");
|
|
348
|
+
}
|
|
349
|
+
`
|
|
350
|
+
);
|
|
351
|
+
|
|
352
|
+
/* --------------------------------- */
|
|
353
|
+
/* Run cmd & make assertions */
|
|
354
|
+
/* --------------------------------- */
|
|
355
|
+
await runWrangler(
|
|
356
|
+
`pages functions build --outfile=public/_worker.bundle --experimental-worker-bundle=true`
|
|
357
|
+
);
|
|
358
|
+
|
|
359
|
+
expect(existsSync("public/_worker.bundle")).toBe(true);
|
|
360
|
+
expect(std.out).toMatchInlineSnapshot(`
|
|
361
|
+
"🚧 'wrangler pages <command>' is a beta command. Please report any issues to https://github.com/cloudflare/workers-sdk/issues/new/choose
|
|
362
|
+
✨ Compiled Worker successfully"
|
|
363
|
+
`);
|
|
364
|
+
|
|
365
|
+
// some values in workerBundleContents, such as the undici form boundary
|
|
366
|
+
// or the file hashes, are randomly generated. Let's replace them
|
|
367
|
+
// with static values so we can test the file contents
|
|
368
|
+
const workerBundleContents = readFileSync("public/_worker.bundle", "utf-8");
|
|
369
|
+
const workerBundleWithConstantData = replaceRandomWithConstantData(
|
|
370
|
+
workerBundleContents,
|
|
371
|
+
[
|
|
372
|
+
[/------formdata-undici-0.[0-9]*/g, "------formdata-undici-0.test"],
|
|
373
|
+
[/bundledWorker-0.[0-9]*.mjs/g, "bundledWorker-0.test.mjs"],
|
|
374
|
+
]
|
|
375
|
+
);
|
|
376
|
+
|
|
377
|
+
expect(workerBundleWithConstantData).toMatchInlineSnapshot(`
|
|
378
|
+
"------formdata-undici-0.test
|
|
379
|
+
Content-Disposition: form-data; name=\\"metadata\\"
|
|
380
|
+
|
|
381
|
+
{\\"main_module\\":\\"bundledWorker-0.test.mjs\\"}
|
|
382
|
+
------formdata-undici-0.test
|
|
383
|
+
Content-Disposition: form-data; name=\\"bundledWorker-0.test.mjs\\"; filename=\\"bundledWorker-0.test.mjs\\"
|
|
384
|
+
Content-Type: application/javascript+module
|
|
385
|
+
|
|
386
|
+
// _worker.js
|
|
387
|
+
var worker_default = {
|
|
388
|
+
async fetch(request, env) {
|
|
389
|
+
return new Response(\\"Hello from _worker.js\\");
|
|
390
|
+
}
|
|
391
|
+
};
|
|
392
|
+
export {
|
|
393
|
+
worker_default as default
|
|
394
|
+
};
|
|
395
|
+
//# sourceMappingURL=bundledWorker-0.test.mjs.map
|
|
396
|
+
|
|
397
|
+
------formdata-undici-0.test--"
|
|
398
|
+
`);
|
|
399
|
+
|
|
400
|
+
expect(std.err).toMatchInlineSnapshot(`""`);
|
|
401
|
+
});
|
|
402
|
+
});
|
|
@@ -35,7 +35,7 @@ describe("pages", () => {
|
|
|
35
35
|
-h, --help Show help [boolean]
|
|
36
36
|
-v, --version Show version number [boolean]
|
|
37
37
|
|
|
38
|
-
🚧 'wrangler pages <command>' is a beta command. Please report any issues to https://github.com/cloudflare/
|
|
38
|
+
🚧 'wrangler pages <command>' is a beta command. Please report any issues to https://github.com/cloudflare/workers-sdk/issues/new/choose"
|
|
39
39
|
`);
|
|
40
40
|
});
|
|
41
41
|
|
|
@@ -48,9 +48,9 @@ describe("pages", () => {
|
|
|
48
48
|
);
|
|
49
49
|
|
|
50
50
|
expect(std.out).toMatchInlineSnapshot(`
|
|
51
|
-
"🚧 'wrangler pages <command>' is a beta command. Please report any issues to https://github.com/cloudflare/
|
|
51
|
+
"🚧 'wrangler pages <command>' is a beta command. Please report any issues to https://github.com/cloudflare/workers-sdk/issues/new/choose
|
|
52
52
|
|
|
53
|
-
[32mIf you think this is a bug then please create an issue at https://github.com/cloudflare/
|
|
53
|
+
[32mIf you think this is a bug then please create an issue at https://github.com/cloudflare/workers-sdk/issues/new/choose[0m"
|
|
54
54
|
`);
|
|
55
55
|
});
|
|
56
56
|
|
|
@@ -58,9 +58,9 @@ describe("pages", () => {
|
|
|
58
58
|
await expect(runWrangler("pages functions build")).rejects.toThrowError();
|
|
59
59
|
|
|
60
60
|
expect(std.out).toMatchInlineSnapshot(`
|
|
61
|
-
"🚧 'wrangler pages <command>' is a beta command. Please report any issues to https://github.com/cloudflare/
|
|
61
|
+
"🚧 'wrangler pages <command>' is a beta command. Please report any issues to https://github.com/cloudflare/workers-sdk/issues/new/choose
|
|
62
62
|
|
|
63
|
-
[32mIf you think this is a bug then please create an issue at https://github.com/cloudflare/
|
|
63
|
+
[32mIf you think this is a bug then please create an issue at https://github.com/cloudflare/workers-sdk/issues/new/choose[0m"
|
|
64
64
|
`);
|
|
65
65
|
});
|
|
66
66
|
|
|
@@ -72,9 +72,9 @@ describe("pages", () => {
|
|
|
72
72
|
).rejects.toThrowError();
|
|
73
73
|
|
|
74
74
|
expect(std.out).toMatchInlineSnapshot(`
|
|
75
|
-
"🚧 'wrangler pages <command>' is a beta command. Please report any issues to https://github.com/cloudflare/
|
|
75
|
+
"🚧 'wrangler pages <command>' is a beta command. Please report any issues to https://github.com/cloudflare/workers-sdk/issues/new/choose
|
|
76
76
|
|
|
77
|
-
[32mIf you think this is a bug then please create an issue at https://github.com/cloudflare/
|
|
77
|
+
[32mIf you think this is a bug then please create an issue at https://github.com/cloudflare/workers-sdk/issues/new/choose[0m"
|
|
78
78
|
`);
|
|
79
79
|
});
|
|
80
80
|
});
|