wrangler 2.12.3 → 2.13.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wrangler",
3
- "version": "2.12.3",
3
+ "version": "2.13.0",
4
4
  "description": "Command-line interface for all things Cloudflare Workers",
5
5
  "keywords": [
6
6
  "wrangler",
@@ -1791,6 +1791,7 @@ describe("normalizeAndValidateConfig()", () => {
1791
1791
  max_batch_timeout: null,
1792
1792
  max_retries: "hello",
1793
1793
  dead_letter_queue: 5,
1794
+ max_concurrency: "hello",
1794
1795
  },
1795
1796
  ],
1796
1797
  },
@@ -1806,20 +1807,21 @@ describe("normalizeAndValidateConfig()", () => {
1806
1807
  );
1807
1808
  expect(diagnostics.hasWarnings()).toBe(true);
1808
1809
  expect(diagnostics.renderWarnings()).toMatchInlineSnapshot(`
1809
- "Processing wrangler configuration:
1810
- - Unexpected fields found in queues field: \\"invalidField\\"
1811
- - Unexpected fields found in queues.consumers[2] field: \\"invalidField\\""
1812
- `);
1810
+ "Processing wrangler configuration:
1811
+ - Unexpected fields found in queues field: \\"invalidField\\"
1812
+ - Unexpected fields found in queues.consumers[2] field: \\"invalidField\\""
1813
+ `);
1813
1814
 
1814
1815
  expect(diagnostics.renderErrors()).toMatchInlineSnapshot(`
1815
- "Processing wrangler configuration:
1816
- - \\"queues.consumers[0]\\" should have a string \\"queue\\" field but got {}.
1817
- - \\"queues.consumers[1]\\" should have a string \\"queue\\" field but got {\\"queue\\":22}.
1818
- - \\"queues.consumers[3]\\" should, optionally, have a number \\"max_batch_size\\" field but got {\\"queue\\":\\"myQueue\\",\\"max_batch_size\\":\\"3\\",\\"max_batch_timeout\\":null,\\"max_retries\\":\\"hello\\",\\"dead_letter_queue\\":5}.
1819
- - \\"queues.consumers[3]\\" should, optionally, have a number \\"max_batch_timeout\\" field but got {\\"queue\\":\\"myQueue\\",\\"max_batch_size\\":\\"3\\",\\"max_batch_timeout\\":null,\\"max_retries\\":\\"hello\\",\\"dead_letter_queue\\":5}.
1820
- - \\"queues.consumers[3]\\" should, optionally, have a number \\"max_retries\\" field but got {\\"queue\\":\\"myQueue\\",\\"max_batch_size\\":\\"3\\",\\"max_batch_timeout\\":null,\\"max_retries\\":\\"hello\\",\\"dead_letter_queue\\":5}.
1821
- - \\"queues.consumers[3]\\" should, optionally, have a string \\"dead_letter_queue\\" field but got {\\"queue\\":\\"myQueue\\",\\"max_batch_size\\":\\"3\\",\\"max_batch_timeout\\":null,\\"max_retries\\":\\"hello\\",\\"dead_letter_queue\\":5}."
1822
- `);
1816
+ "Processing wrangler configuration:
1817
+ - \\"queues.consumers[0]\\" should have a string \\"queue\\" field but got {}.
1818
+ - \\"queues.consumers[1]\\" should have a string \\"queue\\" field but got {\\"queue\\":22}.
1819
+ - \\"queues.consumers[3]\\" should, optionally, have a number \\"max_batch_size\\" field but got {\\"queue\\":\\"myQueue\\",\\"max_batch_size\\":\\"3\\",\\"max_batch_timeout\\":null,\\"max_retries\\":\\"hello\\",\\"dead_letter_queue\\":5,\\"max_concurrency\\":\\"hello\\"}.
1820
+ - \\"queues.consumers[3]\\" should, optionally, have a number \\"max_batch_timeout\\" field but got {\\"queue\\":\\"myQueue\\",\\"max_batch_size\\":\\"3\\",\\"max_batch_timeout\\":null,\\"max_retries\\":\\"hello\\",\\"dead_letter_queue\\":5,\\"max_concurrency\\":\\"hello\\"}.
1821
+ - \\"queues.consumers[3]\\" should, optionally, have a number \\"max_retries\\" field but got {\\"queue\\":\\"myQueue\\",\\"max_batch_size\\":\\"3\\",\\"max_batch_timeout\\":null,\\"max_retries\\":\\"hello\\",\\"dead_letter_queue\\":5,\\"max_concurrency\\":\\"hello\\"}.
1822
+ - \\"queues.consumers[3]\\" should, optionally, have a string \\"dead_letter_queue\\" field but got {\\"queue\\":\\"myQueue\\",\\"max_batch_size\\":\\"3\\",\\"max_batch_timeout\\":null,\\"max_retries\\":\\"hello\\",\\"dead_letter_queue\\":5,\\"max_concurrency\\":\\"hello\\"}.
1823
+ - \\"queues.consumers[3]\\" should, optionally, have a number \\"max_concurrency\\" field but got {\\"queue\\":\\"myQueue\\",\\"max_batch_size\\":\\"3\\",\\"max_batch_timeout\\":null,\\"max_retries\\":\\"hello\\",\\"dead_letter_queue\\":5,\\"max_concurrency\\":\\"hello\\"}."
1824
+ `);
1823
1825
  });
