2014-02-12 05:40:42 -05:00
|
|
|
sinon = require('sinon')
|
|
|
|
chai = require('chai')
|
|
|
|
should = chai.should()
|
|
|
|
modulePath = "../../../../app/js/LockManager.js"
|
|
|
|
SandboxedModule = require('sandboxed-module')
|
|
|
|
|
|
|
|
describe 'LockManager - trying the lock', ->
|
|
|
|
beforeEach ->
|
|
|
|
@LockManager = SandboxedModule.require modulePath, requires:
|
|
|
|
"logger-sharelatex": log:->
|
2014-10-07 07:08:36 -04:00
|
|
|
"redis-sharelatex":
|
2014-02-12 05:40:42 -05:00
|
|
|
createClient : () =>
|
|
|
|
auth:->
|
|
|
|
set: @set = sinon.stub()
|
|
|
|
@callback = sinon.stub()
|
|
|
|
@doc_id = "doc-id-123"
|
|
|
|
|
|
|
|
describe "when the lock is not set", ->
|
|
|
|
beforeEach ->
|
|
|
|
@set.callsArgWith(5, null, "OK")
|
|
|
|
@LockManager.tryLock @doc_id, @callback
|
|
|
|
|
|
|
|
it "should set the lock key with an expiry if it is not set", ->
|
2014-05-07 04:48:29 -04:00
|
|
|
@set.calledWith("Blocking:#{@doc_id}", "locked", "EX", 30, "NX")
|
2014-02-12 05:40:42 -05:00
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
it "should return the callback with true", ->
|
|
|
|
@callback.calledWith(null, true).should.equal true
|
|
|
|
|
|
|
|
describe "when the lock is already set", ->
|
|
|
|
beforeEach ->
|
|
|
|
@set.callsArgWith(5, null, null)
|
|
|
|
@LockManager.tryLock @doc_id, @callback
|
|
|
|
|
|
|
|
it "should return the callback with false", ->
|
|
|
|
@callback.calledWith(null, false).should.equal true
|
|
|
|
|