-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservice.test.js
More file actions
492 lines (376 loc) · 13.8 KB
/
service.test.js
File metadata and controls
492 lines (376 loc) · 13.8 KB
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
const { expect } = require('chai');
const { Service, RabbitClient } = require('../src');
const { RABBIT_URL } = process.env;
describe('Service (allows to exchange messages with it in both directions)', () => {
const NAMESPACE = 'namespace-1';
const rabbitClient = new RabbitClient(RABBIT_URL, {
disableLogging: true,
appName: NAMESPACE,
json: true,
});
const createdQueues = [];
after(async () => {
try {
const channel = await rabbitClient.getChannel();
await Promise.all(createdQueues.map(queue => channel.deleteQueue(queue).catch(() => {})));
await channel.deleteExchange(NAMESPACE);
} catch (e) {
// ignore clean-up errors
}
});
it('start method throws exception if input channel is enabled but no listener provided', async () => {
const service = new Service({
isOutputEnabled: false,
isInputEnabled: true,
namespace: NAMESPACE,
name: 'service-1',
rabbitClient,
});
// no service.addInputListener(fn) call here..
let isErrorCaught = false;
try {
await service.start();
} catch (e) {
isErrorCaught = true;
}
expect(isErrorCaught).to.be.equal(true);
});
it('creates input and output queues', async () => {
const serviceName = 'service-2';
const service = new Service({
isOutputEnabled: true,
isInputEnabled: true,
namespace: NAMESPACE,
name: serviceName,
rabbitClient,
});
service.addInputListener(() => {}); // required to start service
await service.start();
const { inputQueueName, outputQueueName } = service;
createdQueues.push(inputQueueName, outputQueueName);
expect(inputQueueName).to.be.a('string');
expect(outputQueueName).to.be.a('string');
expect(inputQueueName).to.be.equal(`${NAMESPACE}:${serviceName}:input`);
expect(outputQueueName).to.include(`${NAMESPACE}:${serviceName}:output`);
const doesInputQueueExist = await service.inputChannel.checkQueue(inputQueueName);
const doesOutputQueueExist = await service.outputChannel.checkQueue(outputQueueName);
expect(doesInputQueueExist).not.to.be.equal(undefined);
expect(doesOutputQueueExist).not.to.be.equal(undefined);
});
it('allows to turn off input or output functionality', async () => {
const inputServiceName = 'service-3.1-input-only';
const outputServiceName = 'service-3.2-output-only';
const inputService = new Service({
name: inputServiceName,
isOutputEnabled: false,
isInputEnabled: true,
namespace: NAMESPACE,
rabbitClient,
});
const outputService = new Service({
name: outputServiceName,
isOutputEnabled: true,
isInputEnabled: false,
namespace: NAMESPACE,
rabbitClient,
});
inputService.addInputListener(() => {});
await inputService.start();
await outputService.start();
createdQueues.push(inputService.inputQueueName, outputService.outputQueueName);
expect(inputService.outputChannel).to.be.equal(undefined);
expect(inputService.inputChannel).not.to.be.equal(undefined);
expect(outputService.inputChannel).to.be.equal(undefined);
expect(outputService.outputChannel).not.to.be.equal(undefined);
let areQueuesThatShouldExistSuccessfullyChecked = false;
try {
await inputService.inputChannel.checkQueue(inputService.inputQueueName);
await outputService.outputChannel.checkQueue(outputService.outputQueueName);
areQueuesThatShouldExistSuccessfullyChecked = true;
} catch (e) {
// ignore error, we are just interested in flag above
}
let isInputServiceOutputQueueSuccessfullyChecked = false;
try {
await inputService.inputChannel.checkQueue(inputService.outputQueueName);
} catch (e) {
// if queue does not exist, exception would be thrown
isInputServiceOutputQueueSuccessfullyChecked = true;
}
let isOutputServiceInputQueueSuccessfullyChecked = false;
try {
await outputService.outputChannel.checkQueue(outputService.inputQueueName);
} catch (e) {
// if queue does not exist, exception would be thrown
isOutputServiceInputQueueSuccessfullyChecked = true;
}
expect(areQueuesThatShouldExistSuccessfullyChecked).to.be.equal(true);
expect(isInputServiceOutputQueueSuccessfullyChecked).to.be.equal(true);
expect(isOutputServiceInputQueueSuccessfullyChecked).to.be.equal(true);
});
it('calls listener on input queue messages', async () => {
const testChannel = await rabbitClient.getChannel();
const service = new Service({
name: 'service-4-input-only',
isOutputEnabled: false,
isInputEnabled: true,
namespace: NAMESPACE,
rabbitClient,
});
const messagesToSend = new Array(100).fill(null).map(() => ({ test: Math.random() }));
const receivedMessages = [];
service.addInputListener((ctx) => {
receivedMessages.push(ctx.data);
});
await service.start();
createdQueues.push(service.inputQueueName);
await Promise.all(
messagesToSend.map(msg => testChannel.publish(
service.namespace,
service.inputQueueName,
{ data: msg, metadata: {} },
)),
);
const areMessagesReceivedByService = await new Promise((resolve) => {
const timeoutId = setTimeout(() => resolve(false), 2e3);
const intervalId = setInterval(() => {
if (receivedMessages.length === messagesToSend.length) {
const areAllMessagesReceived = messagesToSend.map(
item => receivedMessages.some(receivedItem => receivedItem.test === item.test),
).every(Boolean);
if (areAllMessagesReceived) {
clearTimeout(timeoutId);
clearInterval(intervalId);
resolve(true);
}
}
}, 100);
});
expect(areMessagesReceivedByService).to.be.equal(true);
});
it('sends messages to output queue', async () => {
const service = new Service({
name: 'service-5-output-only',
isOutputEnabled: true,
isInputEnabled: false,
namespace: NAMESPACE,
rabbitClient,
});
const { outputQueueName } = service;
await service.start();
createdQueues.push(outputQueueName);
const messagesToSend = new Array(100).fill(null).map(() => ({ test: Math.random() }));
const receivedMessages = [];
await rabbitClient.getChannel({
onReconnect: async (channel) => {
channel.consume(outputQueueName, async (msg, ch, parsedMessage) => {
receivedMessages.push(parsedMessage.data);
await ch.ack(msg);
});
},
});
await Promise.all(
messagesToSend.map(msg => service.send(msg)),
);
const areAllMessagesSentByService = await new Promise((resolve) => {
const timeoutId = setTimeout(() => resolve(false), 2e3);
const intervalId = setInterval(() => {
if (receivedMessages.length === messagesToSend.length) {
const areAllMessagesSent = messagesToSend.map(
item => receivedMessages.some(receivedItem => receivedItem.test === item.test),
).every(Boolean);
if (areAllMessagesSent) {
clearTimeout(timeoutId);
clearInterval(intervalId);
resolve(true);
}
}
}, 100);
});
expect(areAllMessagesSentByService).to.be.equal(true);
});
it('requeues message to input queue on listener\'s exceptions (shouldDiscardMessages = false)', async () => {
const testChannel = await rabbitClient.getChannel();
const service = new Service({
name: 'service-6-input-only',
shouldDiscardMessages: false,
isOutputEnabled: false,
isInputEnabled: true,
namespace: NAMESPACE,
rabbitClient,
});
const messagesToSend = new Array(3).fill(null).map(() => ({ test: Math.random() }));
const receivedMessages = [];
const receivedRequeuedMessages = [];
service.addInputListener(({ data }) => {
if (receivedMessages.some(receivedItem => receivedItem.test === data.test)) {
receivedRequeuedMessages.push(data);
} else {
receivedMessages.push(data);
throw new Error('Service test exception');
}
});
await service.start();
createdQueues.push(service.inputQueueName);
await Promise.all(
messagesToSend.map(msg => testChannel.publish(
service.namespace,
service.inputQueueName,
{ data: msg, metadata: {} },
)),
);
const areMessagesReceivedByService = await new Promise((resolve) => {
const timeoutId = setTimeout(() => resolve(false), 2e3);
const intervalId = setInterval(() => {
if (receivedMessages.length !== messagesToSend.length) {
return;
}
if (receivedRequeuedMessages.length !== receivedMessages.length) {
return;
}
const areAllMessagesReceived = messagesToSend.map(
item => receivedMessages.some(receivedItem => receivedItem.test === item.test),
).every(Boolean);
const areAllRequeuedMessagesReceived = messagesToSend.map(
item => receivedRequeuedMessages.some(receivedItem => receivedItem.test === item.test),
).every(Boolean);
if (areAllMessagesReceived && areAllRequeuedMessagesReceived) {
clearTimeout(timeoutId);
clearInterval(intervalId);
resolve(true);
}
}, 100);
});
expect(areMessagesReceivedByService).to.be.equal(true);
});
it('discards messages on listener\'s exceptions (shouldDiscardMessages = true)', async () => {
const testChannel = await rabbitClient.getChannel();
const service = new Service({
name: 'service-7-input-only',
shouldDiscardMessages: true,
isOutputEnabled: false,
isInputEnabled: true,
namespace: NAMESPACE,
rabbitClient,
});
const messagesToSend = new Array(3).fill(null).map(() => ({ test: Math.random() }));
const receivedMessages = [];
const receivedRequeuedMessages = [];
service.addInputListener(({ data }) => {
if (receivedMessages.some(receivedItem => receivedItem.test === data.test)) {
receivedRequeuedMessages.push(data);
} else {
receivedMessages.push(data);
throw new Error('Service discard test');
}
});
await service.start();
createdQueues.push(service.inputQueueName);
await Promise.all(
messagesToSend.map(msg => testChannel.publish(
service.namespace,
service.inputQueueName,
{ data: msg, metadata: {} },
)),
);
const areMessagesReceivedByService = await new Promise((resolve) => {
const timeoutId = setTimeout(() => resolve(false), 2e3);
const intervalId = setInterval(() => {
if (receivedMessages.length !== messagesToSend.length) {
return;
}
const areAllMessagesReceived = messagesToSend.map(
item => receivedMessages.some(receivedItem => receivedItem.test === item.test),
).every(Boolean);
const areAllRequeuedMessagesDiscarded = receivedRequeuedMessages.length === 0;
if (areAllMessagesReceived && areAllRequeuedMessagesDiscarded) {
clearTimeout(timeoutId);
clearInterval(intervalId);
resolve(true);
}
}, 100);
});
expect(areMessagesReceivedByService).to.be.equal(true);
});
it('passes itself to input listener and allows to send output messages using it', async () => {
const service = new Service({
shouldDiscardMessages: true,
isOutputEnabled: true,
isInputEnabled: true,
namespace: NAMESPACE,
name: 'service-8',
rabbitClient,
});
service.addInputListener((ctx) => {
ctx.service.send(ctx.data); // input queue -> output queue "echo"
});
await service.start();
const { namespace, inputQueueName, outputQueueName } = service;
createdQueues.push(inputQueueName, outputQueueName);
let isOutputMessageReceived = false;
const testChannel = await rabbitClient.getChannel({
onReconnect: async (channel) => {
channel.consume(outputQueueName, async (msg, ch) => {
isOutputMessageReceived = true;
await ch.ack(msg);
});
},
});
await testChannel.publish(
namespace,
inputQueueName,
{ data: {}, metadata: {} },
);
const isEchoMessageReceived = await new Promise((resolve) => {
const timeoutId = setTimeout(() => resolve(false), 2e3);
const intervalId = setInterval(() => {
if (isOutputMessageReceived) {
clearTimeout(timeoutId);
clearInterval(intervalId);
resolve(true);
}
}, 100);
});
expect(isEchoMessageReceived).to.be.equal(true);
});
it('allows to pass custom metadata to use it in every output message', async () => {
const serviceMetadata = {
num: 1,
boo: true,
str: 'foo',
};
const service = new Service({
name: 'service-9-output-only',
isOutputEnabled: true,
isInputEnabled: false,
namespace: NAMESPACE,
metadata: serviceMetadata,
rabbitClient,
});
const { outputQueueName } = service;
await service.start();
createdQueues.push(outputQueueName);
let receivedMessageMetadata;
await rabbitClient.getChannel({
onReconnect: async (channel) => {
channel.consume(outputQueueName, async (msg, ch, parsedMessage) => {
receivedMessageMetadata = parsedMessage.metadata;
await ch.ack(msg);
});
},
});
await service.send({ foo: 'bar' });
await new Promise((resolve, reject) => {
const timeoutId = setTimeout(() => reject(), 2e3);
const intervalId = setInterval(() => {
if (!receivedMessageMetadata) {
return;
}
clearTimeout(timeoutId);
clearInterval(intervalId);
resolve();
}, 100);
});
expect(receivedMessageMetadata).to.be.eql(serviceMetadata);
});
});