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
|
@@ -4,266 +4,271 @@ import { mockAccountId, mockApiToken } from "./helpers/mock-account-id";
|
|
|
4
4
|
import { setMockResponse, unsetAllMocks } from "./helpers/mock-cfetch";
|
|
5
5
|
import { mockConsoleMethods } from "./helpers/mock-console";
|
|
6
6
|
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
mockConfirm,
|
|
8
|
+
mockPrompt,
|
|
9
|
+
clearConfirmMocks,
|
|
10
|
+
clearPromptMocks,
|
|
11
11
|
} from "./helpers/mock-dialogs";
|
|
12
|
-
import {
|
|
12
|
+
import {
|
|
13
|
+
mockGetMemberships,
|
|
14
|
+
mockGetMembershipsFail,
|
|
15
|
+
} from "./helpers/mock-oauth-flow";
|
|
13
16
|
import { useMockStdin } from "./helpers/mock-stdin";
|
|
14
17
|
import { runInTempDir } from "./helpers/run-in-tmp";
|
|
15
18
|
import { runWrangler } from "./helpers/run-wrangler";
|
|
16
19
|
|
|
17
20
|
describe("wrangler secret", () => {
|
|
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
|
-
result: `hunter2
|
|
21
|
+
const std = mockConsoleMethods();
|
|
22
|
+
|
|
23
|
+
runInTempDir();
|
|
24
|
+
mockAccountId();
|
|
25
|
+
mockApiToken();
|
|
26
|
+
|
|
27
|
+
afterEach(() => {
|
|
28
|
+
unsetAllMocks();
|
|
29
|
+
clearConfirmMocks();
|
|
30
|
+
clearPromptMocks();
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
describe("put", () => {
|
|
34
|
+
function mockPutRequest(
|
|
35
|
+
input: { name: string; text: string },
|
|
36
|
+
env?: string,
|
|
37
|
+
legacyEnv = false
|
|
38
|
+
) {
|
|
39
|
+
const servicesOrScripts = env && !legacyEnv ? "services" : "scripts";
|
|
40
|
+
const environment = env && !legacyEnv ? "/environments/:envName" : "";
|
|
41
|
+
setMockResponse(
|
|
42
|
+
`/accounts/:accountId/workers/${servicesOrScripts}/:scriptName${environment}/secrets`,
|
|
43
|
+
"PUT",
|
|
44
|
+
([_url, accountId, scriptName, envName], { body }) => {
|
|
45
|
+
expect(accountId).toEqual("some-account-id");
|
|
46
|
+
expect(scriptName).toEqual(
|
|
47
|
+
legacyEnv && env ? `script-name-${env}` : "script-name"
|
|
48
|
+
);
|
|
49
|
+
if (!legacyEnv) {
|
|
50
|
+
expect(envName).toEqual(env);
|
|
51
|
+
}
|
|
52
|
+
const { name, text, type } = JSON.parse(body as string);
|
|
53
|
+
expect(type).toEqual("secret_text");
|
|
54
|
+
expect(name).toEqual(input.name);
|
|
55
|
+
expect(text).toEqual(input.text);
|
|
56
|
+
|
|
57
|
+
return { name, type };
|
|
58
|
+
}
|
|
59
|
+
);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
describe("interactive", () => {
|
|
63
|
+
useMockStdin({ isTTY: true });
|
|
64
|
+
|
|
65
|
+
it("should trim stdin secret value", async () => {
|
|
66
|
+
mockPrompt({
|
|
67
|
+
text: "Enter a secret value:",
|
|
68
|
+
type: "password",
|
|
69
|
+
result: `hunter2
|
|
68
70
|
`,
|
|
69
|
-
|
|
71
|
+
});
|
|
70
72
|
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
73
|
+
mockPutRequest({ name: `secret-name`, text: `hunter2` });
|
|
74
|
+
await runWrangler("secret put secret-name --name script-name");
|
|
75
|
+
expect(std.out).toMatchInlineSnapshot(`
|
|
74
76
|
"🌀 Creating the secret for script script-name
|
|
75
77
|
✨ Success! Uploaded secret secret-name"
|
|
76
78
|
`);
|
|
77
|
-
|
|
79
|
+
});
|
|
78
80
|
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
81
|
+
it("should create a secret", async () => {
|
|
82
|
+
mockPrompt({
|
|
83
|
+
text: "Enter a secret value:",
|
|
84
|
+
type: "password",
|
|
85
|
+
result: "the-secret",
|
|
86
|
+
});
|
|
85
87
|
|
|
86
|
-
|
|
87
|
-
|
|
88
|
+
mockPutRequest({ name: "the-key", text: "the-secret" });
|
|
89
|
+
await runWrangler("secret put the-key --name script-name");
|
|
88
90
|
|
|
89
|
-
|
|
91
|
+
expect(std.out).toMatchInlineSnapshot(`
|
|
90
92
|
"🌀 Creating the secret for script script-name
|
|
91
93
|
✨ Success! Uploaded secret the-key"
|
|
92
94
|
`);
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
95
|
+
expect(std.err).toMatchInlineSnapshot(`""`);
|
|
96
|
+
});
|
|
97
|
+
|
|
98
|
+
it("should create a secret: legacy envs", async () => {
|
|
99
|
+
mockPrompt({
|
|
100
|
+
text: "Enter a secret value:",
|
|
101
|
+
type: "password",
|
|
102
|
+
result: "the-secret",
|
|
103
|
+
});
|
|
104
|
+
|
|
105
|
+
mockPutRequest(
|
|
106
|
+
{ name: "the-key", text: "the-secret" },
|
|
107
|
+
"some-env",
|
|
108
|
+
true
|
|
109
|
+
);
|
|
110
|
+
await runWrangler(
|
|
111
|
+
"secret put the-key --name script-name --env some-env --legacy-env"
|
|
112
|
+
);
|
|
113
|
+
|
|
114
|
+
expect(std.out).toMatchInlineSnapshot(`
|
|
113
115
|
"🌀 Creating the secret for script script-name-some-env
|
|
114
116
|
✨ Success! Uploaded secret the-key"
|
|
115
117
|
`);
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
118
|
+
expect(std.err).toMatchInlineSnapshot(`""`);
|
|
119
|
+
});
|
|
120
|
+
|
|
121
|
+
it("should create a secret: service envs", async () => {
|
|
122
|
+
mockPrompt({
|
|
123
|
+
text: "Enter a secret value:",
|
|
124
|
+
type: "password",
|
|
125
|
+
result: "the-secret",
|
|
126
|
+
});
|
|
127
|
+
|
|
128
|
+
mockPutRequest(
|
|
129
|
+
{ name: "the-key", text: "the-secret" },
|
|
130
|
+
"some-env",
|
|
131
|
+
false
|
|
132
|
+
);
|
|
133
|
+
await runWrangler(
|
|
134
|
+
"secret put the-key --name script-name --env some-env --legacy-env false"
|
|
135
|
+
);
|
|
136
|
+
|
|
137
|
+
expect(std.out).toMatchInlineSnapshot(`
|
|
136
138
|
"🌀 Creating the secret for script script-name (some-env)
|
|
137
139
|
✨ Success! Uploaded secret the-key"
|
|
138
140
|
`);
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
141
|
+
expect(std.err).toMatchInlineSnapshot(`""`);
|
|
142
|
+
});
|
|
143
|
+
|
|
144
|
+
it("should error without a script name", async () => {
|
|
145
|
+
let error: Error | undefined;
|
|
146
|
+
try {
|
|
147
|
+
await runWrangler("secret put the-key");
|
|
148
|
+
} catch (e) {
|
|
149
|
+
error = e as Error;
|
|
150
|
+
}
|
|
151
|
+
expect(std.out).toMatchInlineSnapshot(`
|
|
150
152
|
"
|
|
151
153
|
[32mIf you think this is a bug then please create an issue at https://github.com/cloudflare/wrangler2/issues/new/choose[0m"
|
|
152
154
|
`);
|
|
153
|
-
|
|
155
|
+
expect(std.err).toMatchInlineSnapshot(`
|
|
154
156
|
"[31mX [41;31m[[41;97mERROR[41;31m][0m [1mMissing script name[0m
|
|
155
157
|
|
|
156
158
|
"
|
|
157
159
|
`);
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
160
|
+
expect(error).toMatchInlineSnapshot(`[Error: Missing script name]`);
|
|
161
|
+
});
|
|
162
|
+
});
|
|
163
|
+
|
|
164
|
+
describe("non-interactive", () => {
|
|
165
|
+
const mockStdIn = useMockStdin({ isTTY: false });
|
|
166
|
+
|
|
167
|
+
it("should trim stdin secret value, from piped input", async () => {
|
|
168
|
+
mockPutRequest({ name: "the-key", text: "the-secret" });
|
|
169
|
+
// Pipe the secret in as three chunks to test that we reconstitute it correctly.
|
|
170
|
+
mockStdIn.send(
|
|
171
|
+
`the`,
|
|
172
|
+
`-`,
|
|
173
|
+
`secret
|
|
172
174
|
` // whitespace & newline being removed
|
|
173
|
-
|
|
174
|
-
|
|
175
|
+
);
|
|
176
|
+
await runWrangler("secret put the-key --name script-name");
|
|
175
177
|
|
|
176
|
-
|
|
178
|
+
expect(std.out).toMatchInlineSnapshot(`
|
|
177
179
|
"🌀 Creating the secret for script script-name
|
|
178
180
|
✨ Success! Uploaded secret the-key"
|
|
179
181
|
`);
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
182
|
+
expect(std.warn).toMatchInlineSnapshot(`""`);
|
|
183
|
+
expect(std.err).toMatchInlineSnapshot(`""`);
|
|
184
|
+
});
|
|
183
185
|
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
186
|
+
it("should create a secret, from piped input", async () => {
|
|
187
|
+
mockPutRequest({ name: "the-key", text: "the-secret" });
|
|
188
|
+
// Pipe the secret in as three chunks to test that we reconstitute it correctly.
|
|
189
|
+
mockStdIn.send("the", "-", "secret");
|
|
190
|
+
await runWrangler("secret put the-key --name script-name");
|
|
189
191
|
|
|
190
|
-
|
|
192
|
+
expect(std.out).toMatchInlineSnapshot(`
|
|
191
193
|
"🌀 Creating the secret for script script-name
|
|
192
194
|
✨ Success! Uploaded secret the-key"
|
|
193
195
|
`);
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
196
|
+
expect(std.warn).toMatchInlineSnapshot(`""`);
|
|
197
|
+
expect(std.err).toMatchInlineSnapshot(`""`);
|
|
198
|
+
});
|
|
199
|
+
|
|
200
|
+
it("should error if the piped input fails", async () => {
|
|
201
|
+
mockPutRequest({ name: "the-key", text: "the-secret" });
|
|
202
|
+
mockStdIn.throwError(new Error("Error in stdin stream"));
|
|
203
|
+
await expect(
|
|
204
|
+
runWrangler("secret put the-key --name script-name")
|
|
205
|
+
).rejects.toThrowErrorMatchingInlineSnapshot(`"Error in stdin stream"`);
|
|
206
|
+
|
|
207
|
+
expect(std.out).toMatchInlineSnapshot(`
|
|
206
208
|
"
|
|
207
209
|
[32mIf you think this is a bug then please create an issue at https://github.com/cloudflare/wrangler2/issues/new/choose[0m"
|
|
208
210
|
`);
|
|
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
|
-
|
|
211
|
+
expect(std.warn).toMatchInlineSnapshot(`""`);
|
|
212
|
+
});
|
|
213
|
+
|
|
214
|
+
describe("with accountId", () => {
|
|
215
|
+
mockAccountId({ accountId: null });
|
|
216
|
+
|
|
217
|
+
it("should error if request for memberships fails", async () => {
|
|
218
|
+
mockGetMembershipsFail();
|
|
219
|
+
await expect(
|
|
220
|
+
runWrangler("secret put the-key --name script-name")
|
|
221
|
+
).rejects.toThrowErrorMatchingInlineSnapshot(
|
|
222
|
+
`"A request to the Cloudflare API (/memberships) failed."`
|
|
223
|
+
);
|
|
224
|
+
});
|
|
225
|
+
|
|
226
|
+
it("should error if a user has no account", async () => {
|
|
227
|
+
mockGetMemberships([]);
|
|
228
|
+
await expect(runWrangler("secret put the-key --name script-name"))
|
|
229
|
+
.rejects.toThrowErrorMatchingInlineSnapshot(`
|
|
230
|
+
"Failed to automatically retrieve account IDs for the logged in user.
|
|
231
|
+
In a non-interactive environment, it is mandatory to specify an account ID, either by assigning its value to CLOUDFLARE_ACCOUNT_ID, or as \`account_id\` in your \`wrangler.toml\` file."
|
|
232
|
+
`);
|
|
233
|
+
});
|
|
234
|
+
|
|
235
|
+
it("should use the account from wrangler.toml", async () => {
|
|
236
|
+
fs.writeFileSync(
|
|
237
|
+
"wrangler.toml",
|
|
238
|
+
TOML.stringify({
|
|
239
|
+
account_id: "some-account-id",
|
|
240
|
+
}),
|
|
241
|
+
"utf-8"
|
|
242
|
+
);
|
|
243
|
+
mockStdIn.send("the-secret");
|
|
244
|
+
mockPutRequest({ name: "the-key", text: "the-secret" });
|
|
245
|
+
await runWrangler("secret put the-key --name script-name");
|
|
246
|
+
expect(std.out).toMatchInlineSnapshot(`
|
|
239
247
|
"🌀 Creating the secret for script script-name
|
|
240
248
|
✨ Success! Uploaded secret the-key"
|
|
241
249
|
`);
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
await expect(runWrangler("secret put the-key --name script-name"))
|
|
266
|
-
.rejects.toThrowErrorMatchingInlineSnapshot(`
|
|
250
|
+
expect(std.warn).toMatchInlineSnapshot(`""`);
|
|
251
|
+
expect(std.err).toMatchInlineSnapshot(`""`);
|
|
252
|
+
});
|
|
253
|
+
|
|
254
|
+
it("should error if a user has multiple accounts, and has not specified an account in wrangler.toml", async () => {
|
|
255
|
+
mockGetMemberships([
|
|
256
|
+
{
|
|
257
|
+
id: "1",
|
|
258
|
+
account: { id: "account-id-1", name: "account-name-1" },
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
id: "2",
|
|
262
|
+
account: { id: "account-id-2", name: "account-name-2" },
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
id: "3",
|
|
266
|
+
account: { id: "account-id-3", name: "account-name-3" },
|
|
267
|
+
},
|
|
268
|
+
]);
|
|
269
|
+
|
|
270
|
+
await expect(runWrangler("secret put the-key --name script-name"))
|
|
271
|
+
.rejects.toThrowErrorMatchingInlineSnapshot(`
|
|
267
272
|
"More than one account available but unable to select one in non-interactive mode.
|
|
268
273
|
Please set the appropriate \`account_id\` in your \`wrangler.toml\` file.
|
|
269
274
|
Available accounts are (\\"<name>\\" - \\"<id>\\"):
|
|
@@ -271,152 +276,152 @@ describe("wrangler secret", () => {
|
|
|
271
276
|
\\"account-name-2\\" - \\"account-id-2\\")
|
|
272
277
|
\\"account-name-3\\" - \\"account-id-3\\")"
|
|
273
278
|
`);
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
279
|
+
});
|
|
280
|
+
});
|
|
281
|
+
});
|
|
282
|
+
});
|
|
283
|
+
|
|
284
|
+
describe("delete", () => {
|
|
285
|
+
function mockDeleteRequest(
|
|
286
|
+
input: {
|
|
287
|
+
scriptName: string;
|
|
288
|
+
secretName: string;
|
|
289
|
+
},
|
|
290
|
+
env?: string,
|
|
291
|
+
legacyEnv = false
|
|
292
|
+
) {
|
|
293
|
+
const servicesOrScripts = env && !legacyEnv ? "services" : "scripts";
|
|
294
|
+
const environment = env && !legacyEnv ? "/environments/:envName" : "";
|
|
295
|
+
setMockResponse(
|
|
296
|
+
`/accounts/:accountId/workers/${servicesOrScripts}/:scriptName${environment}/secrets/:secretName`,
|
|
297
|
+
"DELETE",
|
|
298
|
+
([_url, accountId, scriptName, envOrSecretName, secretName]) => {
|
|
299
|
+
expect(accountId).toEqual("some-account-id");
|
|
300
|
+
expect(scriptName).toEqual(
|
|
301
|
+
legacyEnv && env ? `script-name-${env}` : "script-name"
|
|
302
|
+
);
|
|
303
|
+
if (!legacyEnv) {
|
|
304
|
+
if (env) {
|
|
305
|
+
expect(envOrSecretName).toEqual(env);
|
|
306
|
+
expect(secretName).toEqual(input.secretName);
|
|
307
|
+
} else {
|
|
308
|
+
expect(envOrSecretName).toEqual(input.secretName);
|
|
309
|
+
}
|
|
310
|
+
} else {
|
|
311
|
+
expect(envOrSecretName).toEqual(input.secretName);
|
|
312
|
+
}
|
|
313
|
+
return null;
|
|
314
|
+
}
|
|
315
|
+
);
|
|
316
|
+
}
|
|
317
|
+
it("should delete a secret", async () => {
|
|
318
|
+
mockDeleteRequest({ scriptName: "script-name", secretName: "the-key" });
|
|
319
|
+
mockConfirm({
|
|
320
|
+
text: "Are you sure you want to permanently delete the variable the-key on the script script-name?",
|
|
321
|
+
result: true,
|
|
322
|
+
});
|
|
323
|
+
await runWrangler("secret delete the-key --name script-name");
|
|
324
|
+
expect(std.out).toMatchInlineSnapshot(`
|
|
320
325
|
"🌀 Deleting the secret the-key on script script-name
|
|
321
326
|
✨ Success! Deleted secret the-key"
|
|
322
327
|
`);
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
328
|
+
expect(std.err).toMatchInlineSnapshot(`""`);
|
|
329
|
+
});
|
|
330
|
+
|
|
331
|
+
it("should delete a secret: legacy envs", async () => {
|
|
332
|
+
mockDeleteRequest(
|
|
333
|
+
{ scriptName: "script-name", secretName: "the-key" },
|
|
334
|
+
"some-env",
|
|
335
|
+
true
|
|
336
|
+
);
|
|
337
|
+
mockConfirm({
|
|
338
|
+
text: "Are you sure you want to permanently delete the variable the-key on the script script-name-some-env?",
|
|
339
|
+
result: true,
|
|
340
|
+
});
|
|
341
|
+
await runWrangler(
|
|
342
|
+
"secret delete the-key --name script-name --env some-env --legacy-env"
|
|
343
|
+
);
|
|
344
|
+
expect(std.out).toMatchInlineSnapshot(`
|
|
340
345
|
"🌀 Deleting the secret the-key on script script-name-some-env
|
|
341
346
|
✨ Success! Deleted secret the-key"
|
|
342
347
|
`);
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
348
|
+
expect(std.err).toMatchInlineSnapshot(`""`);
|
|
349
|
+
});
|
|
350
|
+
|
|
351
|
+
it("should delete a secret: service envs", async () => {
|
|
352
|
+
mockDeleteRequest(
|
|
353
|
+
{ scriptName: "script-name", secretName: "the-key" },
|
|
354
|
+
"some-env"
|
|
355
|
+
);
|
|
356
|
+
mockConfirm({
|
|
357
|
+
text: "Are you sure you want to permanently delete the variable the-key on the script script-name (some-env)?",
|
|
358
|
+
result: true,
|
|
359
|
+
});
|
|
360
|
+
await runWrangler(
|
|
361
|
+
"secret delete the-key --name script-name --env some-env --legacy-env false"
|
|
362
|
+
);
|
|
363
|
+
expect(std.out).toMatchInlineSnapshot(`
|
|
359
364
|
"🌀 Deleting the secret the-key on script script-name (some-env)
|
|
360
365
|
✨ Success! Deleted secret the-key"
|
|
361
366
|
`);
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
367
|
+
expect(std.err).toMatchInlineSnapshot(`""`);
|
|
368
|
+
});
|
|
369
|
+
|
|
370
|
+
it("should error without a script name", async () => {
|
|
371
|
+
let error: Error | undefined;
|
|
372
|
+
|
|
373
|
+
try {
|
|
374
|
+
await runWrangler("secret delete the-key");
|
|
375
|
+
} catch (e) {
|
|
376
|
+
error = e as Error;
|
|
377
|
+
}
|
|
378
|
+
expect(std.out).toMatchInlineSnapshot(`
|
|
374
379
|
"
|
|
375
380
|
[32mIf you think this is a bug then please create an issue at https://github.com/cloudflare/wrangler2/issues/new/choose[0m"
|
|
376
381
|
`);
|
|
377
|
-
|
|
382
|
+
expect(std.err).toMatchInlineSnapshot(`
|
|
378
383
|
"[31mX [41;31m[[41;97mERROR[41;31m][0m [1mMissing script name[0m
|
|
379
384
|
|
|
380
385
|
"
|
|
381
386
|
`);
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
387
|
+
expect(error).toMatchInlineSnapshot(`[Error: Missing script name]`);
|
|
388
|
+
});
|
|
389
|
+
});
|
|
390
|
+
|
|
391
|
+
describe("list", () => {
|
|
392
|
+
function mockListRequest(
|
|
393
|
+
input: { scriptName: string },
|
|
394
|
+
env?: string,
|
|
395
|
+
legacyEnv = false
|
|
396
|
+
) {
|
|
397
|
+
const servicesOrScripts = env && !legacyEnv ? "services" : "scripts";
|
|
398
|
+
const environment = env && !legacyEnv ? "/environments/:envName" : "";
|
|
399
|
+
setMockResponse(
|
|
400
|
+
`/accounts/:accountId/workers/${servicesOrScripts}/:scriptName${environment}/secrets`,
|
|
401
|
+
"GET",
|
|
402
|
+
([_url, accountId, scriptName, envName]) => {
|
|
403
|
+
expect(accountId).toEqual("some-account-id");
|
|
404
|
+
expect(scriptName).toEqual(
|
|
405
|
+
legacyEnv && env ? `script-name-${env}` : "script-name"
|
|
406
|
+
);
|
|
407
|
+
if (!legacyEnv) {
|
|
408
|
+
expect(envName).toEqual(env);
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
return [
|
|
412
|
+
{
|
|
413
|
+
name: "the-secret-name",
|
|
414
|
+
type: "secret_text",
|
|
415
|
+
},
|
|
416
|
+
];
|
|
417
|
+
}
|
|
418
|
+
);
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
it("should list secrets", async () => {
|
|
422
|
+
mockListRequest({ scriptName: "script-name" });
|
|
423
|
+
await runWrangler("secret list --name script-name");
|
|
424
|
+
expect(std.out).toMatchInlineSnapshot(`
|
|
420
425
|
"[
|
|
421
426
|
{
|
|
422
427
|
\\"name\\": \\"the-secret-name\\",
|
|
@@ -424,15 +429,15 @@ describe("wrangler secret", () => {
|
|
|
424
429
|
}
|
|
425
430
|
]"
|
|
426
431
|
`);
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
432
|
+
expect(std.err).toMatchInlineSnapshot(`""`);
|
|
433
|
+
});
|
|
434
|
+
|
|
435
|
+
it("should list secrets: legacy envs", async () => {
|
|
436
|
+
mockListRequest({ scriptName: "script-name" }, "some-env", true);
|
|
437
|
+
await runWrangler(
|
|
438
|
+
"secret list --name script-name --env some-env --legacy-env"
|
|
439
|
+
);
|
|
440
|
+
expect(std.out).toMatchInlineSnapshot(`
|
|
436
441
|
"[
|
|
437
442
|
{
|
|
438
443
|
\\"name\\": \\"the-secret-name\\",
|
|
@@ -440,15 +445,15 @@ describe("wrangler secret", () => {
|
|
|
440
445
|
}
|
|
441
446
|
]"
|
|
442
447
|
`);
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
448
|
+
expect(std.err).toMatchInlineSnapshot(`""`);
|
|
449
|
+
});
|
|
450
|
+
|
|
451
|
+
it("should list secrets: service envs", async () => {
|
|
452
|
+
mockListRequest({ scriptName: "script-name" }, "some-env");
|
|
453
|
+
await runWrangler(
|
|
454
|
+
"secret list --name script-name --env some-env --legacy-env false"
|
|
455
|
+
);
|
|
456
|
+
expect(std.out).toMatchInlineSnapshot(`
|
|
452
457
|
"[
|
|
453
458
|
{
|
|
454
459
|
\\"name\\": \\"the-secret-name\\",
|
|
@@ -456,26 +461,26 @@ describe("wrangler secret", () => {
|
|
|
456
461
|
}
|
|
457
462
|
]"
|
|
458
463
|
`);
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
464
|
+
expect(std.err).toMatchInlineSnapshot(`""`);
|
|
465
|
+
});
|
|
466
|
+
|
|
467
|
+
it("should error without a script name", async () => {
|
|
468
|
+
let error: Error | undefined;
|
|
469
|
+
try {
|
|
470
|
+
await runWrangler("secret list");
|
|
471
|
+
} catch (e) {
|
|
472
|
+
error = e as Error;
|
|
473
|
+
}
|
|
474
|
+
expect(std.out).toMatchInlineSnapshot(`
|
|
470
475
|
"
|
|
471
476
|
[32mIf you think this is a bug then please create an issue at https://github.com/cloudflare/wrangler2/issues/new/choose[0m"
|
|
472
477
|
`);
|
|
473
|
-
|
|
478
|
+
expect(std.err).toMatchInlineSnapshot(`
|
|
474
479
|
"[31mX [41;31m[[41;97mERROR[41;31m][0m [1mMissing script name[0m
|
|
475
480
|
|
|
476
481
|
"
|
|
477
482
|
`);
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
483
|
+
expect(error).toMatchInlineSnapshot(`[Error: Missing script name]`);
|
|
484
|
+
});
|
|
485
|
+
});
|
|
481
486
|
});
|