2016-06-08 07:18:37 -04:00
|
|
|
sinon = require('sinon')
|
|
|
|
chai = require('chai')
|
|
|
|
should = chai.should()
|
|
|
|
modulePath = "../../../../app/js/RedisBackend.js"
|
|
|
|
SandboxedModule = require('sandboxed-module')
|
|
|
|
RedisKeyBuilder = require "../../../../app/js/RedisKeyBuilder"
|
|
|
|
|
|
|
|
describe "RedisBackend", ->
|
|
|
|
beforeEach ->
|
|
|
|
@Settings =
|
|
|
|
redis:
|
|
|
|
documentupdater: [{
|
|
|
|
primary: true
|
|
|
|
port: "6379"
|
|
|
|
host: "localhost"
|
|
|
|
password: "single-password"
|
|
|
|
key_schema:
|
|
|
|
blockingKey: ({doc_id}) -> "Blocking:#{doc_id}"
|
|
|
|
docLines: ({doc_id}) -> "doclines:#{doc_id}"
|
|
|
|
docOps: ({doc_id}) -> "DocOps:#{doc_id}"
|
|
|
|
docVersion: ({doc_id}) -> "DocVersion:#{doc_id}"
|
2017-02-14 11:11:43 -05:00
|
|
|
docHash: ({doc_id}) -> "DocHash:#{doc_id}"
|
2016-06-08 07:18:37 -04:00
|
|
|
projectKey: ({doc_id}) -> "ProjectId:#{doc_id}"
|
|
|
|
pendingUpdates: ({doc_id}) -> "PendingUpdates:#{doc_id}"
|
|
|
|
docsInProject: ({project_id}) -> "DocsIn:#{project_id}"
|
|
|
|
}, {
|
|
|
|
cluster: [{
|
|
|
|
port: "7000"
|
|
|
|
host: "localhost"
|
|
|
|
}]
|
|
|
|
password: "cluster-password"
|
|
|
|
key_schema:
|
|
|
|
blockingKey: ({doc_id}) -> "Blocking:{#{doc_id}}"
|
|
|
|
docLines: ({doc_id}) -> "doclines:{#{doc_id}}"
|
|
|
|
docOps: ({doc_id}) -> "DocOps:{#{doc_id}}"
|
|
|
|
docVersion: ({doc_id}) -> "DocVersion:{#{doc_id}}"
|
2017-02-14 11:11:43 -05:00
|
|
|
docHash: ({doc_id}) -> "DocHash:{#{doc_id}}"
|
2016-06-08 07:18:37 -04:00
|
|
|
projectKey: ({doc_id}) -> "ProjectId:{#{doc_id}}"
|
|
|
|
pendingUpdates: ({doc_id}) -> "PendingUpdates:{#{doc_id}}"
|
|
|
|
docsInProject: ({project_id}) -> "DocsIn:{#{project_id}}"
|
|
|
|
}]
|
|
|
|
|
|
|
|
test_context = @
|
|
|
|
class Cluster
|
|
|
|
constructor: (@config) ->
|
|
|
|
test_context.rclient_ioredis = @
|
2016-06-23 10:38:51 -04:00
|
|
|
|
|
|
|
nodes: sinon.stub()
|
2016-07-04 06:14:23 -04:00
|
|
|
|
|
|
|
@timer = timer = sinon.stub()
|
|
|
|
class Timer
|
|
|
|
constructor: (args...) -> timer(args...)
|
|
|
|
done: () ->
|
2016-06-08 07:18:37 -04:00
|
|
|
|
|
|
|
@RedisBackend = SandboxedModule.require modulePath, requires:
|
|
|
|
"settings-sharelatex": @Settings
|
|
|
|
"logger-sharelatex": @logger = { error: sinon.stub(), log: sinon.stub(), warn: sinon.stub() }
|
|
|
|
"redis-sharelatex": @redis =
|
|
|
|
createClient: sinon.stub().returns @rclient_redis = {}
|
2016-06-23 13:00:03 -04:00
|
|
|
activeHealthCheck: sinon.stub()
|
2016-06-08 07:18:37 -04:00
|
|
|
"ioredis": @ioredis =
|
|
|
|
Cluster: Cluster
|
2016-06-28 11:49:15 -04:00
|
|
|
"metrics-sharelatex":
|
2016-07-04 06:14:23 -04:00
|
|
|
@Metrics =
|
|
|
|
inc: sinon.stub()
|
|
|
|
Timer: Timer
|
|
|
|
|
2016-06-08 07:18:37 -04:00
|
|
|
@client = @RedisBackend.createClient()
|
|
|
|
|
|
|
|
@doc_id = "mock-doc-id"
|
2016-07-06 09:24:27 -04:00
|
|
|
@project_id = "mock-project-id"
|
2016-06-08 07:18:37 -04:00
|
|
|
|
|
|
|
it "should create a redis client", ->
|
|
|
|
@redis.createClient
|
|
|
|
.calledWith({
|
|
|
|
port: "6379"
|
|
|
|
host: "localhost"
|
|
|
|
password: "single-password"
|
|
|
|
})
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
it "should create an ioredis cluster client", ->
|
|
|
|
@rclient_ioredis.config.should.deep.equal [{
|
|
|
|
port: "7000"
|
|
|
|
host: "localhost"
|
|
|
|
}]
|
|
|
|
|
|
|
|
describe "individual commands", ->
|
|
|
|
describe "with the same results", ->
|
|
|
|
beforeEach (done) ->
|
|
|
|
@content = "bar"
|
|
|
|
@rclient_redis.get = sinon.stub()
|
|
|
|
@rclient_redis.get.withArgs("doclines:#{@doc_id}").yields(null, @content)
|
|
|
|
@rclient_ioredis.get = sinon.stub()
|
|
|
|
@rclient_ioredis.get.withArgs("doclines:{#{@doc_id}}").yields(null, @content)
|
|
|
|
@client.get RedisKeyBuilder.docLines({doc_id: @doc_id}), (error, @result) =>
|
|
|
|
setTimeout () -> # Let all background requests complete
|
|
|
|
done(error)
|
|
|
|
|
|
|
|
it "should return the result", ->
|
|
|
|
@result.should.equal @content
|
|
|
|
|
|
|
|
it "should have called the redis client with the appropriate key", ->
|
|
|
|
@rclient_redis.get
|
|
|
|
.calledWith("doclines:#{@doc_id}")
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
it "should have called the ioredis cluster client with the appropriate key", ->
|
|
|
|
@rclient_ioredis.get
|
|
|
|
.calledWith("doclines:{#{@doc_id}}")
|
|
|
|
.should.equal true
|
2016-06-28 11:49:15 -04:00
|
|
|
|
|
|
|
it "should send a metric", ->
|
|
|
|
@Metrics.inc
|
|
|
|
.calledWith("backend-match")
|
|
|
|
.should.equal true
|
2016-07-04 06:14:23 -04:00
|
|
|
|
|
|
|
it "should time the commands", ->
|
|
|
|
@timer
|
|
|
|
.calledWith("redis.ioredis.get")
|
|
|
|
.should.equal true
|
|
|
|
@timer
|
|
|
|
.calledWith("redis.noderedis.get")
|
|
|
|
.should.equal true
|
2016-06-08 07:18:37 -04:00
|
|
|
|
|
|
|
describe "with different results", ->
|
|
|
|
beforeEach (done) ->
|
|
|
|
@rclient_redis.get = sinon.stub()
|
|
|
|
@rclient_redis.get.withArgs("doclines:#{@doc_id}").yields(null, "primary-result")
|
|
|
|
@rclient_ioredis.get = sinon.stub()
|
|
|
|
@rclient_ioredis.get.withArgs("doclines:{#{@doc_id}}").yields(null, "secondary-result")
|
|
|
|
@client.get RedisKeyBuilder.docLines({doc_id: @doc_id}), (error, @result) =>
|
|
|
|
setTimeout () -> # Let all background requests complete
|
|
|
|
done(error)
|
|
|
|
|
|
|
|
it "should return the primary result", ->
|
|
|
|
@result.should.equal "primary-result"
|
|
|
|
|
2016-06-28 11:49:15 -04:00
|
|
|
it "should send a metric", ->
|
|
|
|
@Metrics.inc
|
|
|
|
.calledWith("backend-conflict")
|
2016-06-08 07:18:37 -04:00
|
|
|
.should.equal true
|
|
|
|
|
2016-07-06 09:24:27 -04:00
|
|
|
describe "with differently ordered results from smembers", ->
|
|
|
|
beforeEach (done) ->
|
|
|
|
@rclient_redis.smembers = sinon.stub()
|
|
|
|
@rclient_redis.smembers.withArgs("DocsIn:#{@project_id}").yields(null, ["one", "two"])
|
|
|
|
@rclient_ioredis.smembers = sinon.stub()
|
|
|
|
@rclient_ioredis.smembers.withArgs("DocsIn:{#{@project_id}}").yields(null, ["two", "one"])
|
|
|
|
@client.smembers RedisKeyBuilder.docsInProject({project_id: @project_id}), (error, @result) =>
|
|
|
|
setTimeout () -> # Let all background requests complete
|
|
|
|
done(error)
|
|
|
|
|
|
|
|
it "should return the primary result", ->
|
|
|
|
@result.should.deep.equal ["one", "two"]
|
|
|
|
|
|
|
|
it "should send a metric indicating a match", ->
|
|
|
|
@Metrics.inc
|
|
|
|
.calledWith("backend-match")
|
|
|
|
.should.equal true
|
|
|
|
|
2016-06-08 07:18:37 -04:00
|
|
|
describe "when the secondary errors", ->
|
|
|
|
beforeEach (done) ->
|
|
|
|
@rclient_redis.get = sinon.stub()
|
|
|
|
@rclient_redis.get.withArgs("doclines:#{@doc_id}").yields(null, "primary-result")
|
|
|
|
@rclient_ioredis.get = sinon.stub()
|
|
|
|
@rclient_ioredis.get.withArgs("doclines:{#{@doc_id}}").yields(@error = new Error("oops"))
|
|
|
|
@client.get RedisKeyBuilder.docLines({doc_id: @doc_id}), (error, @result) =>
|
|
|
|
setTimeout () -> # Let all background requests complete
|
|
|
|
done(error)
|
|
|
|
|
|
|
|
it "should return the primary result", ->
|
|
|
|
@result.should.equal "primary-result"
|
|
|
|
|
|
|
|
it "should log out the secondary error", ->
|
|
|
|
@logger.error
|
|
|
|
.calledWith({
|
|
|
|
err: @error
|
|
|
|
}, "error in redis backend")
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
describe "when the primary errors", ->
|
|
|
|
beforeEach (done) ->
|
|
|
|
@rclient_redis.get = sinon.stub()
|
|
|
|
@rclient_redis.get.withArgs("doclines:#{@doc_id}").yields(@error = new Error("oops"))
|
|
|
|
@rclient_ioredis.get = sinon.stub()
|
|
|
|
@rclient_ioredis.get.withArgs("doclines:{#{@doc_id}}").yields(null, "secondary-result")
|
|
|
|
@client.get RedisKeyBuilder.docLines({doc_id: @doc_id}), (@returned_error, @result) =>
|
|
|
|
setTimeout () -> # Let all background requests complete
|
|
|
|
done()
|
|
|
|
|
|
|
|
it "should return the error", ->
|
|
|
|
@returned_error.should.equal @error
|
|
|
|
|
|
|
|
it "should log out the error", ->
|
|
|
|
@logger.error
|
|
|
|
.calledWith({
|
|
|
|
err: @error
|
|
|
|
}, "error in redis backend")
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
describe "when the command has the key in a non-zero argument index", ->
|
|
|
|
beforeEach (done) ->
|
|
|
|
@script = "mock-script"
|
|
|
|
@key_count = 1
|
|
|
|
@value = "mock-value"
|
|
|
|
@rclient_redis.eval = sinon.stub()
|
|
|
|
@rclient_redis.eval.withArgs(@script, @key_count, "Blocking:#{@doc_id}", @value).yields(null)
|
|
|
|
@rclient_ioredis.eval = sinon.stub()
|
|
|
|
@rclient_ioredis.eval.withArgs(@script, @key_count, "Blocking:{#{@doc_id}}", @value).yields(null, @content)
|
|
|
|
@client.eval @script, @key_count, RedisKeyBuilder.blockingKey({doc_id: @doc_id}), @value, (error) =>
|
|
|
|
setTimeout () -> # Let all background requests complete
|
|
|
|
done(error)
|
|
|
|
|
|
|
|
it "should have called the redis client with the appropriate key", ->
|
|
|
|
@rclient_redis.eval
|
|
|
|
.calledWith(@script, @key_count, "Blocking:#{@doc_id}", @value)
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
it "should have called the ioredis cluster client with the appropriate key", ->
|
|
|
|
@rclient_ioredis.eval
|
|
|
|
.calledWith(@script, @key_count, "Blocking:{#{@doc_id}}", @value)
|
|
|
|
.should.equal true
|
2016-07-06 07:25:36 -04:00
|
|
|
|
|
|
|
describe "when the secondary takes longer than SECONDARY_TIMEOUT", ->
|
|
|
|
beforeEach (done) ->
|
|
|
|
@client.SECONDARY_TIMEOUT = 10
|
|
|
|
@content = "bar"
|
2016-07-07 04:45:55 -04:00
|
|
|
@rclient_redis.get = (key, cb) =>
|
|
|
|
key.should.equal "doclines:#{@doc_id}"
|
|
|
|
setTimeout () =>
|
|
|
|
cb(null, @content)
|
|
|
|
, @client.SECONDARY_TIMEOUT * 3 # If the secondary errors first, don't affect the primary result
|
2016-07-06 07:25:36 -04:00
|
|
|
@rclient_ioredis.get = (key, cb) =>
|
|
|
|
key.should.equal "doclines:{#{@doc_id}}"
|
|
|
|
setTimeout () =>
|
|
|
|
cb(null, @content)
|
|
|
|
, @client.SECONDARY_TIMEOUT * 2
|
|
|
|
@client.get RedisKeyBuilder.docLines({doc_id: @doc_id}), (error, @result) =>
|
|
|
|
done(error)
|
|
|
|
|
|
|
|
it "should log out an error for the backend", ->
|
|
|
|
@logger.error
|
2016-07-07 04:45:55 -04:00
|
|
|
.calledWith({err: new Error("backend timed out")}, "backend timed out")
|
2016-07-06 07:25:36 -04:00
|
|
|
.should.equal true
|
2016-07-07 04:45:55 -04:00
|
|
|
|
|
|
|
it "should return the primary result", ->
|
|
|
|
@result.should.equal @content
|
2016-07-06 07:25:36 -04:00
|
|
|
|
|
|
|
describe "when the primary takes longer than SECONDARY_TIMEOUT", ->
|
|
|
|
beforeEach (done) ->
|
|
|
|
@client.SECONDARY_TIMEOUT = 10
|
|
|
|
@content = "bar"
|
|
|
|
@rclient_ioredis.get = sinon.stub()
|
|
|
|
@rclient_ioredis.get.withArgs("doclines:{#{@doc_id}}").yields(null, @content)
|
|
|
|
@rclient_redis.get = (key, cb) =>
|
|
|
|
key.should.equal "doclines:#{@doc_id}"
|
|
|
|
setTimeout () =>
|
|
|
|
cb(null, @content)
|
|
|
|
, @client.SECONDARY_TIMEOUT * 2
|
|
|
|
@client.get RedisKeyBuilder.docLines({doc_id: @doc_id}), (error, @result) =>
|
|
|
|
done(error)
|
|
|
|
|
|
|
|
it "should not consider this an error", ->
|
|
|
|
@logger.error
|
|
|
|
.called
|
|
|
|
.should.equal false
|
2016-06-08 07:18:37 -04:00
|
|
|
|
|
|
|
describe "multi commands", ->
|
|
|
|
beforeEach ->
|
|
|
|
# We will test with:
|
|
|
|
# rclient.multi()
|
|
|
|
# .get("doclines:foo")
|
|
|
|
# .get("DocVersion:foo")
|
|
|
|
# .exec (...) ->
|
|
|
|
@doclines = "mock-doclines"
|
|
|
|
@version = "42"
|
|
|
|
@rclient_redis.multi = sinon.stub().returns @rclient_redis
|
|
|
|
@rclient_ioredis.multi = sinon.stub().returns @rclient_ioredis
|
|
|
|
|
|
|
|
describe "with the same results", ->
|
|
|
|
beforeEach (done) ->
|
|
|
|
@rclient_redis.get = sinon.stub()
|
|
|
|
@rclient_redis.exec = sinon.stub().yields(null, [@doclines, @version])
|
|
|
|
@rclient_ioredis.get = sinon.stub()
|
|
|
|
@rclient_ioredis.exec = sinon.stub().yields(null, [ [null, @doclines], [null, @version] ])
|
|
|
|
|
|
|
|
multi = @client.multi()
|
|
|
|
multi.get RedisKeyBuilder.docLines({doc_id: @doc_id})
|
|
|
|
multi.get RedisKeyBuilder.docVersion({doc_id: @doc_id})
|
|
|
|
multi.exec (error, @result) =>
|
|
|
|
setTimeout () ->
|
|
|
|
done(error)
|
|
|
|
|
|
|
|
it "should return the result", ->
|
|
|
|
@result.should.deep.equal [@doclines, @version]
|
|
|
|
|
|
|
|
it "should have called the redis client with the appropriate keys", ->
|
|
|
|
@rclient_redis.get
|
|
|
|
.calledWith("doclines:#{@doc_id}")
|
|
|
|
.should.equal true
|
|
|
|
@rclient_redis.get
|
|
|
|
.calledWith("DocVersion:#{@doc_id}")
|
|
|
|
.should.equal true
|
|
|
|
@rclient_ioredis.exec
|
|
|
|
.called
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
it "should have called the ioredis cluster client with the appropriate keys", ->
|
|
|
|
@rclient_ioredis.get
|
|
|
|
.calledWith("doclines:{#{@doc_id}}")
|
|
|
|
.should.equal true
|
|
|
|
@rclient_ioredis.get
|
|
|
|
.calledWith("DocVersion:{#{@doc_id}}")
|
|
|
|
.should.equal true
|
|
|
|
@rclient_ioredis.exec
|
|
|
|
.called
|
|
|
|
.should.equal true
|
2016-06-28 11:49:15 -04:00
|
|
|
|
|
|
|
it "should send a metric", ->
|
|
|
|
@Metrics.inc
|
|
|
|
.calledWith("backend-match")
|
|
|
|
.should.equal true
|
2016-07-04 06:14:23 -04:00
|
|
|
|
|
|
|
it "should time the exec", ->
|
|
|
|
@timer
|
|
|
|
.calledWith("redis.ioredis.exec")
|
|
|
|
.should.equal true
|
|
|
|
@timer
|
|
|
|
.calledWith("redis.noderedis.exec")
|
|
|
|
.should.equal true
|
2016-06-08 07:18:37 -04:00
|
|
|
|
|
|
|
describe "with different results", ->
|
|
|
|
beforeEach (done) ->
|
|
|
|
@rclient_redis.get = sinon.stub()
|
|
|
|
@rclient_redis.exec = sinon.stub().yields(null, [@doclines, @version])
|
|
|
|
@rclient_ioredis.get = sinon.stub()
|
|
|
|
@rclient_ioredis.exec = sinon.stub().yields(null, [ [null, "different-doc-lines"], [null, @version] ])
|
|
|
|
|
|
|
|
multi = @client.multi()
|
|
|
|
multi.get RedisKeyBuilder.docLines({doc_id: @doc_id})
|
|
|
|
multi.get RedisKeyBuilder.docVersion({doc_id: @doc_id})
|
|
|
|
multi.exec (error, @result) =>
|
|
|
|
setTimeout () ->
|
|
|
|
done(error)
|
|
|
|
|
|
|
|
it "should return the primary result", ->
|
|
|
|
@result.should.deep.equal [@doclines, @version]
|
|
|
|
|
2016-06-28 11:49:15 -04:00
|
|
|
it "should send a metric", ->
|
|
|
|
@Metrics.inc
|
|
|
|
.calledWith("backend-conflict")
|
2016-06-08 07:18:37 -04:00
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
describe "when the secondary errors", ->
|
|
|
|
beforeEach (done) ->
|
|
|
|
@rclient_redis.get = sinon.stub()
|
|
|
|
@rclient_redis.exec = sinon.stub().yields(null, [@doclines, @version])
|
|
|
|
@rclient_ioredis.get = sinon.stub()
|
|
|
|
@rclient_ioredis.exec = sinon.stub().yields(@error = new Error("oops"))
|
|
|
|
|
|
|
|
multi = @client.multi()
|
|
|
|
multi.get RedisKeyBuilder.docLines({doc_id: @doc_id})
|
|
|
|
multi.get RedisKeyBuilder.docVersion({doc_id: @doc_id})
|
|
|
|
multi.exec (error, @result) =>
|
|
|
|
setTimeout () ->
|
|
|
|
done(error)
|
|
|
|
|
|
|
|
it "should return the primary result", ->
|
|
|
|
@result.should.deep.equal [@doclines, @version]
|
|
|
|
|
|
|
|
it "should log out the secondary error", ->
|
|
|
|
@logger.error
|
|
|
|
.calledWith({
|
|
|
|
err: @error
|
|
|
|
}, "error in redis backend")
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
describe "when the secondary errors", ->
|
|
|
|
beforeEach (done) ->
|
|
|
|
@rclient_redis.get = sinon.stub()
|
|
|
|
@rclient_redis.exec = sinon.stub().yields(@error = new Error("oops"))
|
|
|
|
@rclient_ioredis.get = sinon.stub()
|
|
|
|
@rclient_ioredis.exec = sinon.stub().yields([ [null, @doclines], [null, @version] ])
|
|
|
|
|
|
|
|
multi = @client.multi()
|
|
|
|
multi.get RedisKeyBuilder.docLines({doc_id: @doc_id})
|
|
|
|
multi.get RedisKeyBuilder.docVersion({doc_id: @doc_id})
|
|
|
|
multi.exec (@returned_error) =>
|
|
|
|
setTimeout () -> done()
|
|
|
|
|
|
|
|
it "should return the error", ->
|
|
|
|
@returned_error.should.equal @error
|
|
|
|
|
|
|
|
it "should log out the error", ->
|
|
|
|
@logger.error
|
|
|
|
.calledWith({
|
|
|
|
err: @error
|
|
|
|
}, "error in redis backend")
|
|
|
|
.should.equal true
|
2016-07-06 07:25:36 -04:00
|
|
|
|
|
|
|
describe "when the secondary takes longer than SECONDARY_TIMEOUT", ->
|
|
|
|
beforeEach (done) ->
|
|
|
|
@rclient_redis.get = sinon.stub()
|
2016-07-07 04:45:55 -04:00
|
|
|
@rclient_redis.exec = (cb) =>
|
|
|
|
setTimeout () =>
|
|
|
|
cb(null, [@doclines, @version])
|
|
|
|
, 30 # If secondary errors first, don't affect the primary result
|
2016-07-06 07:25:36 -04:00
|
|
|
@rclient_ioredis.get = sinon.stub()
|
|
|
|
@rclient_ioredis.exec = (cb) =>
|
|
|
|
setTimeout () =>
|
|
|
|
cb(null, [ [null, @doclines], [null, @version] ])
|
|
|
|
, 20
|
|
|
|
|
|
|
|
multi = @client.multi()
|
|
|
|
multi.SECONDARY_TIMEOUT = 10
|
|
|
|
multi.get RedisKeyBuilder.docLines({doc_id: @doc_id})
|
|
|
|
multi.get RedisKeyBuilder.docVersion({doc_id: @doc_id})
|
|
|
|
multi.exec (error, @result) =>
|
|
|
|
done(error)
|
|
|
|
|
|
|
|
it "should log out an error for the backend", ->
|
|
|
|
@logger.error
|
2016-07-07 04:45:55 -04:00
|
|
|
.calledWith({err: new Error("backend timed out")}, "backend timed out")
|
2016-07-06 07:25:36 -04:00
|
|
|
.should.equal true
|
2016-07-07 04:45:55 -04:00
|
|
|
|
|
|
|
it "should return the primary result", ->
|
|
|
|
@result.should.deep.equal [@doclines, @version]
|
2016-07-06 07:25:36 -04:00
|
|
|
|
|
|
|
describe "when the primary takes longer than SECONDARY_TIMEOUT", ->
|
|
|
|
beforeEach (done) ->
|
|
|
|
@rclient_redis.get = sinon.stub()
|
|
|
|
@rclient_redis.exec = (cb) =>
|
|
|
|
setTimeout () =>
|
|
|
|
cb(null, [@doclines, @version])
|
|
|
|
, 20
|
|
|
|
@rclient_ioredis.get = sinon.stub()
|
|
|
|
@rclient_ioredis.exec = sinon.stub().yields(null, [ [null, @doclines], [null, @version] ])
|
|
|
|
|
|
|
|
multi = @client.multi()
|
|
|
|
multi.SECONDARY_TIMEOUT = 10
|
|
|
|
multi.get RedisKeyBuilder.docLines({doc_id: @doc_id})
|
|
|
|
multi.get RedisKeyBuilder.docVersion({doc_id: @doc_id})
|
|
|
|
multi.exec (error, @result) =>
|
|
|
|
done(error)
|
|
|
|
|
|
|
|
it "should not consider this an error", ->
|
|
|
|
@logger.error
|
|
|
|
.called
|
|
|
|
.should.equal false
|
2016-06-23 10:38:51 -04:00
|
|
|
|
2016-06-23 13:00:03 -04:00
|
|
|
describe "_healthCheckNodeRedisClient", ->
|
|
|
|
beforeEach ->
|
|
|
|
@redis.activeHealthCheckRedis = sinon.stub().returns @healthCheck = {
|
|
|
|
isAlive: sinon.stub()
|
|
|
|
}
|
|
|
|
|
|
|
|
describe "successfully", ->
|
|
|
|
beforeEach (done) ->
|
|
|
|
@healthCheck.isAlive.returns true
|
|
|
|
@redis_client = {}
|
|
|
|
@client._healthCheckNodeRedisClient(@redis_client, done)
|
|
|
|
|
|
|
|
it "should check the status of the node redis client", ->
|
|
|
|
@healthCheck.isAlive.called.should.equal true
|
|
|
|
|
|
|
|
it "should only create one health check when called multiple times", (done) ->
|
|
|
|
@client._healthCheckNodeRedisClient @redis_client, () =>
|
|
|
|
@redis.activeHealthCheckRedis.calledOnce.should.equal true
|
|
|
|
@healthCheck.isAlive.calledTwice.should.equal true
|
|
|
|
done()
|
|
|
|
|
|
|
|
describe "when failing", ->
|
|
|
|
beforeEach ->
|
|
|
|
@healthCheck.isAlive.returns false
|
|
|
|
@redis_client = {}
|
|
|
|
|
|
|
|
it "should return an error", (done) ->
|
|
|
|
@client._healthCheckNodeRedisClient @redis_client, (error) ->
|
|
|
|
error.message.should.equal "node-redis client failed health check"
|
|
|
|
done()
|
|
|
|
|
|
|
|
describe "_healthCheckClusterClient", ->
|
2016-06-23 10:38:51 -04:00
|
|
|
beforeEach ->
|
|
|
|
@client.HEARTBEAT_TIMEOUT = 10
|
|
|
|
@nodes = [{
|
|
|
|
options: key: "node-0"
|
|
|
|
stream: destroy: sinon.stub()
|
|
|
|
}, {
|
|
|
|
options: key: "node-1"
|
|
|
|
stream: destroy: sinon.stub()
|
|
|
|
}]
|
|
|
|
@rclient_ioredis.nodes = sinon.stub().returns(@nodes)
|
2016-06-23 13:00:03 -04:00
|
|
|
|
|
|
|
describe "when both clients are successful", ->
|
|
|
|
beforeEach (done) ->
|
|
|
|
@nodes[0].ping = sinon.stub().yields()
|
|
|
|
@nodes[1].ping = sinon.stub().yields()
|
|
|
|
@client._healthCheckClusterClient({ rclient: @rclient_ioredis }, done)
|
2016-06-23 10:38:51 -04:00
|
|
|
|
2016-06-23 13:00:03 -04:00
|
|
|
it "should get all cluster nodes", ->
|
|
|
|
@rclient_ioredis.nodes
|
|
|
|
.calledWith("all")
|
|
|
|
.should.equal true
|
2016-06-23 10:38:51 -04:00
|
|
|
|
2016-06-23 13:00:03 -04:00
|
|
|
it "should ping each cluster node", ->
|
|
|
|
for node in @nodes
|
|
|
|
node.ping.called.should.equal true
|
2016-06-23 10:38:51 -04:00
|
|
|
|
|
|
|
describe "when ping fails to a node", ->
|
|
|
|
beforeEach ->
|
|
|
|
@nodes[0].ping = (cb) -> cb()
|
|
|
|
@nodes[1].ping = (cb) -> # Just hang
|
|
|
|
|
2016-06-23 13:04:26 -04:00
|
|
|
it "should return an error", (done) ->
|
2016-06-23 13:00:03 -04:00
|
|
|
@client._healthCheckClusterClient { rclient: @rclient_ioredis }, (error) ->
|
|
|
|
error.message.should.equal "ioredis node ping check timed out"
|
2016-06-23 10:38:51 -04:00
|
|
|
done()
|