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.
Files changed (149) hide show
  1. package/README.md +7 -1
  2. package/bin/wrangler.js +111 -57
  3. package/miniflare-dist/index.mjs +9 -2
  4. package/package.json +156 -154
  5. package/src/__tests__/config-cache-without-cache-dir.test.ts +38 -0
  6. package/src/__tests__/config-cache.test.ts +30 -24
  7. package/src/__tests__/configuration.test.ts +3935 -3476
  8. package/src/__tests__/dev.test.tsx +1128 -979
  9. package/src/__tests__/guess-worker-format.test.ts +68 -68
  10. package/src/__tests__/helpers/cmd-shim.d.ts +6 -6
  11. package/src/__tests__/helpers/faye-websocket.d.ts +4 -4
  12. package/src/__tests__/helpers/mock-account-id.ts +24 -24
  13. package/src/__tests__/helpers/mock-bin.ts +20 -20
  14. package/src/__tests__/helpers/mock-cfetch.ts +92 -92
  15. package/src/__tests__/helpers/mock-console.ts +49 -39
  16. package/src/__tests__/helpers/mock-dialogs.ts +94 -71
  17. package/src/__tests__/helpers/mock-http-server.ts +30 -30
  18. package/src/__tests__/helpers/mock-istty.ts +65 -18
  19. package/src/__tests__/helpers/mock-kv.ts +26 -26
  20. package/src/__tests__/helpers/mock-oauth-flow.ts +223 -228
  21. package/src/__tests__/helpers/mock-process.ts +39 -0
  22. package/src/__tests__/helpers/mock-stdin.ts +82 -77
  23. package/src/__tests__/helpers/mock-web-socket.ts +21 -21
  24. package/src/__tests__/helpers/run-in-tmp.ts +27 -27
  25. package/src/__tests__/helpers/run-wrangler.ts +8 -8
  26. package/src/__tests__/helpers/write-worker-source.ts +16 -16
  27. package/src/__tests__/helpers/write-wrangler-toml.ts +9 -9
  28. package/src/__tests__/https-options.test.ts +104 -104
  29. package/src/__tests__/index.test.ts +239 -234
  30. package/src/__tests__/init.test.ts +1605 -1250
  31. package/src/__tests__/jest.setup.ts +63 -33
  32. package/src/__tests__/kv.test.ts +1128 -1011
  33. package/src/__tests__/logger.test.ts +100 -74
  34. package/src/__tests__/package-manager.test.ts +303 -303
  35. package/src/__tests__/pages.test.ts +1152 -652
  36. package/src/__tests__/parse.test.ts +252 -252
  37. package/src/__tests__/publish.test.ts +6371 -5622
  38. package/src/__tests__/pubsub.test.ts +367 -0
  39. package/src/__tests__/r2.test.ts +133 -133
  40. package/src/__tests__/route.test.ts +18 -18
  41. package/src/__tests__/secret.test.ts +382 -377
  42. package/src/__tests__/tail.test.ts +530 -530
  43. package/src/__tests__/user.test.ts +123 -111
  44. package/src/__tests__/whoami.test.tsx +198 -117
  45. package/src/__tests__/worker-namespace.test.ts +327 -0
  46. package/src/abort.d.ts +1 -1
  47. package/src/api/dev.ts +49 -0
  48. package/src/api/index.ts +1 -0
  49. package/src/bundle-reporter.tsx +29 -0
  50. package/src/bundle.ts +157 -149
  51. package/src/cfetch/index.ts +80 -80
  52. package/src/cfetch/internal.ts +90 -83
  53. package/src/cli.ts +21 -7
  54. package/src/config/config.ts +204 -195
  55. package/src/config/diagnostics.ts +61 -61
  56. package/src/config/environment.ts +390 -357
  57. package/src/config/index.ts +206 -193
  58. package/src/config/validation-helpers.ts +366 -366
  59. package/src/config/validation.ts +1573 -1376
  60. package/src/config-cache.ts +79 -41
  61. package/src/create-worker-preview.ts +206 -136
  62. package/src/create-worker-upload-form.ts +247 -238
  63. package/src/dev/dev-vars.ts +13 -13
  64. package/src/dev/dev.tsx +329 -307
  65. package/src/dev/local.tsx +304 -275
  66. package/src/dev/remote.tsx +366 -224
  67. package/src/dev/use-esbuild.ts +126 -91
  68. package/src/dev.tsx +538 -0
  69. package/src/dialogs.tsx +97 -97
  70. package/src/durable.ts +87 -87
  71. package/src/entry.ts +234 -228
  72. package/src/environment-variables.ts +23 -23
  73. package/src/errors.ts +6 -6
  74. package/src/generate.ts +33 -0
  75. package/src/git-client.ts +42 -0
  76. package/src/https-options.ts +79 -79
  77. package/src/index.tsx +1775 -2763
  78. package/src/init.ts +549 -0
  79. package/src/inspect.ts +593 -593
  80. package/src/intl-polyfill.d.ts +123 -123
  81. package/src/is-interactive.ts +12 -0
  82. package/src/kv.ts +277 -277
  83. package/src/logger.ts +46 -39
  84. package/src/miniflare-cli/enum-keys.ts +8 -8
  85. package/src/miniflare-cli/index.ts +42 -31
  86. package/src/miniflare-cli/request-context.ts +18 -18
  87. package/src/module-collection.ts +212 -212
  88. package/src/open-in-browser.ts +4 -6
  89. package/src/package-manager.ts +123 -123
  90. package/src/pages/build.tsx +202 -0
  91. package/src/pages/constants.ts +7 -0
  92. package/src/pages/deployments.tsx +101 -0
  93. package/src/pages/dev.tsx +964 -0
  94. package/src/pages/functions/buildPlugin.ts +105 -0
  95. package/src/pages/functions/buildWorker.ts +151 -0
  96. package/{pages → src/pages}/functions/filepath-routing.test.ts +113 -113
  97. package/src/pages/functions/filepath-routing.ts +189 -0
  98. package/src/pages/functions/identifiers.ts +78 -0
  99. package/src/pages/functions/routes.ts +151 -0
  100. package/src/pages/index.tsx +84 -0
  101. package/src/pages/projects.tsx +157 -0
  102. package/src/pages/publish.tsx +335 -0
  103. package/src/pages/types.ts +40 -0
  104. package/src/pages/upload.tsx +384 -0
  105. package/src/pages/utils.ts +12 -0
  106. package/src/parse.ts +202 -138
  107. package/src/paths.ts +6 -6
  108. package/src/preview.ts +31 -0
  109. package/src/proxy.ts +400 -402
  110. package/src/publish.ts +667 -621
  111. package/src/pubsub/index.ts +286 -0
  112. package/src/pubsub/pubsub-commands.tsx +577 -0
  113. package/src/r2.ts +19 -19
  114. package/src/selfsigned.d.ts +23 -23
  115. package/src/sites.tsx +271 -225
  116. package/src/tail/filters.ts +108 -108
  117. package/src/tail/index.ts +217 -217
  118. package/src/tail/printing.ts +45 -45
  119. package/src/update-check.ts +11 -11
  120. package/src/user/choose-account.tsx +60 -0
  121. package/src/user/env-vars.ts +46 -0
  122. package/src/user/generate-auth-url.ts +33 -0
  123. package/src/user/generate-random-state.ts +16 -0
  124. package/src/user/index.ts +3 -0
  125. package/src/user/user.tsx +1161 -0
  126. package/src/whoami.tsx +61 -42
  127. package/src/worker-namespace.ts +190 -0
  128. package/src/worker.ts +110 -100
  129. package/src/zones.ts +39 -36
  130. package/templates/checked-fetch.js +17 -0
  131. package/templates/new-worker-scheduled.js +3 -3
  132. package/templates/new-worker-scheduled.ts +15 -15
  133. package/templates/new-worker.js +3 -3
  134. package/templates/new-worker.ts +15 -15
  135. package/templates/no-op-worker.js +10 -0
  136. package/templates/pages-template-plugin.ts +155 -0
  137. package/templates/pages-template-worker.ts +161 -0
  138. package/templates/static-asset-facade.js +31 -31
  139. package/templates/tsconfig.json +95 -95
  140. package/wrangler-dist/cli.js +55383 -54138
  141. package/pages/functions/buildPlugin.ts +0 -105
  142. package/pages/functions/buildWorker.ts +0 -151
  143. package/pages/functions/filepath-routing.ts +0 -189
  144. package/pages/functions/identifiers.ts +0 -78
  145. package/pages/functions/routes.ts +0 -156
  146. package/pages/functions/template-plugin.ts +0 -147
  147. package/pages/functions/template-worker.ts +0 -143
  148. package/src/pages.tsx +0 -2093
  149. 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
