forked from cloudflare/workers-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pubsub.test.ts
507 lines (464 loc) · 16 KB
/
pubsub.test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
import { http, HttpResponse } from "msw";
import { mockAccountId, mockApiToken } from "./helpers/mock-account-id";
import { mockConsoleMethods } from "./helpers/mock-console";
import { msw } from "./helpers/msw";
import { runInTempDir } from "./helpers/run-in-tmp";
import { runWrangler } from "./helpers/run-wrangler";
import type {
PubSubBroker,
PubSubBrokerOnPublish,
PubSubBrokerUpdate,
PubSubNamespace,
} from "../pubsub";
describe("wrangler", () => {
mockAccountId();
mockApiToken();
runInTempDir();
const std = mockConsoleMethods();
describe("pubsub", () => {
describe("help menu", () => {
it("shows usage details", async () => {
await runWrangler("pubsub --help");
expect(std).toMatchInlineSnapshot(`
Object {
"debug": "",
"err": "",
"info": "",
"out": "wrangler pubsub
📮 Manage Pub/Sub brokers [private beta]
COMMANDS
wrangler pubsub namespace Manage your Pub/Sub Namespaces
wrangler pubsub broker Interact with your Pub/Sub Brokers
GLOBAL FLAGS
-j, --experimental-json-config Experimental: support wrangler.json [boolean]
-c, --config Path to .toml configuration file [string]
-e, --env Environment to use for operations and .env files [string]
-h, --help Show help [boolean]
-v, --version Show version number [boolean]
👷🏽 '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/",
"warn": "",
}
`);
});
});
describe("namespaces", () => {
describe("help menu", () => {
it("shows usage details", async () => {
await runWrangler("pubsub namespace --help");
expect(std).toMatchInlineSnapshot(`
Object {
"debug": "",
"err": "",
"info": "",
"out": "wrangler pubsub namespace
Manage your Pub/Sub Namespaces
COMMANDS
wrangler pubsub namespace create <name> Create a new Pub/Sub Namespace
wrangler pubsub namespace list List your existing Pub/Sub Namespaces
wrangler pubsub namespace delete <name> Delete a Pub/Sub Namespace
wrangler pubsub namespace describe <name> Describe a Pub/Sub Namespace
GLOBAL FLAGS
-j, --experimental-json-config Experimental: support wrangler.json [boolean]
-c, --config Path to .toml configuration file [string]
-e, --env Environment to use for operations and .env files [string]
-h, --help Show help [boolean]
-v, --version Show version number [boolean]
👷🏽 '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/",
"warn": "",
}
`);
});
});
describe("create", () => {
function mockCreateRequest(expectedNamespaceName: string) {
const requests = { count: 0 };
msw.use(
http.post(
"*/accounts/:accountId/pubsub/namespaces",
async ({ request, params }) => {
expect(params.accountId).toEqual("some-account-id");
const namespace = (await request.json()) as Record<
string,
string
>;
expect(namespace.name).toEqual(expectedNamespaceName);
requests.count++;
return HttpResponse.json(
{
success: true,
errors: [],
messages: [],
result: {
id: "some-namespace-id",
name: namespace.name,
created_at: "3005-01-01T00:00:00.000000Z",
updated_at: "3005-01-01T00:00:00.000000Z",
},
},
{ status: 200 }
);
},
{ once: true }
)
);
return requests;
}
it("should create a namespace", async () => {
const requests = mockCreateRequest("my-namespace");
await runWrangler("pubsub namespace create my-namespace");
// TODO: check returned object
expect(requests.count).toEqual(1);
});
});
describe("list", () => {
function mockListRequest(namespaces: PubSubNamespace[]) {
const requests = { count: 0 };
msw.use(
http.get(
"*/accounts/:accountId/pubsub/namespaces",
async ({ params }) => {
requests.count++;
expect(params.accountId).toEqual("some-account-id");
return HttpResponse.json(
{
success: true,
errors: [],
messages: [],
result: namespaces,
},
{ status: 200 }
);
},
{ once: true }
)
);
return requests;
}
it("should list namespaces", async () => {
const expectedNamespaces: PubSubNamespace[] = [
{ name: "namespace-1", created_on: "01-01-2001" },
{ name: "namespace-2", created_on: "01-01-2001" },
];
const requests = mockListRequest(expectedNamespaces);
await runWrangler("pubsub namespace list");
expect(std.err).toMatchInlineSnapshot(`""`);
expect(std.out).toMatchInlineSnapshot(`
"[
{ name: 'namespace-1', created_on: '01-01-2001' },
{ name: 'namespace-2', created_on: '01-01-2001' }
]"
`);
expect(requests.count).toEqual(1);
});
});
});
describe("brokers", () => {
describe("help menu", () => {
it("shows usage details", async () => {
await runWrangler("pubsub broker --help");
expect(std).toMatchInlineSnapshot(`
Object {
"debug": "",
"err": "",
"info": "",
"out": "wrangler pubsub broker
Interact with your Pub/Sub Brokers
COMMANDS
wrangler pubsub broker create <name> Create a new Pub/Sub Broker
wrangler pubsub broker update <name> Update an existing Pub/Sub Broker's configuration.
wrangler pubsub broker list List the Pub/Sub Brokers within a Namespace
wrangler pubsub broker delete <name> Delete an existing Pub/Sub Broker
wrangler pubsub broker describe <name> Describe an existing Pub/Sub Broker.
wrangler pubsub broker issue <name> Issue new client credentials for a specific Pub/Sub Broker.
wrangler pubsub broker revoke <name> Revoke a set of active client credentials associated with the given Broker
wrangler pubsub broker unrevoke <name> Restore access to a set of previously revoked client credentials.
wrangler pubsub broker show-revocations <name> Show all previously revoked client credentials.
wrangler pubsub broker public-keys <name> Show the public keys used for verifying on-publish hooks and credentials for a Broker.
GLOBAL FLAGS
-j, --experimental-json-config Experimental: support wrangler.json [boolean]
-c, --config Path to .toml configuration file [string]
-e, --env Environment to use for operations and .env files [string]
-h, --help Show help [boolean]
-v, --version Show version number [boolean]
👷🏽 '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/",
"warn": "",
}
`);
});
});
describe("create", () => {
function mockCreateRequest(expectedBrokerName: string) {
const requests = { count: 0 };
msw.use(
http.post(
"*/accounts/:accountId/pubsub/namespaces/:namespaceName/brokers",
async ({ request, params }) => {
expect(params.accountId).toEqual("some-account-id");
expect(params.namespaceName).toEqual("some-namespace");
const broker = (await request.json()) as Record<string, string>;
expect(broker.name).toEqual(expectedBrokerName);
requests.count++;
return HttpResponse.json(
{
success: true,
errors: [],
messages: [],
result: {
name: expectedBrokerName,
created_on: "01-01-2001",
},
},
{ status: 200 }
);
},
{ once: true }
)
);
return requests;
}
it("should create a broker", async () => {
const requests = mockCreateRequest("my-broker");
await runWrangler(
"pubsub broker create my-broker --namespace=some-namespace"
);
expect(std.err).toMatchInlineSnapshot(`""`);
expect(std.out).toMatchInlineSnapshot(
`"{ name: 'my-broker', created_on: '01-01-2001' }"`
);
expect(requests.count).toEqual(1);
});
it("fail to create broker when no namespace is set", async () => {
await expect(
runWrangler("pubsub broker create my-broker")
).rejects.toThrowErrorMatchingInlineSnapshot(
`[Error: Missing required argument: namespace]`
);
});
});
describe("update", () => {
function mockUpdateRequest(
expectedBrokerName: string,
expectedExpiration: number,
expectedDescription: string,
expectedOnPublishConfig: PubSubBrokerOnPublish
) {
const requests = { count: 0 };
msw.use(
http.patch(
"*/accounts/:accountId/pubsub/namespaces/:namespaceName/brokers/:brokerName",
async ({ request, params }) => {
requests.count += 1;
expect(params.accountId).toEqual("some-account-id");
expect(params.namespaceName).toEqual("some-namespace");
expect(params.brokerName).toEqual(expectedBrokerName);
const patchBody = (await request.json()) as PubSubBrokerUpdate;
expect(patchBody.expiration).toEqual(expectedExpiration);
expect(patchBody.description).toEqual(expectedDescription);
expect(patchBody.on_publish).toEqual(expectedOnPublishConfig);
return HttpResponse.json(
{
success: true,
errors: [],
messages: [],
result: {
name: expectedBrokerName,
created_on: "01-01-2001",
},
},
{ status: 200 }
);
},
{ once: true }
)
);
return requests;
}
it("should update a broker's properties", async () => {
const expectedOnPublish: PubSubBrokerOnPublish = {
url: "https://foo.bar.example.com",
};
const requests = mockUpdateRequest(
"my-broker",
86400,
"hello",
expectedOnPublish
);
await runWrangler(
"pubsub broker update my-broker --namespace=some-namespace --expiration=24h --description='hello' --on-publish-url='https://foo.bar.example.com'"
);
expect(std.err).toMatchInlineSnapshot(`""`);
expect(std.out).toMatchInlineSnapshot(`
"{ name: 'my-broker', created_on: '01-01-2001' }
Successfully updated Pub/Sub Broker my-broker"
`);
expect(requests.count).toEqual(1);
});
});
describe("list", () => {
function mockListRequest(brokers: PubSubBroker[]) {
const requests = { count: 0 };
msw.use(
http.get(
"*/accounts/:accountId/pubsub/namespaces/:namespaceName/brokers",
async ({ params }) => {
requests.count++;
expect(params.accountId).toEqual("some-account-id");
expect(params.namespaceName).toEqual("some-namespace");
return HttpResponse.json(
{
success: true,
errors: [],
messages: [],
result: brokers,
},
{ status: 200 }
);
},
{ once: true }
)
);
return requests;
}
it("should list brokers", async () => {
const expectedBrokers: PubSubBroker[] = [
{ name: "broker-1", created_on: "01-01-2001" },
{ name: "broker-2", created_on: "01-01-2001" },
];
const requests = mockListRequest(expectedBrokers);
await runWrangler("pubsub broker list --namespace=some-namespace");
expect(std.err).toMatchInlineSnapshot(`""`);
expect(std.out).toMatchInlineSnapshot(`
"[
{ name: 'broker-1', created_on: '01-01-2001' },
{ name: 'broker-2', created_on: '01-01-2001' }
]"
`);
expect(requests.count).toEqual(1);
});
});
describe("describe", () => {
function mockGetRequest(broker: PubSubBroker) {
const requests = { count: 0 };
msw.use(
http.get(
"*/accounts/:accountId/pubsub/namespaces/:namespaceName/brokers/:brokerName",
({ params }) => {
requests.count++;
expect(params.accountId).toEqual("some-account-id");
expect(params.namespaceName).toEqual("some-namespace");
expect(params.brokerName).toEqual(broker.name);
return HttpResponse.json(
{
success: true,
errors: [],
messages: [],
result: broker,
},
{ status: 200 }
);
},
{ once: true }
)
);
return requests;
}
it("should describe a single broker", async () => {
const requests = mockGetRequest({ id: "1234", name: "my-broker" });
await runWrangler(
"pubsub broker describe my-broker --namespace=some-namespace"
);
expect(std.err).toMatchInlineSnapshot(`""`);
expect(std.out).toMatchInlineSnapshot(
`"{ id: '1234', name: 'my-broker' }"`
);
expect(requests.count).toEqual(1);
});
});
describe("issue", () => {
function mockIssueRequest(expectedBrokerName: string) {
const requests = { count: 0 };
msw.use(
http.get(
"*/accounts/:accountId/pubsub/namespaces/:namespaceName/brokers/:brokerName/credentials",
({ params }) => {
requests.count++;
expect(params.accountId).toEqual("some-account-id");
expect(params.namespaceName).toEqual("some-namespace");
expect(params.brokerName).toEqual(expectedBrokerName);
return HttpResponse.json(
{
success: true,
errors: [],
messages: [],
result: {
"MOCK-89T6DXG3SVG1WQRA": `<base-64-encoded-JWT>`,
"MOCK-393REE4WRRE4NHAV96": `<base-64-encoded-JWT>`,
},
},
{ status: 200 }
);
},
{ once: true }
)
);
return requests;
}
it("should issue a token for the broker", async () => {
const requests = mockIssueRequest("my-broker");
await runWrangler(
"pubsub broker issue my-broker --namespace=some-namespace"
);
expect(std.err).toMatchInlineSnapshot(`""`);
expect(std.out).toMatchInlineSnapshot(`
"🔑 Issuing credential(s) for my-broker.some-namespace...
{
'MOCK-89T6DXG3SVG1WQRA': '<base-64-encoded-JWT>',
'MOCK-393REE4WRRE4NHAV96': '<base-64-encoded-JWT>'
}"
`);
expect(requests.count).toEqual(1);
});
});
describe("public-keys", () => {
function mockIssueRequest(expectedBrokerName: string) {
const requests = { count: 0 };
msw.use(
http.get(
"*/accounts/:accountId/pubsub/namespaces/:namespaceName/brokers/:brokerName/publickeys",
({ params }) => {
requests.count++;
expect(params.accountId).toEqual("some-account-id");
expect(params.namespaceName).toEqual("some-namespace");
expect(params.brokerName).toEqual(expectedBrokerName);
return HttpResponse.json(
{
success: true,
errors: [],
messages: [],
result: {
public_keys: "Mock-Public-Key",
},
},
{ status: 200 }
);
},
{ once: true }
)
);
return requests;
}
it("should return the public keys for a broker", async () => {
const requests = mockIssueRequest("my-broker");
await runWrangler(
"pubsub broker public-keys my-broker --namespace=some-namespace"
);
expect(std.err).toMatchInlineSnapshot(`""`);
expect(std.out).toMatchInlineSnapshot(
`"{ public_keys: 'Mock-Public-Key' }"`
);
expect(requests.count).toEqual(1);
});
});
});
});
});