-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbreaker.test.js
98 lines (82 loc) · 3.18 KB
/
breaker.test.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
/**
* Copyright © 2013 - 2017 Tinder, Inc.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
'use strict';
const proxyquire = require('proxyquire');
const MockRedisClient = require('./MockRedisClient');
describe('Test breakers', () => {
const WrappedClient = proxyquire('../lib/WrappedClient', { redis: MockRedisClient });
const ShardedRedis = proxyquire('../ShardedRedisClient', { './lib/WrappedClient': WrappedClient });
it('should call the appropriate redis function with a closed breaker', (done) => {
const key = 'key';
const numMasterHosts = 1;
const redisHosts = global.generateRedisHosts(numMasterHosts);
const options = {
breakerConfig: {
threshold: 0.5,
circuitDuration: 15000,
timeout: 5000
}
};
const shardedClient = new ShardedRedis(redisHosts, options);
spyOn(MockRedisClient.prototype, 'get').and.callThrough();
shardedClient.get(key, (err) => {
expect(err).toBe(null);
expect(MockRedisClient.prototype.get).toHaveBeenCalledTimes(1);
done();
});
});
it('should receive error when redis command fails', function (done) {
const key = 'key';
const numMasterHosts = 1;
const redisHosts = global.generateRedisHosts(numMasterHosts);
const options = {
breakerConfig: {
threshold: 0.5,
circuitDuration: 15000,
timeout: 5000
}
};
const shardedClient = new ShardedRedis(redisHosts, options);
spyOn(MockRedisClient.prototype, 'get').and.callFake((key, cb) => cb(new Error('an error from the redis client')));
shardedClient.get(key, (err) => {
expect(err instanceof Error).toBeTrue();
expect(MockRedisClient.prototype.get).toHaveBeenCalledTimes(1);
done();
});
});
it('should not call the redis function if the breaker is open', function (done) {
const key = 'key';
const numMasterHosts = 1;
const redisHosts = global.generateRedisHosts(numMasterHosts);
const options = {
breakerConfig: {
threshold: 0.5,
circuitDuration: 15000,
timeout: 5000
}
};
const shardedClient = new ShardedRedis(redisHosts, options);
const mockedClient = shardedClient._getWrappedClient(key).get();
// manually open it first
mockedClient._breaker._open();
spyOn(MockRedisClient.prototype, 'get').and.callThrough();
shardedClient.get(key, (err) => {
expect(err instanceof Error).toBeTrue();
expect(MockRedisClient.prototype.get).not.toHaveBeenCalled();
done();
});
});
});