-
Notifications
You must be signed in to change notification settings - Fork 453
Expand file tree
/
Copy pathioredis.js
More file actions
135 lines (116 loc) · 3.87 KB
/
ioredis.js
File metadata and controls
135 lines (116 loc) · 3.87 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
var makeTest = require('./context')
var Bottleneck = require('./bottleneck')
var assert = require('assert')
var Redis = require('ioredis')
if (process.env.DATASTORE === 'ioredis') {
describe('ioredis-only', function () {
var c
afterEach(function () {
return c.limiter.disconnect(false)
})
it('Should accept ioredis lib override', function () {
c = makeTest({
maxConcurrent: 2,
Redis,
clientOptions: {},
clusterNodes: [{
host: process.env.REDIS_HOST,
port: process.env.REDIS_PORT
}]
})
c.mustEqual(c.limiter.datastore, 'ioredis')
})
it('Should connect in Redis Cluster mode', function () {
c = makeTest({
maxConcurrent: 2,
clientOptions: {},
clusterNodes: [{
host: process.env.REDIS_HOST,
port: process.env.REDIS_PORT
}]
})
c.mustEqual(c.limiter.datastore, 'ioredis')
assert(c.limiter._store.connection.client.nodes().length >= 0)
})
it('Should connect in Redis Cluster mode with premade client', function () {
var client = new Redis.Cluster('')
var connection = new Bottleneck.IORedisConnection({ client })
c = makeTest({
maxConcurrent: 2,
clientOptions: {},
clusterNodes: [{
host: process.env.REDIS_HOST,
port: process.env.REDIS_PORT
}]
})
c.mustEqual(c.limiter.datastore, 'ioredis')
assert(c.limiter._store.connection.client.nodes().length >= 0)
connection.disconnect(false)
})
it('Should accept existing connections', function () {
var connection = new Bottleneck.IORedisConnection()
connection.id = 'super-connection'
c = makeTest({
minTime: 50,
connection
})
c.pNoErrVal(c.limiter.schedule(c.promise, null, 1), 1)
c.pNoErrVal(c.limiter.schedule(c.promise, null, 2), 2)
return c.last()
.then(function (results) {
c.checkResultsOrder([[1], [2]])
c.checkDuration(50)
c.mustEqual(c.limiter.connection.id, 'super-connection')
c.mustEqual(c.limiter.datastore, 'ioredis')
return c.limiter.disconnect()
})
.then(function () {
// Shared connections should not be disconnected by the limiter
c.mustEqual(c.limiter.clients().client.status, 'ready')
return connection.disconnect()
})
})
it('Should accept existing redis clients', function () {
var client = new Redis()
client.id = 'super-client'
var connection = new Bottleneck.IORedisConnection({ client })
connection.id = 'super-connection'
c = makeTest({
minTime: 50,
connection
})
c.pNoErrVal(c.limiter.schedule(c.promise, null, 1), 1)
c.pNoErrVal(c.limiter.schedule(c.promise, null, 2), 2)
return c.last()
.then(function (results) {
c.checkResultsOrder([[1], [2]])
c.checkDuration(50)
c.mustEqual(c.limiter.clients().client.id, 'super-client')
c.mustEqual(c.limiter.connection.id, 'super-connection')
c.mustEqual(c.limiter.datastore, 'ioredis')
return c.limiter.disconnect()
})
.then(function () {
// Shared connections should not be disconnected by the limiter
c.mustEqual(c.limiter.clients().client.status, 'ready')
return connection.disconnect()
})
})
it('Should trigger error events on the shared connection', function (done) {
var connection = new Bottleneck.IORedisConnection({
clientOptions: {
port: 1
}
})
connection.on('error', function (err) {
c.mustEqual(c.limiter.datastore, 'ioredis')
connection.disconnect()
done()
})
c = makeTest({ connection })
c.limiter.on('error', function (err) {
done(err)
})
})
})
}