overleaf/services/document-updater/test/unit/coffee/LockManager/ReleasingTheLock.coffee
2016-07-06 11:50:02 +01:00

28 lines
797 B
CoffeeScript

require('coffee-script')
sinon = require('sinon')
assert = require('assert')
path = require('path')
modulePath = path.join __dirname, '../../../../app/js/LockManager.js'
project_id = 1234
doc_id = 5678
SandboxedModule = require('sandboxed-module')
describe 'LockManager - releasing the lock', ()->
evalStub = sinon.stub().yields(1)
mocks =
"logger-sharelatex": log:->
"redis-sharelatex":
createClient : ()->
auth:->
eval: evalStub
"./Metrics": {inc: () ->}
LockManager = SandboxedModule.require(modulePath, requires: mocks)
it 'should put a all data into memory', (done)->
lockValue = "lock-value-stub"
LockManager.releaseLock doc_id, lockValue, ->
evalStub.calledWith(LockManager.unlockScript, 1, "Blocking:#{doc_id}", lockValue).should.equal true
done()