-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanager.test.js
More file actions
353 lines (269 loc) · 9.31 KB
/
Copy pathmanager.test.js
File metadata and controls
353 lines (269 loc) · 9.31 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
const { expect } = require('chai');
const { Service, CommunicationsManager, RabbitClient } = require('../src');
const { RABBIT_URL } = process.env;
describe('CommunicationsManager (manages a pool of Communicators to interact with multiple services simultaneously. Core gateway functionality)', () => {
const NAMESPACE = 'namespace-3';
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('registers multiple communicators', async () => {
const manager = new CommunicationsManager({
namespace: NAMESPACE,
rabbitClient,
});
manager.registerCommunicator('service-1', {
isInputEnabled: true,
isOutputEnabled: true,
});
manager.addOutputListener('service-1', () => {}); // first listener addition method
manager.registerCommunicator(
'service-2',
{
isInputEnabled: true,
isOutputEnabled: true,
},
() => {}, // second listener addition method
);
await manager.start();
const registeredCommunicators = Object.values(manager.communicatorMap);
createdQueues.push(
registeredCommunicators[0].inputQueueName,
registeredCommunicators[0].outputQueueName,
registeredCommunicators[1].inputQueueName,
registeredCommunicators[1].outputQueueName,
);
expect(registeredCommunicators).to.have.lengthOf(2);
expect(registeredCommunicators[0].inputChannel).not.to.be.equal(undefined);
expect(registeredCommunicators[0].outputChannel).not.to.be.equal(undefined);
expect(registeredCommunicators[1].inputChannel).not.to.be.equal(undefined);
expect(registeredCommunicators[1].outputChannel).not.to.be.equal(undefined);
});
it('allows to apply async (koa-style) middleware for all incoming messages', async () => {
const serviceName = 'service-3';
const manager = new CommunicationsManager({
namespace: NAMESPACE,
rabbitClient,
});
const service = new Service({
namespace: NAMESPACE,
name: serviceName,
isOutputEnabled: true,
isInputEnabled: false,
rabbitClient,
});
manager.registerCommunicator(serviceName, {
isOutputEnabled: true,
isInputEnabled: false,
});
const middlewareTags = {
ROOT_1: 'root 1',
ROOT_2: 'root 2',
ROOT_3: 'root 3',
SPECIFIC_1: 'specific 1',
SPECIFIC_2: 'specific 2',
SPECIFIC_3: 'specific 3',
SPECIFIC_4: 'specific 4',
SPECIFIC_5: 'specific 5',
SPECIFIC_6: 'specific 6',
CONTROLLER: 'controller',
ROOT_REVERSE_FLOW: 'root reverse flow',
};
const calledMiddlewareTags = [];
manager.applyMiddleware(async (ctx, next) => {
await next();
calledMiddlewareTags.push(middlewareTags.ROOT_REVERSE_FLOW);
});
manager.applyMiddleware(async (ctx, next) => {
calledMiddlewareTags.push(middlewareTags.ROOT_1);
await next();
});
manager.applyMiddleware([
async (ctx, next) => {
calledMiddlewareTags.push(middlewareTags.ROOT_2);
await next();
},
async (ctx, next) => {
calledMiddlewareTags.push(middlewareTags.ROOT_3);
await next();
},
]);
manager.applyMiddleware(serviceName, async (ctx, next) => {
calledMiddlewareTags.push(middlewareTags.SPECIFIC_1);
await next();
});
manager.applyMiddleware([serviceName], async (ctx, next) => {
calledMiddlewareTags.push(middlewareTags.SPECIFIC_2);
await next();
});
manager.applyMiddleware(serviceName, [
async (ctx, next) => {
calledMiddlewareTags.push(middlewareTags.SPECIFIC_3);
await next();
},
async (ctx, next) => {
calledMiddlewareTags.push(middlewareTags.SPECIFIC_4);
await next();
},
]);
manager.applyMiddleware([serviceName], [
async (ctx, next) => {
calledMiddlewareTags.push(middlewareTags.SPECIFIC_5);
await next();
},
async (ctx, next) => {
calledMiddlewareTags.push(middlewareTags.SPECIFIC_6);
await next();
},
]);
manager.addOutputListener(serviceName, () => {
calledMiddlewareTags.push(middlewareTags.CONTROLLER);
});
await service.start();
await manager.start();
createdQueues.push(service.outputQueueName);
await service.send({ trigger: 'message' });
const middlewareTagsList = Object.values(middlewareTags);
const isMiddlewareCalledProperly = await new Promise((resolve) => {
const timeoutId = setTimeout(() => resolve(false), 2e3);
const intervalId = setInterval(() => {
if (calledMiddlewareTags.length !== middlewareTagsList.length) {
return;
}
const result = JSON.stringify(middlewareTagsList) === JSON.stringify(calledMiddlewareTags);
if (result) {
clearTimeout(timeoutId);
clearInterval(intervalId);
resolve(true);
}
});
});
expect(isMiddlewareCalledProperly).to.be.equal(true);
});
it('allows to send messages via specific Communicator (pass single Service name when sending)', async () => {
const serviceName = 'service-4';
const service = new Service({
namespace: NAMESPACE,
name: serviceName,
isInputEnabled: true,
isOutputEnabled: false,
rabbitClient,
});
const manager = new CommunicationsManager({
namespace: NAMESPACE,
rabbitClient,
});
manager.registerCommunicator(serviceName, {
isInputEnabled: true,
isOutputEnabled: false,
});
const messagesToSend = new Array(100).fill(null).map(() => ({ test: Math.random() }));
const receivedMessages = [];
service.addInputListener((ctx) => {
receivedMessages.push(ctx.data);
});
await service.start();
await manager.start();
createdQueues.push(service.inputQueueName);
await Promise.all(
messagesToSend.map(msg => manager.send(serviceName, msg)),
);
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);
if (areAllMessagesReceived) {
clearTimeout(timeoutId);
clearInterval(intervalId);
resolve(true);
}
}, 100);
});
expect(areMessagesReceivedByService).to.be.equal(true);
});
it('allows to broadcast same messages via multiple Communicators (pass array of Service names when sending)', async () => {
const serviceName1 = 'service-5';
const serviceName2 = 'service-6';
const service1 = new Service({
namespace: NAMESPACE,
name: serviceName1,
isInputEnabled: true,
isOutputEnabled: false,
rabbitClient,
});
const service2 = new Service({
namespace: NAMESPACE,
name: serviceName2,
isInputEnabled: true,
isOutputEnabled: false,
rabbitClient,
});
const manager = new CommunicationsManager({
namespace: NAMESPACE,
rabbitClient,
});
manager.registerCommunicator(serviceName1, {
isInputEnabled: true,
isOutputEnabled: false,
});
manager.registerCommunicator(serviceName2, {
isInputEnabled: true,
isOutputEnabled: false,
});
const messagesToSend = new Array(100).fill(null).map(() => ({ test: Math.random() }));
const receivedMessages1 = [];
const receivedMessages2 = [];
service1.addInputListener((ctx) => {
receivedMessages1.push(ctx.data);
});
service2.addInputListener((ctx) => {
receivedMessages2.push(ctx.data);
});
await service1.start();
await service2.start();
await manager.start();
createdQueues.push(service1.inputQueueName, service2.inputQueueName);
await Promise.all(
messagesToSend.map(msg => manager.broadcast(msg)),
);
const areMessagesReceivedByService = await new Promise((resolve) => {
const timeoutId = setTimeout(() => resolve(false), 2e3);
const intervalId = setInterval(() => {
if (receivedMessages1.length !== messagesToSend.length) {
return;
}
if (receivedMessages2.length !== messagesToSend.length) {
return;
}
const areAllMessagesReceived1 = messagesToSend.map(
item => receivedMessages1.some(receivedItem => receivedItem.test === item.test),
).every(Boolean);
const areAllMessagesReceived2 = messagesToSend.map(
item => receivedMessages2.some(receivedItem => receivedItem.test === item.test),
).every(Boolean);
if (areAllMessagesReceived1 && areAllMessagesReceived2) {
clearTimeout(timeoutId);
clearInterval(intervalId);
resolve(true);
}
}, 100);
});
expect(areMessagesReceivedByService).to.be.equal(true);
});
});