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
|
@@ -7,251 +7,256 @@ import writeWranglerToml from "./helpers/write-wrangler-toml";
|
|
|
7
7
|
import type { PackageManager } from "../package-manager";
|
|
8
8
|
|
|
9
9
|
describe("wrangler", () => {
|
|
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
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
10
|
+
let mockPackageManager: PackageManager;
|
|
11
|
+
runInTempDir();
|
|
12
|
+
|
|
13
|
+
beforeEach(() => {
|
|
14
|
+
mockPackageManager = {
|
|
15
|
+
cwd: process.cwd(),
|
|
16
|
+
// @ts-expect-error we're making a fake package manager here
|
|
17
|
+
type: "mockpm",
|
|
18
|
+
addDevDeps: jest.fn(),
|
|
19
|
+
install: jest.fn(),
|
|
20
|
+
};
|
|
21
|
+
(getPackageManager as jest.Mock).mockResolvedValue(mockPackageManager);
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
const std = mockConsoleMethods();
|
|
25
|
+
|
|
26
|
+
describe("no command", () => {
|
|
27
|
+
it("should display a list of available commands", async () => {
|
|
28
|
+
await runWrangler();
|
|
29
|
+
|
|
30
|
+
expect(std.out).toMatchInlineSnapshot(`
|
|
31
|
+
"wrangler
|
|
32
|
+
|
|
33
|
+
Commands:
|
|
34
|
+
wrangler init [name] 📥 Create a wrangler.toml configuration file
|
|
35
|
+
wrangler dev [script] 👂 Start a local server for developing your worker
|
|
36
|
+
wrangler publish [script] 🆙 Publish your Worker to Cloudflare.
|
|
37
|
+
wrangler tail [name] 🦚 Starts a log tailing session for a published Worker.
|
|
38
|
+
wrangler secret 🤫 Generate a secret that can be referenced in the worker script
|
|
39
|
+
wrangler kv:namespace 🗂️ Interact with your Workers KV Namespaces
|
|
40
|
+
wrangler kv:key 🔑 Individually manage Workers KV key-value pairs
|
|
41
|
+
wrangler kv:bulk 💪 Interact with multiple Workers KV key-value pairs at once
|
|
42
|
+
wrangler pages ⚡️ Configure Cloudflare Pages
|
|
43
|
+
wrangler r2 📦 Interact with an R2 store
|
|
44
|
+
wrangler worker-namespace 📦 Interact with a worker namespace
|
|
45
|
+
wrangler pubsub 📮 Interact and manage Pub/Sub Brokers
|
|
46
|
+
wrangler login 🔓 Login to Cloudflare
|
|
47
|
+
wrangler logout 🚪 Logout from Cloudflare
|
|
48
|
+
wrangler whoami 🕵️ Retrieve your user info and test your auth config
|
|
49
|
+
|
|
50
|
+
Flags:
|
|
51
|
+
-c, --config Path to .toml configuration file [string]
|
|
52
|
+
-h, --help Show help [boolean]
|
|
53
|
+
-v, --version Show version number [boolean]"
|
|
54
|
+
`);
|
|
55
|
+
|
|
56
|
+
expect(std.err).toMatchInlineSnapshot(`""`);
|
|
57
|
+
});
|
|
58
|
+
});
|
|
59
|
+
|
|
60
|
+
describe("invalid command", () => {
|
|
61
|
+
it("should display an error", async () => {
|
|
62
|
+
await expect(
|
|
63
|
+
runWrangler("invalid-command")
|
|
64
|
+
).rejects.toThrowErrorMatchingInlineSnapshot(
|
|
65
|
+
`"Unknown argument: invalid-command"`
|
|
66
|
+
);
|
|
67
|
+
|
|
68
|
+
expect(std.out).toMatchInlineSnapshot(`
|
|
69
|
+
"
|
|
70
|
+
wrangler
|
|
71
|
+
|
|
72
|
+
Commands:
|
|
73
|
+
wrangler init [name] 📥 Create a wrangler.toml configuration file
|
|
74
|
+
wrangler dev [script] 👂 Start a local server for developing your worker
|
|
75
|
+
wrangler publish [script] 🆙 Publish your Worker to Cloudflare.
|
|
76
|
+
wrangler tail [name] 🦚 Starts a log tailing session for a published Worker.
|
|
77
|
+
wrangler secret 🤫 Generate a secret that can be referenced in the worker script
|
|
78
|
+
wrangler kv:namespace 🗂️ Interact with your Workers KV Namespaces
|
|
79
|
+
wrangler kv:key 🔑 Individually manage Workers KV key-value pairs
|
|
80
|
+
wrangler kv:bulk 💪 Interact with multiple Workers KV key-value pairs at once
|
|
81
|
+
wrangler pages ⚡️ Configure Cloudflare Pages
|
|
82
|
+
wrangler r2 📦 Interact with an R2 store
|
|
83
|
+
wrangler worker-namespace 📦 Interact with a worker namespace
|
|
84
|
+
wrangler pubsub 📮 Interact and manage Pub/Sub Brokers
|
|
85
|
+
wrangler login 🔓 Login to Cloudflare
|
|
86
|
+
wrangler logout 🚪 Logout from Cloudflare
|
|
87
|
+
wrangler whoami 🕵️ Retrieve your user info and test your auth config
|
|
88
|
+
|
|
89
|
+
Flags:
|
|
90
|
+
-c, --config Path to .toml configuration file [string]
|
|
91
|
+
-h, --help Show help [boolean]
|
|
92
|
+
-v, --version Show version number [boolean]"
|
|
93
|
+
`);
|
|
94
|
+
expect(std.err).toMatchInlineSnapshot(`
|
|
95
|
+
"[31mX [41;31m[[41;97mERROR[41;31m][0m [1mUnknown argument: invalid-command[0m
|
|
96
|
+
|
|
97
|
+
"
|
|
98
|
+
`);
|
|
99
|
+
});
|
|
100
|
+
});
|
|
101
|
+
|
|
102
|
+
describe("preview", () => {
|
|
103
|
+
it("should throw an error if the deprecated command is used with positional arguments", async () => {
|
|
104
|
+
await expect(runWrangler("preview GET")).rejects
|
|
105
|
+
.toThrowErrorMatchingInlineSnapshot(`
|
|
102
106
|
"Deprecation:
|
|
103
107
|
The \`wrangler preview\` command has been deprecated.
|
|
104
108
|
Try using \`wrangler dev\` to to try out a worker during development.
|
|
105
109
|
"
|
|
106
110
|
`);
|
|
107
|
-
|
|
108
|
-
|
|
111
|
+
await expect(runWrangler(`preview GET "SomeBody"`)).rejects
|
|
112
|
+
.toThrowErrorMatchingInlineSnapshot(`
|
|
109
113
|
"Deprecation:
|
|
110
114
|
The \`wrangler preview\` command has been deprecated.
|
|
111
115
|
Try using \`wrangler dev\` to to try out a worker during development.
|
|
112
116
|
"
|
|
113
117
|
`);
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
118
|
+
});
|
|
119
|
+
});
|
|
120
|
+
|
|
121
|
+
describe("subcommand implicit help ran on incomplete command execution", () => {
|
|
122
|
+
it("no subcommand for 'secret' should display a list of available subcommands", async () => {
|
|
123
|
+
await runWrangler("secret");
|
|
124
|
+
await endEventLoop();
|
|
125
|
+
expect(std.out).toMatchInlineSnapshot(`
|
|
126
|
+
"wrangler secret
|
|
127
|
+
|
|
128
|
+
🤫 Generate a secret that can be referenced in the worker script
|
|
129
|
+
|
|
130
|
+
Commands:
|
|
131
|
+
wrangler secret put <key> Create or update a secret variable for a script
|
|
132
|
+
wrangler secret delete <key> Delete a secret variable from a script
|
|
133
|
+
wrangler secret list List all secrets for a script
|
|
134
|
+
|
|
135
|
+
Flags:
|
|
136
|
+
-c, --config Path to .toml configuration file [string]
|
|
137
|
+
-h, --help Show help [boolean]
|
|
138
|
+
-v, --version Show version number [boolean]"
|
|
139
|
+
`);
|
|
140
|
+
});
|
|
141
|
+
|
|
142
|
+
it("no subcommand 'kv:namespace' should display a list of available subcommands", async () => {
|
|
143
|
+
await runWrangler("kv:namespace");
|
|
144
|
+
await endEventLoop();
|
|
145
|
+
expect(std.out).toMatchInlineSnapshot(`
|
|
146
|
+
"wrangler kv:namespace
|
|
147
|
+
|
|
148
|
+
🗂️ Interact with your Workers KV Namespaces
|
|
149
|
+
|
|
150
|
+
Commands:
|
|
151
|
+
wrangler kv:namespace create <namespace> Create a new namespace
|
|
152
|
+
wrangler kv:namespace list Outputs a list of all KV namespaces associated with your account id.
|
|
153
|
+
wrangler kv:namespace delete Deletes a given namespace.
|
|
154
|
+
|
|
155
|
+
Flags:
|
|
156
|
+
-c, --config Path to .toml configuration file [string]
|
|
157
|
+
-h, --help Show help [boolean]
|
|
158
|
+
-v, --version Show version number [boolean]"
|
|
159
|
+
`);
|
|
160
|
+
});
|
|
161
|
+
|
|
162
|
+
it("no subcommand 'kv:key' should display a list of available subcommands", async () => {
|
|
163
|
+
await runWrangler("kv:key");
|
|
164
|
+
await endEventLoop();
|
|
165
|
+
expect(std.out).toMatchInlineSnapshot(`
|
|
166
|
+
"wrangler kv:key
|
|
167
|
+
|
|
168
|
+
🔑 Individually manage Workers KV key-value pairs
|
|
169
|
+
|
|
170
|
+
Commands:
|
|
171
|
+
wrangler kv:key put <key> [value] Writes a single key/value pair to the given namespace.
|
|
172
|
+
wrangler kv:key list Outputs a list of all keys in a given namespace.
|
|
173
|
+
wrangler kv:key get <key> Reads a single value by key from the given namespace.
|
|
174
|
+
wrangler kv:key delete <key> Removes a single key value pair from the given namespace.
|
|
175
|
+
|
|
176
|
+
Flags:
|
|
177
|
+
-c, --config Path to .toml configuration file [string]
|
|
178
|
+
-h, --help Show help [boolean]
|
|
179
|
+
-v, --version Show version number [boolean]"
|
|
180
|
+
`);
|
|
181
|
+
});
|
|
182
|
+
|
|
183
|
+
it("no subcommand 'kv:bulk' should display a list of available subcommands", async () => {
|
|
184
|
+
await runWrangler("kv:bulk");
|
|
185
|
+
await endEventLoop();
|
|
186
|
+
expect(std.out).toMatchInlineSnapshot(`
|
|
187
|
+
"wrangler kv:bulk
|
|
188
|
+
|
|
189
|
+
💪 Interact with multiple Workers KV key-value pairs at once
|
|
190
|
+
|
|
191
|
+
Commands:
|
|
192
|
+
wrangler kv:bulk put <filename> Upload multiple key-value pairs to a namespace
|
|
193
|
+
wrangler kv:bulk delete <filename> Delete multiple key-value pairs from a namespace
|
|
194
|
+
|
|
195
|
+
Flags:
|
|
196
|
+
-c, --config Path to .toml configuration file [string]
|
|
197
|
+
-h, --help Show help [boolean]
|
|
198
|
+
-v, --version Show version number [boolean]"
|
|
199
|
+
`);
|
|
200
|
+
});
|
|
201
|
+
|
|
202
|
+
it("no subcommand 'r2' should display a list of available subcommands", async () => {
|
|
203
|
+
await runWrangler("r2");
|
|
204
|
+
await endEventLoop();
|
|
205
|
+
expect(std.out).toMatchInlineSnapshot(`
|
|
206
|
+
"wrangler r2
|
|
207
|
+
|
|
208
|
+
📦 Interact with an R2 store
|
|
209
|
+
|
|
210
|
+
Commands:
|
|
211
|
+
wrangler r2 bucket Manage R2 buckets
|
|
212
|
+
|
|
213
|
+
Flags:
|
|
214
|
+
-c, --config Path to .toml configuration file [string]
|
|
215
|
+
-h, --help Show help [boolean]
|
|
216
|
+
-v, --version Show version number [boolean]"
|
|
217
|
+
`);
|
|
218
|
+
});
|
|
219
|
+
});
|
|
220
|
+
|
|
221
|
+
describe("Deprecated commands", () => {
|
|
222
|
+
it("should print a deprecation message for 'generate'", async () => {
|
|
223
|
+
await runWrangler("generate").catch((err) => {
|
|
224
|
+
expect(err.message).toMatchInlineSnapshot(`
|
|
225
|
+
"Deprecation:
|
|
226
|
+
\`wrangler generate\` has been deprecated.
|
|
227
|
+
Try running \`wrangler init\` to generate a basic Worker, or cloning the template repository instead:
|
|
228
|
+
|
|
229
|
+
\`\`\`
|
|
230
|
+
git clone https://github.com/cloudflare/worker-template
|
|
231
|
+
\`\`\`
|
|
232
|
+
|
|
233
|
+
Please refer to https://developers.cloudflare.com/workers/wrangler/deprecations/#generate for more information."
|
|
234
|
+
`);
|
|
235
|
+
});
|
|
236
|
+
});
|
|
237
|
+
});
|
|
238
|
+
|
|
239
|
+
it("should print a deprecation message for 'build' and then try to run `publish --dry-run --outdir`", async () => {
|
|
240
|
+
writeWranglerToml({
|
|
241
|
+
main: "index.js",
|
|
242
|
+
});
|
|
243
|
+
writeWorkerSource();
|
|
244
|
+
await runWrangler("build");
|
|
245
|
+
await endEventLoop();
|
|
246
|
+
expect(std.out).toMatchInlineSnapshot(`
|
|
247
|
+
"[33m▲ [43;33m[[43;30mWARNING[43;33m][0m [1mDeprecation: \`wrangler build\` has been deprecated.[0m
|
|
248
|
+
|
|
249
|
+
Please refer to [4mhttps://developers.cloudflare.com/workers/wrangler/migration/deprecations/#build[0m
|
|
250
|
+
for more information.
|
|
251
|
+
Attempting to run \`wrangler publish --dry-run --outdir=dist\` for you instead:
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
--dry-run: exiting now.
|
|
255
|
+
Total Upload: 0xx KiB / gzip: 0xx KiB"
|
|
256
|
+
`);
|
|
257
|
+
});
|
|
253
258
|
});
|
|
254
259
|
|
|
255
260
|
function endEventLoop() {
|
|
256
|
-
|
|
261
|
+
return new Promise((resolve) => setImmediate(resolve));
|
|
257
262
|
}
|