mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
4d70bd664f
These changes were previously merged, not deployed, and reverted. This reverts the revert. This reverts commit a6b8c6c658b33b6eee78b8b99e43308f32211ae2, reversing changes made to 93c98921372eed4244d22fce800716cb27eca299.
65 lines
1.8 KiB
JavaScript
65 lines
1.8 KiB
JavaScript
/* eslint-disable
|
|
camelcase,
|
|
handle-callback-err,
|
|
no-unused-vars,
|
|
*/
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
// Fix any style issues and re-enable lint.
|
|
/*
|
|
* decaffeinate suggestions:
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
* DS206: Consider reworking classes to avoid initClass
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
*/
|
|
const sinon = require('sinon')
|
|
const assert = require('assert')
|
|
const path = require('path')
|
|
const modulePath = path.join(__dirname, '../../../../app/js/LockManager.js')
|
|
const project_id = 1234
|
|
const doc_id = 5678
|
|
const blockingKey = `Blocking:${doc_id}`
|
|
const SandboxedModule = require('sandboxed-module')
|
|
|
|
describe('LockManager - checking the lock', function () {
|
|
let Profiler
|
|
const existsStub = sinon.stub()
|
|
|
|
const mocks = {
|
|
'@overleaf/redis-wrapper': {
|
|
createClient() {
|
|
return {
|
|
auth() {},
|
|
exists: existsStub
|
|
}
|
|
}
|
|
},
|
|
'./Metrics': { inc() {} },
|
|
'./Profiler': (Profiler = (function () {
|
|
Profiler = class Profiler {
|
|
static initClass() {
|
|
this.prototype.log = sinon.stub().returns({ end: sinon.stub() })
|
|
this.prototype.end = sinon.stub()
|
|
}
|
|
}
|
|
Profiler.initClass()
|
|
return Profiler
|
|
})())
|
|
}
|
|
const LockManager = SandboxedModule.require(modulePath, { requires: mocks })
|
|
|
|
it('should return true if the key does not exists', function (done) {
|
|
existsStub.yields(null, '0')
|
|
return LockManager.checkLock(doc_id, (err, free) => {
|
|
free.should.equal(true)
|
|
return done()
|
|
})
|
|
})
|
|
|
|
return it('should return false if the key does exists', function (done) {
|
|
existsStub.yields(null, '1')
|
|
return LockManager.checkLock(doc_id, (err, free) => {
|
|
free.should.equal(false)
|
|
return done()
|
|
})
|
|
})
|
|
})
|