2020-05-06 06:11:22 -04:00
|
|
|
/* eslint-disable
|
|
|
|
camelcase,
|
|
|
|
no-return-assign,
|
|
|
|
no-unused-vars,
|
|
|
|
*/
|
|
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
|
|
// Fix any style issues and re-enable lint.
|
2020-05-06 06:10:51 -04:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
require('coffee-script');
|
|
|
|
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 SandboxedModule = require('sandboxed-module');
|
2014-02-12 05:40:42 -05:00
|
|
|
|
2020-05-06 06:10:51 -04:00
|
|
|
describe('LockManager - releasing the lock', function(){
|
|
|
|
beforeEach(function() {
|
|
|
|
let Profiler;
|
|
|
|
this.client = {
|
|
|
|
auth() {},
|
2017-03-30 10:31:34 -04:00
|
|
|
eval: sinon.stub()
|
2020-05-06 06:10:51 -04:00
|
|
|
};
|
|
|
|
const mocks = {
|
|
|
|
"logger-sharelatex": {
|
|
|
|
log() {},
|
|
|
|
error() {}
|
|
|
|
},
|
|
|
|
"redis-sharelatex": {
|
|
|
|
createClient : () => this.client
|
|
|
|
},
|
2017-05-08 11:02:40 -04:00
|
|
|
"settings-sharelatex": {
|
2020-05-06 06:10:51 -04:00
|
|
|
redis: {
|
|
|
|
lock: {
|
|
|
|
key_schema: {
|
|
|
|
blockingKey({doc_id}) { return `Blocking:${doc_id}`; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"./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;
|
|
|
|
})())
|
|
|
|
};
|
|
|
|
this.LockManager = SandboxedModule.require(modulePath, {requires: mocks});
|
|
|
|
this.lockValue = "lock-value-stub";
|
|
|
|
return this.callback = sinon.stub();
|
|
|
|
});
|
2014-02-12 05:40:42 -05:00
|
|
|
|
2020-05-06 06:10:51 -04:00
|
|
|
describe("when the lock is current", function() {
|
|
|
|
beforeEach(function() {
|
|
|
|
this.client.eval = sinon.stub().yields(null, 1);
|
|
|
|
return this.LockManager.releaseLock(doc_id, this.lockValue, this.callback);
|
|
|
|
});
|
2014-02-12 05:40:42 -05:00
|
|
|
|
2020-05-06 06:10:51 -04:00
|
|
|
it('should clear the data from redis', function() {
|
|
|
|
return this.client.eval.calledWith(this.LockManager.unlockScript, 1, `Blocking:${doc_id}`, this.lockValue).should.equal(true);
|
|
|
|
});
|
2014-02-12 05:40:42 -05:00
|
|
|
|
2020-05-06 06:10:51 -04:00
|
|
|
return it('should call the callback', function() {
|
|
|
|
return this.callback.called.should.equal(true);
|
|
|
|
});
|
|
|
|
});
|
2017-03-30 10:31:34 -04:00
|
|
|
|
2020-05-06 06:10:51 -04:00
|
|
|
return describe("when the lock has expired", function() {
|
|
|
|
beforeEach(function() {
|
|
|
|
this.client.eval = sinon.stub().yields(null, 0);
|
|
|
|
return this.LockManager.releaseLock(doc_id, this.lockValue, this.callback);
|
|
|
|
});
|
2017-03-30 10:31:34 -04:00
|
|
|
|
2020-05-06 06:10:51 -04:00
|
|
|
return it('should return an error if the lock has expired', function() {
|
|
|
|
return this.callback.calledWith(new Error("tried to release timed out lock")).should.equal(true);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|