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
|
@@ -0,0 +1,367 @@
|
|
|
1
|
+
import { mockAccountId, mockApiToken } from "./helpers/mock-account-id";
|
|
2
|
+
import { setMockResponse, unsetAllMocks } from "./helpers/mock-cfetch";
|
|
3
|
+
import { mockConsoleMethods } from "./helpers/mock-console";
|
|
4
|
+
import { runInTempDir } from "./helpers/run-in-tmp";
|
|
5
|
+
import { runWrangler } from "./helpers/run-wrangler";
|
|
6
|
+
import type {
|
|
7
|
+
PubSubNamespace,
|
|
8
|
+
PubSubBroker,
|
|
9
|
+
PubSubBrokerUpdate,
|
|
10
|
+
PubSubBrokerOnPublish,
|
|
11
|
+
} from "../pubsub";
|
|
12
|
+
|
|
13
|
+
describe("wrangler", () => {
|
|
14
|
+
mockAccountId();
|
|
15
|
+
mockApiToken();
|
|
16
|
+
runInTempDir();
|
|
17
|
+
const std = mockConsoleMethods();
|
|
18
|
+
|
|
19
|
+
afterEach(() => {
|
|
20
|
+
unsetAllMocks();
|
|
21
|
+
});
|
|
22
|
+
|
|
23
|
+
describe("pubsub", () => {
|
|
24
|
+
describe("help menu", () => {
|
|
25
|
+
it("shows usage details", async () => {
|
|
26
|
+
await runWrangler("pubsub --help");
|
|
27
|
+
expect(std).toMatchInlineSnapshot(`
|
|
28
|
+
Object {
|
|
29
|
+
"debug": "",
|
|
30
|
+
"err": "",
|
|
31
|
+
"out": "wrangler pubsub
|
|
32
|
+
|
|
33
|
+
📮 Interact and manage Pub/Sub Brokers
|
|
34
|
+
|
|
35
|
+
Commands:
|
|
36
|
+
wrangler pubsub namespace Manage your Pub/Sub Namespaces
|
|
37
|
+
wrangler pubsub broker Interact with your Pub/Sub Brokers
|
|
38
|
+
|
|
39
|
+
Flags:
|
|
40
|
+
-c, --config Path to .toml configuration file [string]
|
|
41
|
+
-h, --help Show help [boolean]
|
|
42
|
+
-v, --version Show version number [boolean]
|
|
43
|
+
|
|
44
|
+
👷🏽 'wrangler pubsub ...' commands are currently in private beta. If your account isn't authorized, commands will fail. Visit the Pub/Sub docs for more info: https://developers.cloudflare.com/pub-sub/",
|
|
45
|
+
"warn": "",
|
|
46
|
+
}
|
|
47
|
+
`);
|
|
48
|
+
});
|
|
49
|
+
});
|
|
50
|
+
|
|
51
|
+
describe("namespaces", () => {
|
|
52
|
+
describe("help menu", () => {
|
|
53
|
+
it("shows usage details", async () => {
|
|
54
|
+
await runWrangler("pubsub namespace --help");
|
|
55
|
+
expect(std).toMatchInlineSnapshot(`
|
|
56
|
+
Object {
|
|
57
|
+
"debug": "",
|
|
58
|
+
"err": "",
|
|
59
|
+
"out": "wrangler pubsub namespace
|
|
60
|
+
|
|
61
|
+
Manage your Pub/Sub Namespaces
|
|
62
|
+
|
|
63
|
+
Commands:
|
|
64
|
+
wrangler pubsub namespace create <name> Create a new Pub/Sub Namespace
|
|
65
|
+
wrangler pubsub namespace list List your existing Pub/Sub Namespaces
|
|
66
|
+
wrangler pubsub namespace delete <name> Delete a Pub/Sub Namespace
|
|
67
|
+
wrangler pubsub namespace describe <name> Describe a Pub/Sub Namespace
|
|
68
|
+
|
|
69
|
+
Flags:
|
|
70
|
+
-c, --config Path to .toml configuration file [string]
|
|
71
|
+
-h, --help Show help [boolean]
|
|
72
|
+
-v, --version Show version number [boolean]
|
|
73
|
+
|
|
74
|
+
👷🏽 'wrangler pubsub ...' commands are currently in private beta. If your account isn't authorized, commands will fail. Visit the Pub/Sub docs for more info: https://developers.cloudflare.com/pub-sub/",
|
|
75
|
+
"warn": "",
|
|
76
|
+
}
|
|
77
|
+
`);
|
|
78
|
+
});
|
|
79
|
+
});
|
|
80
|
+
|
|
81
|
+
describe("create", () => {
|
|
82
|
+
function mockCreateRequest(expectedNamespaceName: string) {
|
|
83
|
+
const requests = { count: 0 };
|
|
84
|
+
setMockResponse(
|
|
85
|
+
"/accounts/:accountId/pubsub/namespaces",
|
|
86
|
+
"POST",
|
|
87
|
+
([_url, accountId], { body }) => {
|
|
88
|
+
expect(accountId).toEqual("some-account-id");
|
|
89
|
+
const namespaceName = JSON.parse(body as string).name;
|
|
90
|
+
expect(namespaceName).toEqual(expectedNamespaceName);
|
|
91
|
+
requests.count += 1;
|
|
92
|
+
}
|
|
93
|
+
);
|
|
94
|
+
return requests;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
it("should create a namespace", async () => {
|
|
98
|
+
const requests = mockCreateRequest("my-namespace");
|
|
99
|
+
await runWrangler("pubsub namespace create my-namespace");
|
|
100
|
+
// TODO: check returned object
|
|
101
|
+
expect(requests.count).toEqual(1);
|
|
102
|
+
});
|
|
103
|
+
});
|
|
104
|
+
|
|
105
|
+
describe("list", () => {
|
|
106
|
+
function mockListRequest(namespaces: PubSubNamespace[]) {
|
|
107
|
+
const requests = { count: 0 };
|
|
108
|
+
setMockResponse(
|
|
109
|
+
"/accounts/:accountId/pubsub/namespaces",
|
|
110
|
+
([_url, accountId], init) => {
|
|
111
|
+
requests.count++;
|
|
112
|
+
expect(accountId).toEqual("some-account-id");
|
|
113
|
+
expect(init).toEqual({});
|
|
114
|
+
return { namespaces };
|
|
115
|
+
}
|
|
116
|
+
);
|
|
117
|
+
return requests;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
it("should list namespaces", async () => {
|
|
121
|
+
const expectedNamespaces: PubSubNamespace[] = [
|
|
122
|
+
{ name: "namespace-1", created_on: "01-01-2001" },
|
|
123
|
+
{ name: "namespace-2", created_on: "01-01-2001" },
|
|
124
|
+
];
|
|
125
|
+
const requests = mockListRequest(expectedNamespaces);
|
|
126
|
+
await runWrangler("pubsub namespace list");
|
|
127
|
+
|
|
128
|
+
expect(std.err).toMatchInlineSnapshot(`""`);
|
|
129
|
+
// TODO(elithrar): check returned object
|
|
130
|
+
expect(requests.count).toEqual(1);
|
|
131
|
+
});
|
|
132
|
+
});
|
|
133
|
+
});
|
|
134
|
+
|
|
135
|
+
describe("brokers", () => {
|
|
136
|
+
describe("help menu", () => {
|
|
137
|
+
it("shows usage details", async () => {
|
|
138
|
+
await runWrangler("pubsub broker --help");
|
|
139
|
+
expect(std).toMatchInlineSnapshot(`
|
|
140
|
+
Object {
|
|
141
|
+
"debug": "",
|
|
142
|
+
"err": "",
|
|
143
|
+
"out": "wrangler pubsub broker
|
|
144
|
+
|
|
145
|
+
Interact with your Pub/Sub Brokers
|
|
146
|
+
|
|
147
|
+
Commands:
|
|
148
|
+
wrangler pubsub broker create <name> Create a new Pub/Sub Broker
|
|
149
|
+
wrangler pubsub broker update <name> Update an existing Pub/Sub Broker's configuration.
|
|
150
|
+
wrangler pubsub broker list List the Pub/Sub Brokers within a Namespace
|
|
151
|
+
wrangler pubsub broker delete <name> Delete an existing Pub/Sub Broker
|
|
152
|
+
wrangler pubsub broker describe <name> Describe an existing Pub/Sub Broker.
|
|
153
|
+
wrangler pubsub broker issue <name> Issue new client credentials for a specific Pub/Sub Broker.
|
|
154
|
+
wrangler pubsub broker revoke <name> Revoke a set of active client credentials associated with the given Broker
|
|
155
|
+
wrangler pubsub broker unrevoke <name> Restore access to a set of previously revoked client credentials.
|
|
156
|
+
wrangler pubsub broker show-revocations <name> Show all previously revoked client credentials.
|
|
157
|
+
wrangler pubsub broker public-keys <name> Show the public keys used for verifying on-publish hooks and credentials for a Broker.
|
|
158
|
+
|
|
159
|
+
Flags:
|
|
160
|
+
-c, --config Path to .toml configuration file [string]
|
|
161
|
+
-h, --help Show help [boolean]
|
|
162
|
+
-v, --version Show version number [boolean]
|
|
163
|
+
|
|
164
|
+
👷🏽 'wrangler pubsub ...' commands are currently in private beta. If your account isn't authorized, commands will fail. Visit the Pub/Sub docs for more info: https://developers.cloudflare.com/pub-sub/",
|
|
165
|
+
"warn": "",
|
|
166
|
+
}
|
|
167
|
+
`);
|
|
168
|
+
});
|
|
169
|
+
});
|
|
170
|
+
|
|
171
|
+
describe("create", () => {
|
|
172
|
+
function mockCreateRequest(expectedBrokerName: string) {
|
|
173
|
+
const requests = { count: 0 };
|
|
174
|
+
setMockResponse(
|
|
175
|
+
"/accounts/:accountId/pubsub/namespaces/:namespaceName/brokers",
|
|
176
|
+
"POST",
|
|
177
|
+
([_url, accountId, namespaceName], { body }) => {
|
|
178
|
+
expect(accountId).toEqual("some-account-id");
|
|
179
|
+
expect(namespaceName).toEqual("some-namespace");
|
|
180
|
+
const brokerName = JSON.parse(body as string).name;
|
|
181
|
+
expect(brokerName).toEqual(expectedBrokerName);
|
|
182
|
+
requests.count += 1;
|
|
183
|
+
}
|
|
184
|
+
);
|
|
185
|
+
return requests;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
it("should create a broker", async () => {
|
|
189
|
+
const requests = mockCreateRequest("my-broker");
|
|
190
|
+
await runWrangler(
|
|
191
|
+
"pubsub broker create my-broker --namespace=some-namespace"
|
|
192
|
+
);
|
|
193
|
+
|
|
194
|
+
// TODO: check returned object
|
|
195
|
+
expect(requests.count).toEqual(1);
|
|
196
|
+
});
|
|
197
|
+
|
|
198
|
+
it("fail to create broker when no namespace is set", async () => {
|
|
199
|
+
await expect(
|
|
200
|
+
runWrangler("pubsub broker create my-broker")
|
|
201
|
+
).rejects.toThrowErrorMatchingInlineSnapshot(
|
|
202
|
+
`"Missing required argument: namespace"`
|
|
203
|
+
);
|
|
204
|
+
});
|
|
205
|
+
});
|
|
206
|
+
|
|
207
|
+
describe("update", () => {
|
|
208
|
+
function mockUpdateRequest(
|
|
209
|
+
expectedBrokerName: string,
|
|
210
|
+
expectedExpiration: number,
|
|
211
|
+
expectedDescription: string,
|
|
212
|
+
expectedOnPublishConfig: PubSubBrokerOnPublish
|
|
213
|
+
) {
|
|
214
|
+
const requests = { count: 0 };
|
|
215
|
+
setMockResponse(
|
|
216
|
+
"/accounts/:accountId/pubsub/namespaces/:namespaceName/brokers/:brokerName",
|
|
217
|
+
"PATCH",
|
|
218
|
+
([_url, accountId, namespaceName, brokerName], { body }) => {
|
|
219
|
+
expect(accountId).toEqual("some-account-id");
|
|
220
|
+
expect(namespaceName).toEqual("some-namespace");
|
|
221
|
+
expect(brokerName).toEqual(expectedBrokerName);
|
|
222
|
+
|
|
223
|
+
const patchBody: PubSubBrokerUpdate = JSON.parse(body as string);
|
|
224
|
+
expect(patchBody.expiration).toEqual(expectedExpiration);
|
|
225
|
+
expect(patchBody.description).toEqual(expectedDescription);
|
|
226
|
+
expect(patchBody.on_publish).toEqual(expectedOnPublishConfig);
|
|
227
|
+
|
|
228
|
+
requests.count += 1;
|
|
229
|
+
}
|
|
230
|
+
);
|
|
231
|
+
return requests;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
it("should update a broker's properties", async () => {
|
|
235
|
+
const expectedOnPublish: PubSubBrokerOnPublish = {
|
|
236
|
+
url: "https://foo.bar.example.com",
|
|
237
|
+
};
|
|
238
|
+
const requests = mockUpdateRequest(
|
|
239
|
+
"my-broker",
|
|
240
|
+
86400,
|
|
241
|
+
"hello",
|
|
242
|
+
expectedOnPublish
|
|
243
|
+
);
|
|
244
|
+
await runWrangler(
|
|
245
|
+
"pubsub broker update my-broker --namespace=some-namespace --expiration=24h --description='hello' --on-publish-url='https://foo.bar.example.com'"
|
|
246
|
+
);
|
|
247
|
+
|
|
248
|
+
expect(std.err).toMatchInlineSnapshot(`""`);
|
|
249
|
+
// TODO(elithrar): check returned object
|
|
250
|
+
expect(requests.count).toEqual(1);
|
|
251
|
+
});
|
|
252
|
+
});
|
|
253
|
+
|
|
254
|
+
describe("list", () => {
|
|
255
|
+
function mockListRequest(brokers: PubSubBroker[]) {
|
|
256
|
+
const requests = { count: 0 };
|
|
257
|
+
setMockResponse(
|
|
258
|
+
"/accounts/:accountId/pubsub/namespaces/:namespaceName/brokers",
|
|
259
|
+
([_url, accountId, namespaceName], init) => {
|
|
260
|
+
requests.count++;
|
|
261
|
+
expect(accountId).toEqual("some-account-id");
|
|
262
|
+
expect(namespaceName).toEqual("some-namespace");
|
|
263
|
+
expect(init).toEqual({});
|
|
264
|
+
return { brokers };
|
|
265
|
+
}
|
|
266
|
+
);
|
|
267
|
+
return requests;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
it("should list brokers", async () => {
|
|
271
|
+
const expectedBrokers: PubSubBroker[] = [
|
|
272
|
+
{ name: "broker-1", created_on: "01-01-2001" },
|
|
273
|
+
{ name: "broker-2", created_on: "01-01-2001" },
|
|
274
|
+
];
|
|
275
|
+
const requests = mockListRequest(expectedBrokers);
|
|
276
|
+
await runWrangler("pubsub broker list --namespace=some-namespace");
|
|
277
|
+
|
|
278
|
+
expect(std.err).toMatchInlineSnapshot(`""`);
|
|
279
|
+
// TODO(elithrar): check returned object
|
|
280
|
+
expect(requests.count).toEqual(1);
|
|
281
|
+
});
|
|
282
|
+
});
|
|
283
|
+
|
|
284
|
+
describe("describe", () => {
|
|
285
|
+
function mockGetRequest(broker: PubSubBroker) {
|
|
286
|
+
const requests = { count: 0 };
|
|
287
|
+
setMockResponse(
|
|
288
|
+
"/accounts/:accountId/pubsub/namespaces/:namespaceName/brokers/:brokerName",
|
|
289
|
+
([_url, accountId, namespaceName, brokerName]) => {
|
|
290
|
+
requests.count++;
|
|
291
|
+
expect(accountId).toEqual("some-account-id");
|
|
292
|
+
expect(namespaceName).toEqual("some-namespace");
|
|
293
|
+
expect(brokerName).toEqual(broker.name);
|
|
294
|
+
return { result: broker };
|
|
295
|
+
}
|
|
296
|
+
);
|
|
297
|
+
return requests;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
it("should describe a single broker", async () => {
|
|
301
|
+
const requests = mockGetRequest({ id: "1234", name: "my-broker" });
|
|
302
|
+
await runWrangler(
|
|
303
|
+
"pubsub broker describe my-broker --namespace=some-namespace"
|
|
304
|
+
);
|
|
305
|
+
|
|
306
|
+
expect(std.err).toMatchInlineSnapshot(`""`);
|
|
307
|
+
// TODO(elithrar): check returned object
|
|
308
|
+
expect(requests.count).toEqual(1);
|
|
309
|
+
});
|
|
310
|
+
});
|
|
311
|
+
|
|
312
|
+
describe("issue", () => {
|
|
313
|
+
function mockIssueRequest(expectedBrokerName: string) {
|
|
314
|
+
const requests = { count: 0 };
|
|
315
|
+
setMockResponse(
|
|
316
|
+
"/accounts/:accountId/pubsub/namespaces/:namespaceName/brokers/:brokerName/credentials",
|
|
317
|
+
([_url, accountId, namespaceName, brokerName]) => {
|
|
318
|
+
expect(accountId).toEqual("some-account-id");
|
|
319
|
+
expect(namespaceName).toEqual("some-namespace");
|
|
320
|
+
expect(brokerName).toEqual(expectedBrokerName);
|
|
321
|
+
requests.count += 1;
|
|
322
|
+
}
|
|
323
|
+
);
|
|
324
|
+
return requests;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
it("should issue a token for the broker", async () => {
|
|
328
|
+
const requests = mockIssueRequest("my-broker");
|
|
329
|
+
await runWrangler(
|
|
330
|
+
"pubsub broker issue my-broker --namespace=some-namespace"
|
|
331
|
+
);
|
|
332
|
+
|
|
333
|
+
expect(std.err).toMatchInlineSnapshot(`""`);
|
|
334
|
+
// TODO(elithrar): check returned object
|
|
335
|
+
expect(requests.count).toEqual(1);
|
|
336
|
+
});
|
|
337
|
+
});
|
|
338
|
+
|
|
339
|
+
describe("public-keys", () => {
|
|
340
|
+
function mockIssueRequest(expectedBrokerName: string) {
|
|
341
|
+
const requests = { count: 0 };
|
|
342
|
+
setMockResponse(
|
|
343
|
+
"/accounts/:accountId/pubsub/namespaces/:namespaceName/brokers/:brokerName/publickeys",
|
|
344
|
+
([_url, accountId, namespaceName, brokerName]) => {
|
|
345
|
+
expect(accountId).toEqual("some-account-id");
|
|
346
|
+
expect(namespaceName).toEqual("some-namespace");
|
|
347
|
+
expect(brokerName).toEqual(expectedBrokerName);
|
|
348
|
+
requests.count += 1;
|
|
349
|
+
}
|
|
350
|
+
);
|
|
351
|
+
return requests;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
it("should return the public keys for a broker", async () => {
|
|
355
|
+
const requests = mockIssueRequest("my-broker");
|
|
356
|
+
await runWrangler(
|
|
357
|
+
"pubsub broker public-keys my-broker --namespace=some-namespace"
|
|
358
|
+
);
|
|
359
|
+
|
|
360
|
+
expect(std.err).toMatchInlineSnapshot(`""`);
|
|
361
|
+
// TODO(elithrar): check returned object
|
|
362
|
+
expect(requests.count).toEqual(1);
|
|
363
|
+
});
|
|
364
|
+
});
|
|
365
|
+
});
|
|
366
|
+
});
|
|
367
|
+
});
|