- 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 login 🔓 Login to Cloudflare
45
- wrangler logout 🚪 Logout from Cloudflare
46
- wrangler whoami 🕵️ Retrieve your user info and test your auth config
47
-
48
- Flags:
49
- -c, --config Path to .toml configuration file [string]
50
- -h, --help Show help [boolean]
51
- -v, --version Show version number [boolean]"
52
- `);
53
-
54
- expect(std.err).toMatchInlineSnapshot(`""`);
55
- });
56
- });
57
-
58
- describe("invalid command", () => {
59
- it("should display an error", async () => {
60
- await expect(
61
- runWrangler("invalid-command")
62
- ).rejects.toThrowErrorMatchingInlineSnapshot(
63
- `"Unknown argument: invalid-command"`
64
- );
65
-
66
- expect(std.out).toMatchInlineSnapshot(`
67
- "
68
- wrangler
69
-
70
- Commands:
71
- wrangler init [name] 📥 Create a wrangler.toml configuration file
72
- wrangler dev [script] 👂 Start a local server for developing your worker
73
- wrangler publish [script] 🆙 Publish your Worker to Cloudflare.
74
- wrangler tail [name] 🦚 Starts a log tailing session for a published Worker.
75
- wrangler secret 🤫 Generate a secret that can be referenced in the worker script
76
- wrangler kv:namespace 🗂️ Interact with your Workers KV Namespaces
77
- wrangler kv:key 🔑 Individually manage Workers KV key-value pairs
78
- wrangler kv:bulk 💪 Interact with multiple Workers KV key-value pairs at once
79
- wrangler pages ⚡️ Configure Cloudflare Pages
80
- wrangler r2 📦 Interact with an R2 store
81
- wrangler login 🔓 Login to Cloudflare
82
- wrangler logout 🚪 Logout from Cloudflare
83
- wrangler whoami 🕵️ Retrieve your user info and test your auth config
84
-
85
- Flags:
86
- -c, --config Path to .toml configuration file [string]
87
- -h, --help Show help [boolean]
88
- -v, --version Show version number [boolean]"
89
- `);
90
- expect(std.err).toMatchInlineSnapshot(`
91
- "X [ERROR] Unknown argument: invalid-command
92
-
93
- "
94
- `);
95
- });
96
- });
97
-
98
- describe("preview", () => {
99
- it("should throw an error if the deprecated command is used with positional arguments", async () => {
100
- await expect(runWrangler("preview GET")).rejects
101
- .toThrowErrorMatchingInlineSnapshot(`
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
+ "X [ERROR] Unknown argument: invalid-command
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
- await expect(runWrangler(`preview GET "SomeBody"`)).rejects
108
- .toThrowErrorMatchingInlineSnapshot(`
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
- describe("subcommand implicit help ran on incomplete command execution", () => {
118
- it("no subcommand for 'secret' should display a list of available subcommands", async () => {
119
- await runWrangler("secret");
120
- await endEventLoop();
121
- expect(std.out).toMatchInlineSnapshot(`
122
- "wrangler secret
123
-
124
- 🤫 Generate a secret that can be referenced in the worker script
125
-
126
- Commands:
127
- wrangler secret put <key> Create or update a secret variable for a script
128
- wrangler secret delete <key> Delete a secret variable from a script
129
- wrangler secret list List all secrets for a script
130
-
131
- Flags:
132
- -c, --config Path to .toml configuration file [string]
133
- -h, --help Show help [boolean]
134
- -v, --version Show version number [boolean]"
135
- `);
136
- });
137
-
138
- it("no subcommand 'kv:namespace' should display a list of available subcommands", async () => {
139
- await runWrangler("kv:namespace");
140
- await endEventLoop();
141
- expect(std.out).toMatchInlineSnapshot(`
142
- "wrangler kv:namespace
143
-
144
- 🗂️ Interact with your Workers KV Namespaces
145
-
146
- Commands:
147
- wrangler kv:namespace create <namespace> Create a new namespace
148
- wrangler kv:namespace list Outputs a list of all KV namespaces associated with your account id.
149
- wrangler kv:namespace delete Deletes a given namespace.
150
-
151
- Flags:
152
- -c, --config Path to .toml configuration file [string]
153
- -h, --help Show help [boolean]
154
- -v, --version Show version number [boolean]"
155
- `);
156
- });
157
-
158
- it("no subcommand 'kv:key' should display a list of available subcommands", async () => {
159
- await runWrangler("kv:key");
160
- await endEventLoop();
161
- expect(std.out).toMatchInlineSnapshot(`
162
- "wrangler kv:key
163
-
164
- 🔑 Individually manage Workers KV key-value pairs
165
-
166
- Commands:
167
- wrangler kv:key put <key> [value] Writes a single key/value pair to the given namespace.
168
- wrangler kv:key list Outputs a list of all keys in a given namespace.
169
- wrangler kv:key get <key> Reads a single value by key from the given namespace.
170
- wrangler kv:key delete <key> Removes a single key value pair from the given namespace.
171
-
172
- Flags:
173
- -c, --config Path to .toml configuration file [string]
174
- -h, --help Show help [boolean]
175
- -v, --version Show version number [boolean]"
176
- `);
177
- });
178
-
179
- it("no subcommand 'kv:bulk' should display a list of available subcommands", async () => {
180
- await runWrangler("kv:bulk");
181
- await endEventLoop();
182
- expect(std.out).toMatchInlineSnapshot(`
183
- "wrangler kv:bulk
184
-
185
- 💪 Interact with multiple Workers KV key-value pairs at once
186
-
187
- Commands:
188
- wrangler kv:bulk put <filename> Upload multiple key-value pairs to a namespace
189
- wrangler kv:bulk delete <filename> Delete multiple key-value pairs from a namespace
190
-
191
- Flags:
192
- -c, --config Path to .toml configuration file [string]
193
- -h, --help Show help [boolean]
194
- -v, --version Show version number [boolean]"
195
- `);
196
- });
197
-
198
- it("no subcommand 'r2' should display a list of available subcommands", async () => {
199
- await runWrangler("r2");
200
- await endEventLoop();
201
- expect(std.out).toMatchInlineSnapshot(`
202
- "wrangler r2
203
-
204
- 📦 Interact with an R2 store
205
-
206
- Commands:
207
- wrangler r2 bucket Manage R2 buckets
208
-
209
- Flags:
210
- -c, --config Path to .toml configuration file [string]
211
- -h, --help Show help [boolean]
212
- -v, --version Show version number [boolean]"
213
- `);
214
- });
215
- });
216
-
217
- describe("Deprecated commands", () => {
218
- it("should print a deprecation message for 'generate'", async () => {
219
- await runWrangler("generate").catch((err) => {
220
- expect(err.message).toMatchInlineSnapshot(`
221
- "Deprecation:
222
- \`wrangler generate\` has been deprecated.
223
- Try running \`wrangler init\` to generate a basic Worker, or cloning the template repository instead:
224
-
225
- \`\`\`
226
- git clone https://github.com/cloudflare/worker-template
227
- \`\`\`
228
-
229
- Please refer to https://developers.cloudflare.com/workers/wrangler/deprecations/#generate for more information."
230
- `);
231
- });
232
- });
233
- });
234
-
235
- it("should print a deprecation message for 'build' and then try to run `publish --dry-run --outdir`", async () => {
236
- writeWranglerToml({
237
- main: "index.js",
238
- });
239
- writeWorkerSource();
240
- await runWrangler("build");
241
- await endEventLoop();
242
- expect(std.out).toMatchInlineSnapshot(`
243
- "▲ [WARNING] Deprecation: \`wrangler build\` has been deprecated.
244
-
245
- Please refer to https://developers.cloudflare.com/workers/wrangler/migration/deprecations/#build
246
- for more information.
247
- Attempting to run \`wrangler publish --dry-run --outdir=dist\` for you instead:
248
-
249
-
250
- --dry-run: exiting now."
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
+ "▲ [WARNING] Deprecation: \`wrangler build\` has been deprecated.
248
+
249
+ Please refer to https://developers.cloudflare.com/workers/wrangler/migration/deprecations/#build
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
- return new Promise((resolve) => setImmediate(resolve));
261
+ return new Promise((resolve) => setImmediate(resolve));
257
262
  }