wrangler 2.12.2 → 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 +4 -3
- package/src/__tests__/configuration.test.ts +14 -12
- package/src/__tests__/d1/execute.test.ts +2 -0
- package/src/__tests__/d1/migrate.test.ts +2 -0
- package/src/__tests__/delete.test.ts +6 -0
- package/src/__tests__/deployments.test.ts +335 -95
- package/src/__tests__/dev.test.tsx +71 -56
- package/src/__tests__/helpers/mock-console.ts +6 -0
- package/src/__tests__/helpers/msw/handlers/deployments.ts +70 -3
- package/src/__tests__/helpers/msw/index.ts +4 -2
- package/src/__tests__/helpers/worker-scripts/parent-worker.js +4 -1
- package/src/__tests__/index.test.ts +10 -4
- package/src/__tests__/init.test.ts +127 -96
- package/src/__tests__/jest.setup.ts +4 -0
- package/src/__tests__/kv.test.ts +9 -9
- package/src/__tests__/middleware.scheduled.test.ts +2 -2
- package/src/__tests__/middleware.test.ts +2 -2
- package/src/__tests__/mtls-certificates.test.ts +5 -2
- package/src/__tests__/pages/deployment-list.test.ts +2 -0
- package/src/__tests__/pages/project-list.test.ts +2 -0
- package/src/__tests__/pages/project-upload.test.ts +43 -24
- package/src/__tests__/pages/publish.test.ts +69 -69
- package/src/__tests__/publish.test.ts +275 -155
- package/src/__tests__/pubsub.test.ts +3 -0
- package/src/__tests__/queues.test.ts +5 -2
- package/src/__tests__/tsconfig.tsbuildinfo +1 -1
- package/src/__tests__/worker-namespace.test.ts +1 -0
- package/src/bundle.ts +10 -0
- package/src/config/environment.ts +3 -0
- package/src/config/validation.ts +3 -1
- package/src/create-worker-upload-form.ts +1 -1
- package/src/d1/backups.tsx +15 -11
- package/src/d1/create.tsx +20 -16
- package/src/d1/execute.tsx +21 -18
- package/src/d1/list.tsx +2 -2
- package/src/d1/migrations/apply.tsx +35 -29
- package/src/d1/migrations/create.tsx +15 -12
- package/src/d1/migrations/list.tsx +10 -7
- package/src/deployments.ts +260 -8
- package/src/index.ts +75 -22
- package/src/init.ts +144 -135
- package/src/metrics/send-event.ts +2 -1
- package/src/pages/deployments.tsx +3 -5
- package/src/pages/functions/tsconfig.tsbuildinfo +1 -1
- package/src/pages/projects.tsx +2 -5
- package/src/pages/upload.tsx +29 -9
- package/src/publish/publish.ts +7 -18
- package/src/queues/cli/commands/consumer/add.ts +6 -0
- package/src/queues/client.ts +1 -0
- package/src/utils/render.ts +93 -0
- package/templates/d1-beta-facade.js +3 -0
- package/wrangler-dist/cli.d.ts +2 -0
- package/wrangler-dist/cli.js +8174 -7873
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wrangler",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.13.0",
|
|
4
4
|
"description": "Command-line interface for all things Cloudflare Workers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"wrangler",
|
|
@@ -63,9 +63,10 @@
|
|
|
63
63
|
"emit-types": "tsc -p tsconfig.emit.json && node -r esbuild-register scripts/emit-types.ts",
|
|
64
64
|
"prepublishOnly": "SOURCEMAPS=false npm run build",
|
|
65
65
|
"start": "npm run bundle && cross-env NODE_OPTIONS=--enable-source-maps ./bin/wrangler.js",
|
|
66
|
-
"test": "npm run assert-git-version && jest
|
|
66
|
+
"test": "npm run assert-git-version && jest",
|
|
67
67
|
"test-watch": "npm run test -- --runInBand --testTimeout=50000 --watch",
|
|
68
|
-
"test:ci": "npm run test -- --
|
|
68
|
+
"test:ci": "npm run test -- --coverage",
|
|
69
|
+
"test:debug": "npm run test -- --silent=false --verbose=true"
|
|
69
70
|
},
|
|
70
71
|
"jest": {
|
|
71
72
|
"coverageReporters": [
|
|
@@ -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
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
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
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
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,9 +1,11 @@
|
|
|
1
|
+
import { mockConsoleMethods } from "../helpers/mock-console";
|
|
1
2
|
import { useMockIsTTY } from "../helpers/mock-istty";
|
|
2
3
|
import { runInTempDir } from "../helpers/run-in-tmp";
|
|
3
4
|
import { runWrangler } from "../helpers/run-wrangler";
|
|
4
5
|
import writeWranglerToml from "../helpers/write-wrangler-toml";
|
|
5
6
|
|
|
6
7
|
describe("execute", () => {
|
|
8
|
+
mockConsoleMethods();
|
|
7
9
|
runInTempDir();
|
|
8
10
|
const { setIsTTY } = useMockIsTTY();
|
|
9
11
|
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { cwd } from "process";
|
|
2
2
|
import { reinitialiseAuthTokens } from "../../user";
|
|
3
3
|
import { mockAccountId, mockApiToken } from "../helpers/mock-account-id";
|
|
4
|
+
import { mockConsoleMethods } from "../helpers/mock-console";
|
|
4
5
|
import { useMockIsTTY } from "../helpers/mock-istty";
|
|
5
6
|
import { runInTempDir } from "../helpers/run-in-tmp";
|
|
6
7
|
import { runWrangler } from "../helpers/run-wrangler";
|
|
@@ -8,6 +9,7 @@ import writeWranglerToml from "../helpers/write-wrangler-toml";
|
|
|
8
9
|
|
|
9
10
|
describe("migrate", () => {
|
|
10
11
|
runInTempDir();
|
|
12
|
+
mockConsoleMethods();
|
|
11
13
|
const { setIsTTY } = useMockIsTTY();
|
|
12
14
|
|
|
13
15
|
describe("create", () => {
|
|
@@ -31,6 +31,7 @@ describe("delete", () => {
|
|
|
31
31
|
Object {
|
|
32
32
|
"debug": "",
|
|
33
33
|
"err": "",
|
|
34
|
+
"info": "",
|
|
34
35
|
"out": "Successfully deleted my-script",
|
|
35
36
|
"warn": "",
|
|
36
37
|
}
|
|
@@ -51,6 +52,7 @@ describe("delete", () => {
|
|
|
51
52
|
Object {
|
|
52
53
|
"debug": "",
|
|
53
54
|
"err": "",
|
|
55
|
+
"info": "",
|
|
54
56
|
"out": "Successfully deleted test-name",
|
|
55
57
|
"warn": "",
|
|
56
58
|
}
|
|
@@ -64,6 +66,7 @@ describe("delete", () => {
|
|
|
64
66
|
Object {
|
|
65
67
|
"debug": "",
|
|
66
68
|
"err": "",
|
|
69
|
+
"info": "",
|
|
67
70
|
"out": "--dry-run: exiting now.",
|
|
68
71
|
"warn": "",
|
|
69
72
|
}
|
|
@@ -82,6 +85,7 @@ describe("delete", () => {
|
|
|
82
85
|
Object {
|
|
83
86
|
"debug": "",
|
|
84
87
|
"err": "",
|
|
88
|
+
"info": "",
|
|
85
89
|
"out": "",
|
|
86
90
|
"warn": "",
|
|
87
91
|
}
|
|
@@ -126,6 +130,7 @@ describe("delete", () => {
|
|
|
126
130
|
Object {
|
|
127
131
|
"debug": "",
|
|
128
132
|
"err": "",
|
|
133
|
+
"info": "",
|
|
129
134
|
"out": "🌀 Deleted asset namespace for Workers Site \\"__my-script-workers_sites_assets\\"
|
|
130
135
|
Successfully deleted my-script",
|
|
131
136
|
"warn": "",
|
|
@@ -202,6 +207,7 @@ describe("delete", () => {
|
|
|
202
207
|
Object {
|
|
203
208
|
"debug": "",
|
|
204
209
|
"err": "",
|
|
210
|
+
"info": "",
|
|
205
211
|
"out": "🌀 Deleted asset namespace for Workers Site \\"__my-script-workers_sites_assets\\"
|
|
206
212
|
🌀 Deleted asset namespace for Workers Site \\"__my-script-workers_sites_assets_preview\\"
|
|
207
213
|
Successfully deleted my-script",
|
|
@@ -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
|
-
|
|
30
|
-
|
|
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
|
-
|
|
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
|
-
"
|
|
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
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
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
|
-
|
|
125
|
-
|
|
126
|
-
|
|
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
|
});
|