overleaf/services/clsi/test/unit/js/LockManagerTests.js

89 lines
2.6 KiB
JavaScript
Raw Normal View History

/* eslint-disable
no-return-assign,
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
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
*/
const SandboxedModule = require('sandboxed-module')
const sinon = require('sinon')
const modulePath = require('path').join(
__dirname,
'../../../app/js/LockManager'
)
const Path = require('path')
const Errors = require('../../../app/js/Errors')
2020-08-10 12:01:11 -04:00
describe('DockerLockManager', function () {
beforeEach(function () {
this.LockManager = SandboxedModule.require(modulePath, {
requires: {
'@overleaf/settings': {},
fs: {
lstat: sinon.stub().callsArgWith(1),
2021-07-13 07:04:48 -04:00
readdir: sinon.stub().callsArgWith(1),
},
2021-07-13 07:04:48 -04:00
lockfile: (this.Lockfile = {}),
},
})
return (this.lockFile = '/local/compile/directory/.project-lock')
})
2020-08-10 12:01:11 -04:00
return describe('runWithLock', function () {
beforeEach(function () {
this.runner = sinon.stub().callsArgWith(0, null, 'foo', 'bar')
return (this.callback = sinon.stub())
})
2020-08-10 12:01:11 -04:00
describe('normally', function () {
beforeEach(function () {
this.Lockfile.lock = sinon.stub().callsArgWith(2, null)
this.Lockfile.unlock = sinon.stub().callsArgWith(1, null)
return this.LockManager.runWithLock(
this.lockFile,
this.runner,
this.callback
)
})
2020-08-10 12:01:11 -04:00
it('should run the compile', function () {
return this.runner.calledWith().should.equal(true)
})
2017-09-22 11:19:33 -04:00
2020-08-10 12:01:11 -04:00
return it('should call the callback with the response from the compile', function () {
return this.callback
.calledWithExactly(null, 'foo', 'bar')
.should.equal(true)
})
})
2020-08-10 12:01:11 -04:00
return describe('when the project is locked', function () {
beforeEach(function () {
this.error = new Error()
this.error.code = 'EEXIST'
this.Lockfile.lock = sinon.stub().callsArgWith(2, this.error)
this.Lockfile.unlock = sinon.stub().callsArgWith(1, null)
return this.LockManager.runWithLock(
this.lockFile,
this.runner,
this.callback
)
})
2020-08-10 12:01:11 -04:00
it('should not run the compile', function () {
return this.runner.called.should.equal(false)
})
2017-09-22 11:19:33 -04:00
2020-08-10 12:01:11 -04:00
it('should return an error', function () {
2020-03-12 05:35:11 -04:00
this.callback
.calledWithExactly(sinon.match(Errors.AlreadyCompilingError))
.should.equal(true)
})
})
})
})