1824
1826
  });
1825
1827
 
@@ -1,18 +1,20 @@
1
- // import * as fs from "fs";
2
- // import * as TOML from "@iarna/toml";
3
- import * as fs from "node:fs";
4
- import * as TOML from "@iarna/toml";
5
1
  import { rest } from "msw";
6
2
  import { mockAccountId, mockApiToken } from "./helpers/mock-account-id";
7
3
  import { mockConsoleMethods } from "./helpers/mock-console";
4
+ import { clearDialogs, mockConfirm, mockPrompt } from "./helpers/mock-dialogs";
5
+ import { useMockIsTTY } from "./helpers/mock-istty";
8
6
  import {
9
7
  msw,
10
8
  mswSuccessOauthHandlers,
11
9
  mswSuccessUserHandlers,
10
+ mswSuccessDeploymentDetails,
11
+ mswSuccessDeploymentScriptMetadata,
12
+ createFetchResult,
12
13
  } from "./helpers/msw";
13
14
  import { mswSuccessDeployments } from "./helpers/msw";
14
15
  import { runInTempDir } from "./helpers/run-in-tmp";
15
16
  import { runWrangler } from "./helpers/run-wrangler";
17
+ import writeWranglerToml from "./helpers/write-wrangler-toml";
16
18
 
