overleaf/services/document-updater/test/unit/coffee/ProjectManager/updateProjectTests.coffee

166 lines
5.8 KiB
CoffeeScript
Raw Normal View History

2017-11-01 15:16:49 -04:00
sinon = require('sinon')
chai = require('chai')
should = chai.should()
modulePath = "../../../../app/js/ProjectManager.js"
SandboxedModule = require('sandboxed-module')
describe "ProjectManager", ->
beforeEach ->
@ProjectManager = SandboxedModule.require modulePath, requires:
"./RedisManager": @RedisManager = {}
2018-03-09 09:14:14 -05:00
"./ProjectHistoryRedisManager": @ProjectHistoryRedisManager = {}
2017-11-01 15:16:49 -04:00
"./DocumentManager": @DocumentManager = {}
"logger-sharelatex": @logger = { log: sinon.stub(), error: sinon.stub() }
2018-02-15 10:55:12 -05:00
"./HistoryManager": @HistoryManager = {}
2017-11-01 15:16:49 -04:00
"./Metrics": @Metrics =
Timer: class Timer
done: sinon.stub()
@project_id = "project-id-123"
@user_id = "user-id-123"
2018-02-15 10:55:12 -05:00
@HistoryManager.shouldFlushHistoryOps = sinon.stub().returns(false)
@HistoryManager.flushProjectChangesAsync = sinon.stub()
2017-11-01 15:16:49 -04:00
@callback = sinon.stub()
describe "updateProjectWithLocks", ->
2017-11-10 09:54:56 -05:00
describe "rename operations", ->
2017-11-01 15:16:49 -04:00
beforeEach ->
2018-02-15 10:55:12 -05:00
2017-11-10 09:54:56 -05:00
@firstDocUpdate =
id: 1
pathname: 'foo'
newPathname: 'foo'
@secondDocUpdate =
id: 2
pathname: 'bar'
newPathname: 'bar2'
@docUpdates = [ @firstDocUpdate, @secondDocUpdate ]
@firstFileUpdate =
id: 2
pathname: 'bar'
newPathname: 'bar2'
@fileUpdates = [ @firstFileUpdate ]
@DocumentManager.renameDocWithLock = sinon.stub().yields()
2018-03-09 09:14:14 -05:00
@ProjectHistoryRedisManager.queueRenameEntity = sinon.stub().yields()
2017-11-01 15:16:49 -04:00
2017-11-10 09:54:56 -05:00
describe "successfully", ->
beforeEach ->
@ProjectManager.updateProjectWithLocks @project_id, @user_id, @docUpdates, @fileUpdates, @callback
2017-11-06 11:14:27 -05:00
2017-11-10 09:54:56 -05:00
it "should rename the docs in the updates", ->
@DocumentManager.renameDocWithLock
.calledWith(@project_id, @firstDocUpdate.id, @user_id, @firstDocUpdate)
.should.equal true
@DocumentManager.renameDocWithLock
.calledWith(@project_id, @secondDocUpdate.id, @user_id, @secondDocUpdate)
.should.equal true
2017-11-01 15:16:49 -04:00
2017-11-10 09:54:56 -05:00
it "should rename the files in the updates", ->
2018-03-09 09:14:14 -05:00
@ProjectHistoryRedisManager.queueRenameEntity
.calledWith(@project_id, 'file', @firstFileUpdate.id, @user_id, @firstFileUpdate)
2017-11-10 09:54:56 -05:00
.should.equal true
2017-11-01 15:16:49 -04:00
2018-02-15 10:55:12 -05:00
it "should not flush the history", ->
@HistoryManager.flushProjectChangesAsync
.calledWith(@project_id)
.should.equal false
2017-11-10 09:54:56 -05:00
it "should call the callback", ->
@callback.called.should.equal true
describe "when renaming a doc fails", ->
beforeEach ->
@error = new Error('error')
@DocumentManager.renameDocWithLock = sinon.stub().yields(@error)
@ProjectManager.updateProjectWithLocks @project_id, @user_id, @docUpdates, @fileUpdates, @callback
it "should call the callback with the error", ->
@callback.calledWith(@error).should.equal true
2017-11-06 11:14:27 -05:00
2017-11-10 09:54:56 -05:00
describe "when renaming a file fails", ->
beforeEach ->
@error = new Error('error')
2018-03-09 09:14:14 -05:00
@ProjectHistoryRedisManager.queueRenameEntity = sinon.stub().yields(@error)
2017-11-10 09:54:56 -05:00
@ProjectManager.updateProjectWithLocks @project_id, @user_id, @docUpdates, @fileUpdates, @callback
2017-11-06 11:14:27 -05:00
2017-11-10 09:54:56 -05:00
it "should call the callback with the error", ->
@callback.calledWith(@error).should.equal true
2018-02-15 10:55:12 -05:00
describe "with enough ops to flush", ->
beforeEach ->
@HistoryManager.shouldFlushHistoryOps = sinon.stub().returns(true)
@ProjectManager.updateProjectWithLocks @project_id, @user_id, @docUpdates, @fileUpdates, @callback
it "should flush the history", ->
@HistoryManager.flushProjectChangesAsync
.calledWith(@project_id)
.should.equal true
2017-11-10 09:54:56 -05:00
describe "add operations", ->
2017-11-06 11:14:27 -05:00
beforeEach ->
2017-11-10 09:54:56 -05:00
@firstDocUpdate =
id: 1
docLines: "a\nb"
@secondDocUpdate =
id: 2
docLines: "a\nb"
@docUpdates = [ @firstDocUpdate, @secondDocUpdate ]
@firstFileUpdate =
id: 2
url: 'filestore.example.com/2'
@fileUpdates = [ @firstFileUpdate ]
2018-03-09 09:14:14 -05:00
@ProjectHistoryRedisManager.queueAddEntity = sinon.stub().yields()
2017-11-10 09:54:56 -05:00
describe "successfully", ->
beforeEach ->
@ProjectManager.updateProjectWithLocks @project_id, @user_id, @docUpdates, @fileUpdates, @callback
it "should add the docs in the updates", ->
2018-03-09 09:14:14 -05:00
@ProjectHistoryRedisManager.queueAddEntity
2017-11-10 09:54:56 -05:00
.calledWith(@project_id, 'doc', @firstDocUpdate.id, @user_id, @firstDocUpdate)
.should.equal true
2018-03-09 09:14:14 -05:00
@ProjectHistoryRedisManager.queueAddEntity
2017-11-10 09:54:56 -05:00
.calledWith(@project_id, 'doc', @secondDocUpdate.id, @user_id, @secondDocUpdate)
.should.equal true
it "should add the files in the updates", ->
2018-03-09 09:14:14 -05:00
@ProjectHistoryRedisManager.queueAddEntity
2017-11-10 09:54:56 -05:00
.calledWith(@project_id, 'file', @firstFileUpdate.id, @user_id, @firstFileUpdate)
.should.equal true
2018-02-15 10:55:12 -05:00
it "should not flush the history", ->
@HistoryManager.flushProjectChangesAsync
.calledWith(@project_id)
.should.equal false
2017-11-10 09:54:56 -05:00
it "should call the callback", ->
@callback.called.should.equal true
describe "when adding a doc fails", ->
beforeEach ->
@error = new Error('error')
2018-03-09 09:14:14 -05:00
@ProjectHistoryRedisManager.queueAddEntity = sinon.stub().yields(@error)
2017-11-10 09:54:56 -05:00
@ProjectManager.updateProjectWithLocks @project_id, @user_id, @docUpdates, @fileUpdates, @callback
it "should call the callback with the error", ->
@callback.calledWith(@error).should.equal true
describe "when adding a file fails", ->
beforeEach ->
@error = new Error('error')
2018-03-09 09:14:14 -05:00
@ProjectHistoryRedisManager.queueAddEntity = sinon.stub().yields(@error)
2017-11-10 09:54:56 -05:00
@ProjectManager.updateProjectWithLocks @project_id, @user_id, @docUpdates, @fileUpdates, @callback
it "should call the callback with the error", ->
@callback.calledWith(@error).should.equal true
2017-11-01 15:16:49 -04:00
2018-02-15 10:55:12 -05:00
describe "with enough ops to flush", ->
beforeEach ->
@HistoryManager.shouldFlushHistoryOps = sinon.stub().returns(true)
@ProjectManager.updateProjectWithLocks @project_id, @user_id, @docUpdates, @fileUpdates, @callback
it "should flush the history", ->
@HistoryManager.flushProjectChangesAsync
.calledWith(@project_id)
.should.equal true