mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
30 lines
875 B
CoffeeScript
30 lines
875 B
CoffeeScript
require('coffee-script')
|
|
sinon = require('sinon')
|
|
assert = require('assert')
|
|
path = require('path')
|
|
modulePath = path.join __dirname, '../../../../app/js/LockManager.js'
|
|
keys = require(path.join __dirname, '../../../../app/js/RedisKeyBuilder.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()
|
|
|