17
19
  describe("deployments", () => {
18
20
  const std = mockConsoleMethods();
@@ -20,110 +22,348 @@ describe("deployments", () => {
20
22
  mockAccountId();
21
23
  mockApiToken();
22
24
  runInTempDir();
25
+ afterAll(() => {
26
+ clearDialogs();
27
+ });
23
28
 
24
29
  beforeEach(() => {
25
30
  msw.use(
26
31
  ...mswSuccessDeployments,
27
32
  ...mswSuccessOauthHandlers,
28
33
  ...mswSuccessUserHandlers,
29
- rest.get(
30
- "*/accounts/:accountId/workers/services/:scriptName",
31
- (_, response, context) => {
32
- return response.once(
33
- context.status(200),
34
- context.json({
35
- success: true,
36
- errors: [],
37
- messages: [],
38
- result: {
39
- default_environment: {
40
- script: {
41
- tag: "MOCK-TAG",
42
- },
43
- },
44
- },
45
- })
46
- );
47
- }
48
- )
34
+ ...mswSuccessDeploymentScriptMetadata,
35
+ ...mswSuccessDeploymentDetails
49
36
  );
50
37
  });
51
38
 
52
- it("should log deployments", async () => {
53
- fs.writeFileSync(
54
- "./wrangler.toml",
55
- TOML.stringify({
56
- compatibility_date: "2022-01-12",
57
- name: "test-script-name",
58
- first_party_worker: true,
59
- }),
60
- "utf-8"
61
- );
62
-
63
- await runWrangler("deployments");
39
+ it("should log a help message for deployments command", async () => {
40
+ await runWrangler("deployments --help");
64
41
  expect(std.out).toMatchInlineSnapshot(`
65
- "🚧\`wrangler deployments\` is a beta command. Please report any issues to https://github.com/cloudflare/workers-sdk/issues/new/choose
66
-
67
-
68
- Deployment ID: Constitution-Class
69
- Created on: 2021-01-01T00:00:00.000000Z
70
- Author: Jean-Luc-Picard@federation.org
71
- Trigger: Upload from Wrangler 🤠
72
-
73
- Deployment ID: Intrepid-Class
74
- Created on: 2021-02-02T00:00:00.000000Z
75
- Author: Kathryn-Janeway@federation.org
76
- Trigger: Rollback from Wrangler 🤠
77
- Rollback from: MOCK-DEPLOYMENT-ID-1111
78
-
79
- Deployment ID: Intrepid-Class
80
- Created on: 2021-02-03T00:00:00.000000Z
81
- Author: Kathryn-Janeway@federation.org
82
- Trigger: Wrangler 🤠
83
-
84
- Deployment ID: Galaxy-Class
85
- Created on: 2021-01-04T00:00:00.000000Z
86
- Author: Jean-Luc-Picard@federation.org
87
- Trigger: Rollback from Wrangler 🤠
88
- Rollback from: MOCK-DEPLOYMENT-ID-2222
89
- 🟩 Active"
90
- `);
91
- });
42
+ "wrangler deployments
92
43
 
93
- it("should log deployments for script with passed in name option", async () => {
94
- await runWrangler("deployments --name something-else");
95
- expect(std.out).toMatchInlineSnapshot(`
96
- "🚧\`wrangler deployments\` is a beta command. Please report any issues to https://github.com/cloudflare/workers-sdk/issues/new/choose
97
-
98
-
99
- Deployment ID: Constitution-Class
100
- Created on: 2021-01-01T00:00:00.000000Z
101
- Author: Jean-Luc-Picard@federation.org
102
- Trigger: Upload from Wrangler 🤠
103
-
104
- Deployment ID: Intrepid-Class
105
- Created on: 2021-02-02T00:00:00.000000Z
106
- Author: Kathryn-Janeway@federation.org
107
- Trigger: Rollback from Wrangler 🤠
108
- Rollback from: MOCK-DEPLOYMENT-ID-1111
109
-
110
- Deployment ID: Intrepid-Class
111
- Created on: 2021-02-03T00:00:00.000000Z
112
- Author: Kathryn-Janeway@federation.org
113
- Trigger: Wrangler 🤠
114
-
115
- Deployment ID: Galaxy-Class
116
- Created on: 2021-01-04T00:00:00.000000Z
117
- Author: Jean-Luc-Picard@federation.org
118
- Trigger: Rollback from Wrangler 🤠
119
- Rollback from: MOCK-DEPLOYMENT-ID-2222
120
- 🟩 Active"
44
+ 🚢 List and view details for deployments
45
+
46
+ Commands:
47
+ wrangler deployments list 🚢 Displays the 10 most recent deployments for a worker
48
+ wrangler deployments view [deployment-id] 🔍 View a deployment
49
+
50
+ Flags:
51
+ -j, --experimental-json-config Experimental: Support wrangler.json [boolean]
52
+ -c, --config Path to .toml configuration file [string]
53
+ -e, --env Environment to use for operations and .env files [string]
54
+ -h, --help Show help [boolean]
55
+ -v, --version Show version number [boolean]
56
+
57
+ Options:
58
+ --name The name of your worker [string]
59
+
60
+ 🚧\`wrangler deployments\` is a beta command. Please report any issues to https://github.com/cloudflare/workers-sdk/issues/new/choose"
121
61
  `);
122
62
  });
123
63
 
124
- it("should error on missing script name", async () => {
125
- await expect(runWrangler("deployments")).rejects.toMatchInlineSnapshot(
126
- `[Error: Required Worker name missing. Please specify the Worker name in wrangler.toml, or pass it as an argument with \`--name\`]`
127
- );
64
+ describe("deployments subcommands", () => {
65
+ describe("deployments list", () => {
66
+ it("should log deployments", async () => {
67
+ writeWranglerToml();
68
+
69
+ await runWrangler("deployments list");
70
+ expect(std.out).toMatchInlineSnapshot(`
71
+ "🚧\`wrangler deployments\` is a beta command. Please report any issues to https://github.com/cloudflare/workers-sdk/issues/new/choose
72
+
73
+
74
+ Deployment ID: Constitution-Class
75
+ Created on: 2021-01-01T00:00:00.000000Z
76
+ Author: Jean-Luc-Picard@federation.org
77
+ Source: Upload from Wrangler 🤠
78
+
79
+ Deployment ID: Intrepid-Class
80
+ Created on: 2021-02-02T00:00:00.000000Z
81
+ Author: Kathryn-Janeway@federation.org
82
+ Source: Rollback from Wrangler 🤠
83
+ Rollback from: MOCK-DEPLOYMENT-ID-1111
84
+ Message: Rolled back for this version
85
+
86
+ Deployment ID: 3mEgaU1T-Intrepid-someThing
87
+ Created on: 2021-02-03T00:00:00.000000Z
88
+ Author: Kathryn-Janeway@federation.org
89
+ Source: Wrangler 🤠
90
+
91
+ Deployment ID: Galaxy-Class
92
+ Created on: 2021-01-04T00:00:00.000000Z
93
+ Author: Jean-Luc-Picard@federation.org
94
+ Source: Rollback from Wrangler 🤠
95
+ Rollback from: MOCK-DEPLOYMENT-ID-2222
96
+ 🟩 Active"
97
+ `);
98
+ });
99
+
100
+ it("should log deployments for script with passed in name option", async () => {
101
+ await runWrangler("deployments list --name something-else");
102
+ expect(std.out).toMatchInlineSnapshot(`
103
+ "🚧\`wrangler deployments\` is a beta command. Please report any issues to https://github.com/cloudflare/workers-sdk/issues/new/choose
104
+
105
+
106
+ Deployment ID: Constitution-Class
107
+ Created on: 2021-01-01T00:00:00.000000Z
108
+ Author: Jean-Luc-Picard@federation.org
109
+ Source: Upload from Wrangler 🤠
110
+
111
+ Deployment ID: Intrepid-Class
112
+ Created on: 2021-02-02T00:00:00.000000Z
113
+ Author: Kathryn-Janeway@federation.org
114
+ Source: Rollback from Wrangler 🤠
115
+ Rollback from: MOCK-DEPLOYMENT-ID-1111
116
+ Message: Rolled back for this version
117
+
118
+ Deployment ID: 3mEgaU1T-Intrepid-someThing
119
+ Created on: 2021-02-03T00:00:00.000000Z
120
+ Author: Kathryn-Janeway@federation.org
121
+ Source: Wrangler 🤠
122
+
123
+ Deployment ID: Galaxy-Class
124
+ Created on: 2021-01-04T00:00:00.000000Z
125
+ Author: Jean-Luc-Picard@federation.org
126
+ Source: Rollback from Wrangler 🤠
127
+ Rollback from: MOCK-DEPLOYMENT-ID-2222
128
+ 🟩 Active"
129
+ `);
130
+ });
131
+
132
+ it("should error on missing script name", async () => {
133
+ await expect(
134
+ runWrangler("deployments list")
135
+ ).rejects.toMatchInlineSnapshot(
136
+ `[Error: Required Worker name missing. Please specify the Worker name in wrangler.toml, or pass it as an argument with \`--name\`]`
137
+ );
138
+ });
139
+ });
140
+ describe("deployment view", () => {
141
+ it("should log deployment details", async () => {
142
+ writeWranglerToml();
143
+
144
+ await runWrangler("deployments view 1701-E");
145
+
146
+ expect(std.out).toMatchInlineSnapshot(`
147
+ "🚧\`wrangler deployments\` is a beta command. Please report any issues to https://github.com/cloudflare/workers-sdk/issues/new/choose
148
+
149
+
150
+ Deployment ID: 1701-E
151
+ Created on: 2021-01-01T00:00:00.000000Z
152
+ Author: Jean-Luc-Picard@federation.org
153
+ Source: Wrangler 🤠
154
+ ------------------------------------------------------------
155
+ Author ID: Picard-Gamma-6-0-7-3
156
+ Usage Model: bundled
157
+ Handlers: fetch
158
+ --------------------------bindings--------------------------
159
+ None
160
+ "
161
+ `);
162
+ });
163
+
164
+ it("should log deployment details with bindings", async () => {
165
+ writeWranglerToml();
166
+
167
+ await runWrangler("deployments view bindings-tag");
168
+
169
+ expect(std.out).toMatchInlineSnapshot(`
170
+ "🚧\`wrangler deployments\` is a beta command. Please report any issues to https://github.com/cloudflare/workers-sdk/issues/new/choose
171
+
172
+
173
+ Deployment ID: 1701-E
174
+ Created on: 2021-01-01T00:00:00.000000Z
175
+ Author: Jean-Luc-Picard@federation.org
176
+ Source: Wrangler 🤠
177
+ ------------------------------------------------------------
178
+ Author ID: Picard-Gamma-6-0-7-3
179
+ Usage Model: bundled
180
+ Handlers: fetch
181
+ --------------------------bindings--------------------------
182
+ [[r2_buckets]]
183
+ binding = \\"MY_BUCKET\\"
184
+ bucket_name = \\"testr2\\"
185
+
186
+ "
187
+ `);
188
+ });
189
+ it("should automatically log latest deployment details", async () => {
190
+ writeWranglerToml();
191
+
192
+ await runWrangler("deployments view");
193
+
194
+ expect(std.out).toMatchInlineSnapshot(`
195
+ "🚧\`wrangler deployments\` is a beta command. Please report any issues to https://github.com/cloudflare/workers-sdk/issues/new/choose
196
+
197
+
198
+ Deployment ID: 1701-E
199
+ Created on: 2021-01-01T00:00:00.000000Z
200
+ Author: Jean-Luc-Picard@federation.org
201
+ Source: Wrangler 🤠
202
+ ------------------------------------------------------------
203
+ Author ID: Picard-Gamma-6-0-7-3
204
+ Usage Model: bundled
205
+ Handlers: fetch
206
+ --------------------------bindings--------------------------
207
+ None
208
+ "
209
+ `);
210
+ });
211
+ });
212
+
213
+ describe("rollback", () => {
214
+ const { setIsTTY } = useMockIsTTY();
215
+ const requests = { count: 0 };
216
+ beforeEach(() => {
217
+ setIsTTY(true);
218
+ requests.count = 0;
219
+ msw.use(
220
+ rest.put(
221
+ "*/accounts/:accountID/workers/scripts/:scriptName",
222
+ (req, res, ctx) => {
223
+ expect(req.url.searchParams.get("rollback_to")).toBe(
224
+ "3mEgaU1T-Intrepid-someThing"
225
+ );
226
+
227
+ requests.count++;
228
+
229
+ return res.once(
230
+ ctx.json(
231
+ createFetchResult({
232
+ created_on: "2222-11-18T16:40:48.50545Z",
233
+ modified_on: "2222-01-20T18:08:47.464024Z",
234
+ id: "space_craft_1",
235
+ tag: "alien_tech_001",
236
+ tags: ["hyperdrive", "laser_cannons", "shields"],
237
+ deployment_id: "galactic_mission_alpha",
238
+ logpush: true,
239
+ etag: "13a3240e8fb414561b0366813b0b8f42b3e6cfa0d9e70e99835dae83d0d8a794",
240
+ handlers: [
241
+ "interstellar_communication",
242
+ "hyperspace_navigation",
243
+ ],
244
+ last_deployed_from: "spaceport_alpha",
245
+ usage_model: "intergalactic",
246
+ script: `addEventListener('interstellar_communication', event =\u003e
247
+ { event.respondWith(transmit(event.request)) }
248
+ )`,
249
+ size: "1 light-year",
250
+ })
251
+ )
252
+ );
253
+ }
254
+ )
255
+ );
256
+ });
257
+
258
+ it("should successfully rollback and output a success message", async () => {
259
+ mockConfirm({
260
+ text: "This deployment 3mEgaU1T will immediately replace the current deployment and become the active deployment across all your deployed routes and domains. However, your local development environment will not be affected by this rollback. Note: Rolling back to a previous deployment will not rollback any of the bound resources (Durable Object, R2, KV, etc.).",
261
+ result: true,
262
+ });
263
+
264
+ mockPrompt({
265
+ text: "Please provide a message for this rollback (120 characters max)",
266
+ result: "",
267
+ });
268
+
269
+ await runWrangler("rollback 3mEgaU1T-Intrepid-someThing");
270
+ expect(std.out).toMatchInlineSnapshot(`
271
+ "🚧\`wrangler rollback\` is a beta command. Please report any issues to https://github.com/cloudflare/workers-sdk/issues/new/choose
272
+
273
+
274
+ Successfully rolled back to Deployment ID: 3mEgaU1T-Intrepid-someThing
275
+ Current Deployment ID: galactic_mission_alpha"
276
+ `);
277
+
278
+ expect(requests.count).toEqual(1);
279
+ });
280
+
281
+ it("should early exit from rollback if user denies continuing", async () => {
282
+ mockConfirm({
283
+ text: "This deployment 3mEgaU1T will immediately replace the current deployment and become the active deployment across all your deployed routes and domains. However, your local development environment will not be affected by this rollback. Note: Rolling back to a previous deployment will not rollback any of the bound resources (Durable Object, R2, KV, etc.).",
284
+ result: false,
285
+ });
286
+
287
+ await runWrangler("rollback 3mEgaU1T-Intrpid-someThing");
288
+ expect(std.out).toMatchInlineSnapshot(`
289
+ "🚧\`wrangler rollback\` is a beta command. Please report any issues to https://github.com/cloudflare/workers-sdk/issues/new/choose
290
+ "
291
+ `);
292
+
293
+ expect(requests.count).toEqual(0);
294
+ });
295
+
296
+ it("should skip prompt automatically in rollback if in a non-TTY environment", async () => {
297
+ setIsTTY(false);
298
+
299
+ await runWrangler("rollback 3mEgaU1T-Intrepid-someThing");
300
+ expect(std.out).toMatchInlineSnapshot(`
301
+ "🚧\`wrangler rollback\` is a beta command. Please report any issues to https://github.com/cloudflare/workers-sdk/issues/new/choose
302
+
303
+ ? This deployment 3mEgaU1T will immediately replace the current deployment and become the active deployment across all your deployed routes and domains. However, your local development environment will not be affected by this rollback. Note: Rolling back to a previous deployment will not rollback any of the bound resources (Durable Object, R2, KV, etc.).
304
+ 🤖 Using default value in non-interactive context: yes
305
+ ? Please provide a message for this rollback (120 characters max)
306
+ 🤖 Using default value in non-interactive context:
307
+
308
+ Successfully rolled back to Deployment ID: 3mEgaU1T-Intrepid-someThing
309
+ Current Deployment ID: galactic_mission_alpha"
310
+ `);
311
+
312
+ expect(requests.count).toEqual(1);
313
+ });
314
+
315
+ it("should skip prompt automatically in rollback if message flag is provided", async () => {
316
+ await runWrangler(
317
+ `rollback 3mEgaU1T-Intrepid-someThing --message "test"`
318
+ );
319
+ expect(std.out).toMatchInlineSnapshot(`
320
+ "🚧\`wrangler rollback\` is a beta command. Please report any issues to https://github.com/cloudflare/workers-sdk/issues/new/choose
321
+
322
+
323
+ Successfully rolled back to Deployment ID: 3mEgaU1T-Intrepid-someThing
324
+ Current Deployment ID: galactic_mission_alpha"
325
+ `);
326
+
327
+ expect(requests.count).toEqual(1);
328
+ });
329
+
330
+ it("should skip prompt automatically in rollback with empty message", async () => {
331
+ await runWrangler(
332
+ `rollback 3mEgaU1T-Intrepid-someThing --message "test"`
333
+ );
334
+ expect(std.out).toMatchInlineSnapshot(`
335
+ "🚧\`wrangler rollback\` is a beta command. Please report any issues to https://github.com/cloudflare/workers-sdk/issues/new/choose
336
+
337
+
338
+ Successfully rolled back to Deployment ID: 3mEgaU1T-Intrepid-someThing
339
+ Current Deployment ID: galactic_mission_alpha"
340
+ `);
341
+
342
+ expect(requests.count).toEqual(1);
343
+ });
344
+
345
+ it("should automatically rollback to previous deployment when id is not specified", async () => {
346
+ mockConfirm({
347
+ text: "This deployment 3mEgaU1T will immediately replace the current deployment and become the active deployment across all your deployed routes and domains. However, your local development environment will not be affected by this rollback. Note: Rolling back to a previous deployment will not rollback any of the bound resources (Durable Object, R2, KV, etc.).",
348
+ result: true,
349
+ });
350
+
351
+ mockPrompt({
352
+ text: "Please provide a message for this rollback (120 characters max)",
353
+ result: "",
354
+ });
355
+
356
+ await runWrangler("rollback");
357
+ expect(std.out).toMatchInlineSnapshot(`
358
+ "🚧\`wrangler rollback\` is a beta command. Please report any issues to https://github.com/cloudflare/workers-sdk/issues/new/choose
359
+
360
+
361
+ Successfully rolled back to Deployment ID: 3mEgaU1T-Intrepid-someThing
362
+ Current Deployment ID: galactic_mission_alpha"
363
+ `);
364
+
365
+ expect(requests.count).toEqual(1);
366
+ });
367
+ });
128
368
  });
129
369
  });
@@ -49,6 +49,7 @@ export const mswSuccessDeployments = [
49
49
  annotations: {
50
50
  "workers/triggered_by": "rollback",
51
51
  "workers/rollback_from": "MOCK-DEPLOYMENT-ID-1111",
52
+ "workers/message": "Rolled back for this version",
52
53
  },
53
54
  metadata: {
54
55
  author_id: "Kathryn-Jane-Gamma-6-0-7-3",
@@ -59,7 +60,7 @@ export const mswSuccessDeployments = [
59
60
  },
60
61
  },
61
62
  {
62
- id: "Intrepid-Class",
63
+ id: "3mEgaU1T-Intrepid-someThing",
63
64
  number: "NCC-74656",
64
65
  metadata: {
65
66
  author_id: "Kathryn-Jane-Gamma-6-0-7-3",
@@ -77,17 +78,83 @@ export const mswSuccessDeployments = [
77
78
  ),
78
79
  ];
79
80
 
80
- export const mswSuccessLastDeployment = [
81
+ export const mswSuccessDeploymentScriptMetadata = [
81
82
  rest.get(
82
83
  "*/accounts/:accountId/workers/services/:scriptName",
83
84
  (_, res, ctx) => {
84
85
  return res.once(
85
86
  ctx.json(
86
87
  createFetchResult({
87
- default_environment: { script: { last_deployed_from: "wrangler" } },
88
+ default_environment: {
89
+ script: { last_deployed_from: "wrangler", tag: "MOCK-TAG" },
90
+ },
91
+ })
92
+ )
93
+ );
94
+ }
95
+ ),
96
+ ];
97
+
98
+ export const mswSuccessDeploymentDetails = [
99
+ rest.get(
100
+ "*/accounts/:accountId/workers/deployments/by-script/:scriptTag/detail/:deploymentId",
101
+ (req, res, ctx) => {
102
+ let bindings: object[] = [];
103
+ if (req.url.toString().includes("bindings-tag")) {
104
+ bindings = [
105
+ {
106
+ bucket_name: "testr2",
107
+ name: "MY_BUCKET",
108
+ type: "r2_bucket",
109
+ },
110
+ ];
111
+ }
112
+
113
+ expect(req.url.toString().includes("1701-E"));
114
+ return res.once(
115
+ ctx.json(
116
+ createFetchResult({
117
+ id: "1701-E",
118
+ Number: 0,
119
+ metadata: {
120
+ author_id: "Picard-Gamma-6-0-7-3",
121
+ author_email: "Jean-Luc-Picard@federation.org",
122
+ source: "wrangler",
123
+ created_on: "2021-01-01T00:00:00.000000Z",
124
+ modified_on: "2021-01-01T00:00:00.000000Z",
125
+ },
126
+ resources: {
127
+ script: {
128
+ etag: "mock-e-tag",
129
+ handlers: ["fetch"],
130
+ last_deployed_from: "wrangler",
131
+ },
132
+ script_runtime: {
133
+ usage_model: "bundled",
134
+ },
135
+ bindings: bindings,
136
+ },
88
137
  })
89
138
  )
90
139
  );
91
140
  }
92
141
  ),
142
+ // ?deployment=<deploymentid> param used to get deployment <script content> as text
143
+ rest.get(
144
+ "*/accounts/:accountId/workers/scripts/:scriptName",
145
+ (req, res, ctx) => {
146
+ let scriptContent = "";
147
+ if (req.url.searchParams.get("deployment") === "1701-E") {
148
+ scriptContent = `
149
+ export default {
150
+ async fetch(request) {
151
+ return new Response('Hello World from Deployment 1701-E');
152
+ },
153
+ };`;
154
+ } else {
155
+ return res(ctx.status(400));
156
+ }
157
+ return res.once(ctx.text(scriptContent));
158
+ }
159
+ ),
93
160
  ];
@@ -2,7 +2,8 @@ import { setupServer } from "msw/node";
2
2
  import { default as mswAccessHandlers } from "./handlers/access";
3
3
  import {
4
4
  mswSuccessDeployments,
5
- mswSuccessLastDeployment,
5
+ mswSuccessDeploymentScriptMetadata,
6
+ mswSuccessDeploymentDetails,
6
7
  } from "./handlers/deployments";
7
8
  import { mswSuccessNamespacesHandlers } from "./handlers/namespaces";
8
9
  import { mswSuccessOauthHandlers } from "./handlers/oauth";
@@ -45,6 +46,7 @@ export {
45
46
  mswSucessScriptHandlers,
46
47
  mswZoneHandlers,
47
48
  mswSuccessDeployments,
49
+ mswSuccessDeploymentDetails,
48
50
  mswAccessHandlers,
49
- mswSuccessLastDeployment,
51
+ mswSuccessDeploymentScriptMetadata,
50
52
  };
@@ -55,14 +55,17 @@ describe("wrangler", () => {
55
55
  wrangler logout 🚪 Logout from Cloudflare
56
56
  wrangler whoami 🕵️ Retrieve your user info and test your auth config
57
57
  wrangler types 📝 Generate types from bindings & module rules in config
58
- wrangler deployments 🚢 Displays the 10 most recent deployments for a worker
58
+ wrangler deployments 🚢 List and view details for deployments
59
+ wrangler rollback [deployment-id] 🔙 Rollback a deployment
59
60
 
60
61
  Flags:
61
62
  -j, --experimental-json-config Experimental: Support wrangler.json [boolean]
62
63
  -c, --config Path to .toml configuration file [string]
63
64
  -e, --env Environment to use for operations and .env files [string]
64
65
  -h, --help Show help [boolean]
65
- -v, --version Show version number [boolean]"
66
+ -v, --version Show version number [boolean]
67
+
68
+ 🚧\`wrangler rollback\` is a beta command. Please report any issues to https://github.com/cloudflare/workers-sdk/issues/new/choose"
66
69
  `);
67
70
 
68
71
  expect(std.err).toMatchInlineSnapshot(`""`);
@@ -105,14 +108,17 @@ describe("wrangler", () => {
105
108
  wrangler logout 🚪 Logout from Cloudflare
106
109
  wrangler whoami 🕵️ Retrieve your user info and test your auth config
107
110
  wrangler types 📝 Generate types from bindings & module rules in config
108
- wrangler deployments 🚢 Displays the 10 most recent deployments for a worker
111
+ wrangler deployments 🚢 List and view details for deployments
112
+ wrangler rollback [deployment-id] 🔙 Rollback a deployment
109
113
 
110
114
  Flags:
111
115
  -j, --experimental-json-config Experimental: Support wrangler.json [boolean]
112
116
  -c, --config Path to .toml configuration file [string]
113
117
  -e, --env Environment to use for operations and .env files [string]
114
118
  -h, --help Show help [boolean]
115
- -v, --version Show version number [boolean]"
119
+ -v, --version Show version number [boolean]
120
+
121
+ 🚧\`wrangler rollback\` is a beta command. Please report any issues to https://github.com/cloudflare/workers-sdk/issues/new/choose"
116
122
  `);
117
123
  expect(std.err).toMatchInlineSnapshot(`
118
124
  "X [ERROR] Unknown argument: invalid-command