This repository was archived by the owner on Dec 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathcircuit_breaker_spec.js
408 lines (303 loc) · 8.55 KB
/
circuit_breaker_spec.js
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
describe('CircuitBreaker', function() {
var breaker;
var success = function() {
var command = function(success) {
success();
};
breaker.run(command);
};
var fail = function() {
var command = function(success, failed) {
failed();
};
breaker.run(command);
};
var timeout = function() {
var command = function() {};
breaker.run(command);
jasmine.Clock.tick(1000);
jasmine.Clock.tick(1000);
jasmine.Clock.tick(1000);
};
beforeEach(function() {
jasmine.Clock.useMock();
breaker = new CircuitBreaker();
});
describe('with a working service', function() {
it('should run the command', function() {
var command = jasmine.createSpy();
breaker.run(command);
expect(command).toHaveBeenCalled();
});
it('should be able to notify the breaker if the command was successful', function() {
success();
var bucket = breaker._buckets[breaker._buckets.length - 1];
expect(bucket.successes).toBe(1);
});
it('should be able to notify the breaker if the command failed', function() {
fail();
var bucket = breaker._lastBucket();
expect(bucket.failures).toBe(1);
});
it('should record a timeout if not a success or failure', function() {
timeout();
var bucket = breaker._lastBucket();
expect(bucket.timeouts).toBe(1);
});
it('should not call timeout if there is a success', function() {
success();
jasmine.Clock.tick(1000);
jasmine.Clock.tick(1000);
jasmine.Clock.tick(1000);
var bucket = breaker._lastBucket();
expect(bucket.timeouts).toBe(0);
});
it('should not call timeout if there is a failure', function() {
fail();
jasmine.Clock.tick(1000);
jasmine.Clock.tick(1000);
jasmine.Clock.tick(1000);
var bucket = breaker._lastBucket();
expect(bucket.timeouts).toBe(0);
});
it('should not record a success when there is a timeout', function() {
var command = function(success) {
jasmine.Clock.tick(1000);
jasmine.Clock.tick(1000);
jasmine.Clock.tick(1000);
success();
};
breaker.run(command);
var bucket = breaker._lastBucket();
expect(bucket.successes).toBe(0);
});
it('should not record a failure when there is a timeout', function() {
var command = function(success, fail) {
jasmine.Clock.tick(1000);
jasmine.Clock.tick(1000);
jasmine.Clock.tick(1000);
fail();
};
breaker.run(command);
var bucket = breaker._lastBucket();
expect(bucket.failures).toBe(0);
});
});
describe('with a broken service', function() {
beforeEach(function() {
spyOn(breaker, 'isOpen').andReturn(true);
});
it('should not run the command', function() {
var command = jasmine.createSpy();
breaker.run(command);
expect(command).not.toHaveBeenCalled();
});
it('should run the fallback if one is provided', function() {
var command = jasmine.createSpy();
var fallback = jasmine.createSpy();
breaker.run(command, fallback);
expect(fallback).toHaveBeenCalled();
});
it('should record a short circuit', function() {
var command = jasmine.createSpy();
breaker.run(command);
expect(command).not.toHaveBeenCalled();
var bucket = breaker._lastBucket();
expect(bucket.shortCircuits).toBe(1);
});
});
describe('isOpen', function() {
it('should be false if errors are below the threshold', function() {
breaker.errorThreshold = 75;
fail();
fail();
fail();
success();
expect(breaker.isOpen()).toBe(false);
});
it('should be true if errors are above the threshold', function() {
breaker.errorThreshold = 75;
fail();
fail();
fail();
fail();
fail();
success();
expect(breaker.isOpen()).toBe(true);
});
it('should be true if timeouts are above the threshold', function() {
breaker.errorThreshold = 25;
breaker.volumeThreshold = 1;
timeout();
timeout();
success();
expect(breaker.isOpen()).toBe(true);
});
it('should maintain failed state after window has passed', function() {
breaker.errorThreshold = 25;
breaker.volumeThreshold = 1;
fail();
fail();
fail();
fail();
jasmine.Clock.tick(11001);
fail();
expect(breaker.isOpen()).toBe(true);
});
it('should retry after window has elapsed', function() {
fail();
fail();
fail();
fail();
jasmine.Clock.tick(11001);
var command = jasmine.createSpy();
breaker.run(command);
expect(command).toHaveBeenCalled();
});
it('should include errors within the current time window', function() {
breaker.errorThreshold = 75;
fail();
fail();
fail();
fail();
fail();
success();
jasmine.Clock.tick(1001);
expect(breaker.isOpen()).toBe(true);
});
it('should not be broken without having more than minumum number of errors', function() {
breaker.errorThreshold = 25;
breaker.volumeThreshold = 1;
fail();
expect(breaker.isOpen()).toBe(false);
});
});
describe('logging', function() {
var openSpy, closeSpy;
beforeEach(function() {
openSpy = jasmine.createSpy();
closeSpy = jasmine.createSpy();
breaker.volumeThreshold = 1;
breaker.onCircuitOpen = openSpy;
breaker.onCircuitClose = closeSpy;
});
it('should call the onCircuitOpen method when a failure is recorded', function() {
fail();
fail();
expect(openSpy).toHaveBeenCalled();
});
it('should call the onCircuitClosed method when the break is successfully reset', function() {
fail();
fail();
fail();
fail();
jasmine.Clock.tick(11001);
success();
expect(closeSpy).toHaveBeenCalled();
});
});
describe('forceClose', function() {
it('should bypass threshold checks', function() {
fail();
fail();
fail();
fail();
fail();
fail();
breaker.forceClose();
var command = jasmine.createSpy();
breaker.run(command);
expect(command).toHaveBeenCalled();
expect(breaker.isOpen()).toBe(false);
});
it('should not collect stats', function() {
fail();
fail();
fail();
fail();
fail();
fail();
breaker.forceClose();
success();
success();
success();
success();
success();
var command = jasmine.createSpy();
breaker.run(command);
expect(command).toHaveBeenCalled();
expect(breaker.isOpen()).toBe(false);
});
});
describe('forceOpen', function() {
it('should bypass threshold checks', function() {
success();
success();
success();
success();
success();
success();
breaker.forceOpen();
var command = jasmine.createSpy();
breaker.run(command);
expect(command).not.toHaveBeenCalled();
expect(breaker.isOpen()).toBe(true);
});
it('should not collect stats', function() {
success();
success();
success();
success();
success();
success();
breaker.forceOpen();
fail();
fail();
fail();
fail();
fail();
var command = jasmine.createSpy();
breaker.run(command);
expect(command).not.toHaveBeenCalled();
expect(breaker.isOpen()).toBe(true);
});
});
describe('unforce', function () {
it('should recover from a force-closed circuit', function() {
fail();
fail();
fail();
fail();
fail();
fail();
breaker.forceClose();
breaker.unforce();
var command = jasmine.createSpy();
breaker.run(command);
expect(command).not.toHaveBeenCalled();
expect(breaker.isOpen()).toBe(true);
});
it('should recover from a force-open circuit', function() {
success();
success();
success();
success();
success();
success();
breaker.forceOpen();
breaker.unforce();
var command = jasmine.createSpy();
breaker.run(command);
expect(command).toHaveBeenCalled();
expect(breaker.isOpen()).toBe(false);
});
});
describe('destroy', function(){
it('should stop creating new buckets', function(){
// Let it run to create some bucket
jasmine.Clock.tick(5001);
breaker.destroy();
expect(breaker._buckets.length).toEqual(6);
});
});
});