2020-05-06 06:11:36 -04:00
|
|
|
const sinon = require('sinon')
|
|
|
|
const modulePath = '../../../../app/js/HttpController.js'
|
|
|
|
const SandboxedModule = require('sandboxed-module')
|
|
|
|
const Errors = require('../../../../app/js/Errors.js')
|
|
|
|
|
|
|
|
describe('HttpController', function () {
|
|
|
|
beforeEach(function () {
|
|
|
|
this.HttpController = SandboxedModule.require(modulePath, {
|
|
|
|
requires: {
|
|
|
|
'./DocumentManager': (this.DocumentManager = {}),
|
|
|
|
'./HistoryManager': (this.HistoryManager = {
|
2021-07-13 07:04:42 -04:00
|
|
|
flushProjectChangesAsync: sinon.stub(),
|
2020-05-06 06:11:36 -04:00
|
|
|
}),
|
|
|
|
'./ProjectManager': (this.ProjectManager = {}),
|
|
|
|
'./ProjectFlusher': { flushAllProjects() {} },
|
|
|
|
'./DeleteQueueManager': (this.DeleteQueueManager = {}),
|
2021-07-30 11:13:48 -04:00
|
|
|
'./RedisManager': (this.RedisManager = {}),
|
2020-05-06 06:11:36 -04:00
|
|
|
'./Metrics': (this.Metrics = {}),
|
2021-07-13 07:04:42 -04:00
|
|
|
'./Errors': Errors,
|
|
|
|
},
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
2020-05-11 11:24:07 -04:00
|
|
|
this.Metrics.Timer = class Timer {}
|
2020-05-11 11:26:05 -04:00
|
|
|
this.Metrics.Timer.prototype.done = sinon.stub()
|
2020-05-11 11:24:07 -04:00
|
|
|
|
2020-05-06 06:11:36 -04:00
|
|
|
this.project_id = 'project-id-123'
|
|
|
|
this.doc_id = 'doc-id-123'
|
|
|
|
this.next = sinon.stub()
|
2020-05-11 11:20:55 -04:00
|
|
|
this.res = {
|
2020-05-06 06:11:36 -04:00
|
|
|
send: sinon.stub(),
|
|
|
|
sendStatus: sinon.stub(),
|
2021-07-13 07:04:42 -04:00
|
|
|
json: sinon.stub(),
|
2020-05-11 11:20:55 -04:00
|
|
|
}
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('getDoc', function () {
|
|
|
|
beforeEach(function () {
|
|
|
|
this.lines = ['one', 'two', 'three']
|
|
|
|
this.ops = ['mock-op-1', 'mock-op-2']
|
|
|
|
this.version = 42
|
|
|
|
this.fromVersion = 42
|
|
|
|
this.ranges = { changes: 'mock', comments: 'mock' }
|
|
|
|
this.pathname = '/a/b/c'
|
2020-05-11 11:20:55 -04:00
|
|
|
this.req = {
|
2020-05-06 06:11:36 -04:00
|
|
|
params: {
|
|
|
|
project_id: this.project_id,
|
2021-07-13 07:04:42 -04:00
|
|
|
doc_id: this.doc_id,
|
2020-05-11 11:37:59 -04:00
|
|
|
},
|
|
|
|
query: {},
|
2021-07-13 07:04:42 -04:00
|
|
|
body: {},
|
2020-05-11 11:20:55 -04:00
|
|
|
}
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('when the document exists and no recent ops are requested', function () {
|
|
|
|
beforeEach(function () {
|
|
|
|
this.DocumentManager.getDocAndRecentOpsWithLock = sinon
|
|
|
|
.stub()
|
|
|
|
.callsArgWith(
|
|
|
|
3,
|
|
|
|
null,
|
|
|
|
this.lines,
|
|
|
|
this.version,
|
|
|
|
[],
|
|
|
|
this.ranges,
|
|
|
|
this.pathname
|
|
|
|
)
|
2020-05-11 11:20:55 -04:00
|
|
|
this.HttpController.getDoc(this.req, this.res, this.next)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('should get the doc', function () {
|
2020-05-11 11:20:55 -04:00
|
|
|
this.DocumentManager.getDocAndRecentOpsWithLock
|
2020-05-06 06:11:36 -04:00
|
|
|
.calledWith(this.project_id, this.doc_id, -1)
|
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should return the doc as JSON', function () {
|
2020-05-11 11:20:55 -04:00
|
|
|
this.res.json
|
2020-05-06 06:11:36 -04:00
|
|
|
.calledWith({
|
|
|
|
id: this.doc_id,
|
|
|
|
lines: this.lines,
|
|
|
|
version: this.version,
|
|
|
|
ops: [],
|
|
|
|
ranges: this.ranges,
|
2021-07-13 07:04:42 -04:00
|
|
|
pathname: this.pathname,
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should log the request', function () {
|
2021-09-30 04:28:32 -04:00
|
|
|
this.logger.debug
|
2020-05-06 06:11:36 -04:00
|
|
|
.calledWith(
|
2020-05-11 11:37:59 -04:00
|
|
|
{ docId: this.doc_id, projectId: this.project_id },
|
2020-05-06 06:11:36 -04:00
|
|
|
'getting doc via http'
|
|
|
|
)
|
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
it('should time the request', function () {
|
|
|
|
this.Metrics.Timer.prototype.done.called.should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('when recent ops are requested', function () {
|
|
|
|
beforeEach(function () {
|
|
|
|
this.DocumentManager.getDocAndRecentOpsWithLock = sinon
|
|
|
|
.stub()
|
|
|
|
.callsArgWith(
|
|
|
|
3,
|
|
|
|
null,
|
|
|
|
this.lines,
|
|
|
|
this.version,
|
|
|
|
this.ops,
|
|
|
|
this.ranges,
|
|
|
|
this.pathname
|
|
|
|
)
|
|
|
|
this.req.query = { fromVersion: `${this.fromVersion}` }
|
2020-05-11 11:20:55 -04:00
|
|
|
this.HttpController.getDoc(this.req, this.res, this.next)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('should get the doc', function () {
|
2020-05-11 11:20:55 -04:00
|
|
|
this.DocumentManager.getDocAndRecentOpsWithLock
|
2020-05-06 06:11:36 -04:00
|
|
|
.calledWith(this.project_id, this.doc_id, this.fromVersion)
|
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should return the doc as JSON', function () {
|
2020-05-11 11:20:55 -04:00
|
|
|
this.res.json
|
2020-05-06 06:11:36 -04:00
|
|
|
.calledWith({
|
|
|
|
id: this.doc_id,
|
|
|
|
lines: this.lines,
|
|
|
|
version: this.version,
|
|
|
|
ops: this.ops,
|
|
|
|
ranges: this.ranges,
|
2021-07-13 07:04:42 -04:00
|
|
|
pathname: this.pathname,
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should log the request', function () {
|
2021-09-30 04:28:32 -04:00
|
|
|
this.logger.debug
|
2020-05-06 06:11:36 -04:00
|
|
|
.calledWith(
|
2020-05-11 11:37:59 -04:00
|
|
|
{ docId: this.doc_id, projectId: this.project_id },
|
2020-05-06 06:11:36 -04:00
|
|
|
'getting doc via http'
|
|
|
|
)
|
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
it('should time the request', function () {
|
|
|
|
this.Metrics.Timer.prototype.done.called.should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('when the document does not exist', function () {
|
|
|
|
beforeEach(function () {
|
|
|
|
this.DocumentManager.getDocAndRecentOpsWithLock = sinon
|
|
|
|
.stub()
|
|
|
|
.callsArgWith(3, null, null, null)
|
2020-05-11 11:20:55 -04:00
|
|
|
this.HttpController.getDoc(this.req, this.res, this.next)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
it('should call next with NotFoundError', function () {
|
|
|
|
this.next
|
2020-05-15 14:29:49 -04:00
|
|
|
.calledWith(sinon.match.instanceOf(Errors.NotFoundError))
|
2020-05-06 06:11:36 -04:00
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
describe('when an errors occurs', function () {
|
2020-05-06 06:11:36 -04:00
|
|
|
beforeEach(function () {
|
|
|
|
this.DocumentManager.getDocAndRecentOpsWithLock = sinon
|
|
|
|
.stub()
|
|
|
|
.callsArgWith(3, new Error('oops'), null, null)
|
2020-05-11 11:20:55 -04:00
|
|
|
this.HttpController.getDoc(this.req, this.res, this.next)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
it('should call next with the error', function () {
|
2020-05-15 14:29:49 -04:00
|
|
|
this.next.calledWith(sinon.match.instanceOf(Error)).should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('setDoc', function () {
|
|
|
|
beforeEach(function () {
|
|
|
|
this.lines = ['one', 'two', 'three']
|
|
|
|
this.source = 'dropbox'
|
|
|
|
this.user_id = 'user-id-123'
|
2020-05-11 11:20:55 -04:00
|
|
|
this.req = {
|
2020-05-06 06:11:36 -04:00
|
|
|
headers: {},
|
|
|
|
params: {
|
|
|
|
project_id: this.project_id,
|
2021-07-13 07:04:42 -04:00
|
|
|
doc_id: this.doc_id,
|
2020-05-06 06:11:36 -04:00
|
|
|
},
|
2020-05-11 11:37:59 -04:00
|
|
|
query: {},
|
2020-05-06 06:11:36 -04:00
|
|
|
body: {
|
|
|
|
lines: this.lines,
|
|
|
|
source: this.source,
|
|
|
|
user_id: this.user_id,
|
2021-07-13 07:04:42 -04:00
|
|
|
undoing: (this.undoing = true),
|
|
|
|
},
|
2020-05-11 11:20:55 -04:00
|
|
|
}
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('successfully', function () {
|
|
|
|
beforeEach(function () {
|
|
|
|
this.DocumentManager.setDocWithLock = sinon.stub().callsArgWith(6)
|
2020-05-11 11:20:55 -04:00
|
|
|
this.HttpController.setDoc(this.req, this.res, this.next)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('should set the doc', function () {
|
2020-05-11 11:20:55 -04:00
|
|
|
this.DocumentManager.setDocWithLock
|
2020-05-06 06:11:36 -04:00
|
|
|
.calledWith(
|
|
|
|
this.project_id,
|
|
|
|
this.doc_id,
|
|
|
|
this.lines,
|
|
|
|
this.source,
|
|
|
|
this.user_id,
|
|
|
|
this.undoing
|
|
|
|
)
|
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should return a successful No Content response', function () {
|
2020-05-11 11:20:55 -04:00
|
|
|
this.res.sendStatus.calledWith(204).should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('should log the request', function () {
|
2021-09-30 04:28:32 -04:00
|
|
|
this.logger.debug
|
2020-05-06 06:11:36 -04:00
|
|
|
.calledWith(
|
|
|
|
{
|
2020-05-11 11:37:59 -04:00
|
|
|
docId: this.doc_id,
|
|
|
|
projectId: this.project_id,
|
2020-05-06 06:11:36 -04:00
|
|
|
lines: this.lines,
|
|
|
|
source: this.source,
|
2020-05-11 11:37:59 -04:00
|
|
|
userId: this.user_id,
|
2021-07-13 07:04:42 -04:00
|
|
|
undoing: this.undoing,
|
2020-05-06 06:11:36 -04:00
|
|
|
},
|
|
|
|
'setting doc via http'
|
|
|
|
)
|
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
it('should time the request', function () {
|
|
|
|
this.Metrics.Timer.prototype.done.called.should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('when an errors occurs', function () {
|
|
|
|
beforeEach(function () {
|
|
|
|
this.DocumentManager.setDocWithLock = sinon
|
|
|
|
.stub()
|
|
|
|
.callsArgWith(6, new Error('oops'))
|
2020-05-11 11:20:55 -04:00
|
|
|
this.HttpController.setDoc(this.req, this.res, this.next)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
it('should call next with the error', function () {
|
2020-05-15 14:29:49 -04:00
|
|
|
this.next.calledWith(sinon.match.instanceOf(Error)).should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
describe('when the payload is too large', function () {
|
2020-05-06 06:11:36 -04:00
|
|
|
beforeEach(function () {
|
|
|
|
const lines = []
|
|
|
|
for (let _ = 0; _ <= 200000; _++) {
|
|
|
|
lines.push('test test test')
|
|
|
|
}
|
|
|
|
this.req.body.lines = lines
|
|
|
|
this.DocumentManager.setDocWithLock = sinon.stub().callsArgWith(6)
|
2020-05-11 11:20:55 -04:00
|
|
|
this.HttpController.setDoc(this.req, this.res, this.next)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('should send back a 406 response', function () {
|
2020-05-11 11:20:55 -04:00
|
|
|
this.res.sendStatus.calledWith(406).should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
it('should not call setDocWithLock', function () {
|
|
|
|
this.DocumentManager.setDocWithLock.callCount.should.equal(0)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('flushProject', function () {
|
|
|
|
beforeEach(function () {
|
2020-05-11 11:20:55 -04:00
|
|
|
this.req = {
|
2020-05-06 06:11:36 -04:00
|
|
|
params: {
|
2021-07-13 07:04:42 -04:00
|
|
|
project_id: this.project_id,
|
2020-05-11 11:37:59 -04:00
|
|
|
},
|
|
|
|
query: {},
|
2021-07-13 07:04:42 -04:00
|
|
|
body: {},
|
2020-05-11 11:20:55 -04:00
|
|
|
}
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('successfully', function () {
|
|
|
|
beforeEach(function () {
|
|
|
|
this.ProjectManager.flushProjectWithLocks = sinon.stub().callsArgWith(1)
|
2020-05-11 11:20:55 -04:00
|
|
|
this.HttpController.flushProject(this.req, this.res, this.next)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('should flush the project', function () {
|
2020-05-11 11:20:55 -04:00
|
|
|
this.ProjectManager.flushProjectWithLocks
|
2020-05-06 06:11:36 -04:00
|
|
|
.calledWith(this.project_id)
|
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should return a successful No Content response', function () {
|
2020-05-11 11:20:55 -04:00
|
|
|
this.res.sendStatus.calledWith(204).should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('should log the request', function () {
|
2021-09-30 04:28:32 -04:00
|
|
|
this.logger.debug
|
2020-05-06 06:11:36 -04:00
|
|
|
.calledWith(
|
2020-05-11 11:37:59 -04:00
|
|
|
{ projectId: this.project_id },
|
2020-05-06 06:11:36 -04:00
|
|
|
'flushing project via http'
|
|
|
|
)
|
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
it('should time the request', function () {
|
|
|
|
this.Metrics.Timer.prototype.done.called.should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
describe('when an errors occurs', function () {
|
2020-05-06 06:11:36 -04:00
|
|
|
beforeEach(function () {
|
|
|
|
this.ProjectManager.flushProjectWithLocks = sinon
|
|
|
|
.stub()
|
|
|
|
.callsArgWith(1, new Error('oops'))
|
2020-05-11 11:20:55 -04:00
|
|
|
this.HttpController.flushProject(this.req, this.res, this.next)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
it('should call next with the error', function () {
|
2020-05-15 14:29:49 -04:00
|
|
|
this.next.calledWith(sinon.match.instanceOf(Error)).should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('flushDocIfLoaded', function () {
|
|
|
|
beforeEach(function () {
|
|
|
|
this.lines = ['one', 'two', 'three']
|
|
|
|
this.version = 42
|
2020-05-11 11:20:55 -04:00
|
|
|
this.req = {
|
2020-05-06 06:11:36 -04:00
|
|
|
params: {
|
|
|
|
project_id: this.project_id,
|
2021-07-13 07:04:42 -04:00
|
|
|
doc_id: this.doc_id,
|
2020-05-11 11:37:59 -04:00
|
|
|
},
|
|
|
|
query: {},
|
2021-07-13 07:04:42 -04:00
|
|
|
body: {},
|
2020-05-11 11:20:55 -04:00
|
|
|
}
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('successfully', function () {
|
|
|
|
beforeEach(function () {
|
|
|
|
this.DocumentManager.flushDocIfLoadedWithLock = sinon
|
|
|
|
.stub()
|
|
|
|
.callsArgWith(2)
|
2020-05-11 11:20:55 -04:00
|
|
|
this.HttpController.flushDocIfLoaded(this.req, this.res, this.next)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('should flush the doc', function () {
|
2020-05-11 11:20:55 -04:00
|
|
|
this.DocumentManager.flushDocIfLoadedWithLock
|
2020-05-06 06:11:36 -04:00
|
|
|
.calledWith(this.project_id, this.doc_id)
|
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should return a successful No Content response', function () {
|
2020-05-11 11:20:55 -04:00
|
|
|
this.res.sendStatus.calledWith(204).should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('should log the request', function () {
|
2021-09-30 04:28:32 -04:00
|
|
|
this.logger.debug
|
2020-05-06 06:11:36 -04:00
|
|
|
.calledWith(
|
2020-05-11 11:37:59 -04:00
|
|
|
{ docId: this.doc_id, projectId: this.project_id },
|
2020-05-06 06:11:36 -04:00
|
|
|
'flushing doc via http'
|
|
|
|
)
|
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
it('should time the request', function () {
|
|
|
|
this.Metrics.Timer.prototype.done.called.should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
describe('when an errors occurs', function () {
|
2020-05-06 06:11:36 -04:00
|
|
|
beforeEach(function () {
|
|
|
|
this.DocumentManager.flushDocIfLoadedWithLock = sinon
|
|
|
|
.stub()
|
|
|
|
.callsArgWith(2, new Error('oops'))
|
2020-05-11 11:20:55 -04:00
|
|
|
this.HttpController.flushDocIfLoaded(this.req, this.res, this.next)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
it('should call next with the error', function () {
|
2020-05-15 14:29:49 -04:00
|
|
|
this.next.calledWith(sinon.match.instanceOf(Error)).should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('deleteDoc', function () {
|
|
|
|
beforeEach(function () {
|
2020-05-11 11:20:55 -04:00
|
|
|
this.req = {
|
2020-05-06 06:11:36 -04:00
|
|
|
params: {
|
|
|
|
project_id: this.project_id,
|
2021-07-13 07:04:42 -04:00
|
|
|
doc_id: this.doc_id,
|
2020-05-06 06:11:36 -04:00
|
|
|
},
|
2020-05-11 11:37:59 -04:00
|
|
|
query: {},
|
2021-07-13 07:04:42 -04:00
|
|
|
body: {},
|
2020-05-11 11:20:55 -04:00
|
|
|
}
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('successfully', function () {
|
|
|
|
beforeEach(function () {
|
|
|
|
this.DocumentManager.flushAndDeleteDocWithLock = sinon
|
|
|
|
.stub()
|
|
|
|
.callsArgWith(3)
|
2020-05-11 11:20:55 -04:00
|
|
|
this.HttpController.deleteDoc(this.req, this.res, this.next)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('should flush and delete the doc', function () {
|
2020-05-11 11:20:55 -04:00
|
|
|
this.DocumentManager.flushAndDeleteDocWithLock
|
2020-05-06 06:11:36 -04:00
|
|
|
.calledWith(this.project_id, this.doc_id, {
|
2021-07-13 07:04:42 -04:00
|
|
|
ignoreFlushErrors: false,
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should flush project history', function () {
|
2020-05-11 11:20:55 -04:00
|
|
|
this.HistoryManager.flushProjectChangesAsync
|
2020-05-06 06:11:36 -04:00
|
|
|
.calledWithExactly(this.project_id)
|
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should return a successful No Content response', function () {
|
2020-05-11 11:20:55 -04:00
|
|
|
this.res.sendStatus.calledWith(204).should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('should log the request', function () {
|
2021-09-30 04:28:32 -04:00
|
|
|
this.logger.debug
|
2020-05-06 06:11:36 -04:00
|
|
|
.calledWith(
|
2020-05-11 11:37:59 -04:00
|
|
|
{ docId: this.doc_id, projectId: this.project_id },
|
2020-05-06 06:11:36 -04:00
|
|
|
'deleting doc via http'
|
|
|
|
)
|
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
it('should time the request', function () {
|
|
|
|
this.Metrics.Timer.prototype.done.called.should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('ignoring errors', function () {
|
|
|
|
beforeEach(function () {
|
|
|
|
this.req.query.ignore_flush_errors = 'true'
|
|
|
|
this.DocumentManager.flushAndDeleteDocWithLock = sinon.stub().yields()
|
2020-05-11 11:20:55 -04:00
|
|
|
this.HttpController.deleteDoc(this.req, this.res, this.next)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('should delete the doc', function () {
|
2020-05-11 11:20:55 -04:00
|
|
|
this.DocumentManager.flushAndDeleteDocWithLock
|
2020-05-06 06:11:36 -04:00
|
|
|
.calledWith(this.project_id, this.doc_id, { ignoreFlushErrors: true })
|
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
it('should return a successful No Content response', function () {
|
|
|
|
this.res.sendStatus.calledWith(204).should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
describe('when an errors occurs', function () {
|
2020-05-06 06:11:36 -04:00
|
|
|
beforeEach(function () {
|
|
|
|
this.DocumentManager.flushAndDeleteDocWithLock = sinon
|
|
|
|
.stub()
|
|
|
|
.callsArgWith(3, new Error('oops'))
|
2020-05-11 11:20:55 -04:00
|
|
|
this.HttpController.deleteDoc(this.req, this.res, this.next)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('should flush project history', function () {
|
2020-05-11 11:20:55 -04:00
|
|
|
this.HistoryManager.flushProjectChangesAsync
|
2020-05-06 06:11:36 -04:00
|
|
|
.calledWithExactly(this.project_id)
|
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
it('should call next with the error', function () {
|
2020-05-15 14:29:49 -04:00
|
|
|
this.next.calledWith(sinon.match.instanceOf(Error)).should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('deleteProject', function () {
|
|
|
|
beforeEach(function () {
|
2020-05-11 11:20:55 -04:00
|
|
|
this.req = {
|
2020-05-06 06:11:36 -04:00
|
|
|
params: {
|
2021-07-13 07:04:42 -04:00
|
|
|
project_id: this.project_id,
|
2020-05-11 11:37:59 -04:00
|
|
|
},
|
|
|
|
query: {},
|
2021-07-13 07:04:42 -04:00
|
|
|
body: {},
|
2020-05-11 11:20:55 -04:00
|
|
|
}
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('successfully', function () {
|
|
|
|
beforeEach(function () {
|
|
|
|
this.ProjectManager.flushAndDeleteProjectWithLocks = sinon
|
|
|
|
.stub()
|
|
|
|
.callsArgWith(2)
|
2020-05-11 11:20:55 -04:00
|
|
|
this.HttpController.deleteProject(this.req, this.res, this.next)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('should delete the project', function () {
|
2020-05-11 11:20:55 -04:00
|
|
|
this.ProjectManager.flushAndDeleteProjectWithLocks
|
2020-05-06 06:11:36 -04:00
|
|
|
.calledWith(this.project_id)
|
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should return a successful No Content response', function () {
|
2020-05-11 11:20:55 -04:00
|
|
|
this.res.sendStatus.calledWith(204).should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('should log the request', function () {
|
2021-09-30 04:28:32 -04:00
|
|
|
this.logger.debug
|
2020-05-06 06:11:36 -04:00
|
|
|
.calledWith(
|
2020-05-11 11:37:59 -04:00
|
|
|
{ projectId: this.project_id },
|
2020-05-06 06:11:36 -04:00
|
|
|
'deleting project via http'
|
|
|
|
)
|
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
it('should time the request', function () {
|
|
|
|
this.Metrics.Timer.prototype.done.called.should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('with the background=true option from realtime', function () {
|
|
|
|
beforeEach(function () {
|
|
|
|
this.ProjectManager.queueFlushAndDeleteProject = sinon
|
|
|
|
.stub()
|
|
|
|
.callsArgWith(1)
|
|
|
|
this.req.query = { background: true, shutdown: true }
|
2020-05-11 11:20:55 -04:00
|
|
|
this.HttpController.deleteProject(this.req, this.res, this.next)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
it('should queue the flush and delete', function () {
|
|
|
|
this.ProjectManager.queueFlushAndDeleteProject
|
2020-05-06 06:11:36 -04:00
|
|
|
.calledWith(this.project_id)
|
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
describe('when an errors occurs', function () {
|
2020-05-06 06:11:36 -04:00
|
|
|
beforeEach(function () {
|
|
|
|
this.ProjectManager.flushAndDeleteProjectWithLocks = sinon
|
|
|
|
.stub()
|
|
|
|
.callsArgWith(2, new Error('oops'))
|
2020-05-11 11:20:55 -04:00
|
|
|
this.HttpController.deleteProject(this.req, this.res, this.next)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
it('should call next with the error', function () {
|
2020-05-15 14:29:49 -04:00
|
|
|
this.next.calledWith(sinon.match.instanceOf(Error)).should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('acceptChanges', function () {
|
|
|
|
beforeEach(function () {
|
2020-05-11 11:20:55 -04:00
|
|
|
this.req = {
|
2020-05-06 06:11:36 -04:00
|
|
|
params: {
|
|
|
|
project_id: this.project_id,
|
|
|
|
doc_id: this.doc_id,
|
2021-07-13 07:04:42 -04:00
|
|
|
change_id: (this.change_id = 'mock-change-od-1'),
|
2020-05-11 11:37:59 -04:00
|
|
|
},
|
|
|
|
query: {},
|
2021-07-13 07:04:42 -04:00
|
|
|
body: {},
|
2020-05-11 11:20:55 -04:00
|
|
|
}
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('successfully with a single change', function () {
|
|
|
|
beforeEach(function () {
|
|
|
|
this.DocumentManager.acceptChangesWithLock = sinon
|
|
|
|
.stub()
|
|
|
|
.callsArgWith(3)
|
2020-05-11 11:20:55 -04:00
|
|
|
this.HttpController.acceptChanges(this.req, this.res, this.next)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('should accept the change', function () {
|
2020-05-11 11:20:55 -04:00
|
|
|
this.DocumentManager.acceptChangesWithLock
|
2020-05-06 06:11:36 -04:00
|
|
|
.calledWith(this.project_id, this.doc_id, [this.change_id])
|
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should return a successful No Content response', function () {
|
2020-05-11 11:20:55 -04:00
|
|
|
this.res.sendStatus.calledWith(204).should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('should log the request', function () {
|
2021-09-30 04:28:32 -04:00
|
|
|
this.logger.debug
|
2020-05-06 06:11:36 -04:00
|
|
|
.calledWith(
|
2020-05-11 11:37:59 -04:00
|
|
|
{ projectId: this.project_id, docId: this.doc_id },
|
2020-05-06 06:11:36 -04:00
|
|
|
'accepting 1 changes via http'
|
|
|
|
)
|
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
it('should time the request', function () {
|
|
|
|
this.Metrics.Timer.prototype.done.called.should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('succesfully with with multiple changes', function () {
|
|
|
|
beforeEach(function () {
|
|
|
|
this.change_ids = [
|
|
|
|
'mock-change-od-1',
|
|
|
|
'mock-change-od-2',
|
|
|
|
'mock-change-od-3',
|
2021-07-13 07:04:42 -04:00
|
|
|
'mock-change-od-4',
|
2020-05-06 06:11:36 -04:00
|
|
|
]
|
|
|
|
this.req.body = { change_ids: this.change_ids }
|
|
|
|
this.DocumentManager.acceptChangesWithLock = sinon
|
|
|
|
.stub()
|
|
|
|
.callsArgWith(3)
|
2020-05-11 11:20:55 -04:00
|
|
|
this.HttpController.acceptChanges(this.req, this.res, this.next)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('should accept the changes in the body payload', function () {
|
2020-05-11 11:20:55 -04:00
|
|
|
this.DocumentManager.acceptChangesWithLock
|
2020-05-06 06:11:36 -04:00
|
|
|
.calledWith(this.project_id, this.doc_id, this.change_ids)
|
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
it('should log the request with the correct number of changes', function () {
|
2021-09-30 04:28:32 -04:00
|
|
|
this.logger.debug
|
2020-05-06 06:11:36 -04:00
|
|
|
.calledWith(
|
2020-05-11 11:37:59 -04:00
|
|
|
{ projectId: this.project_id, docId: this.doc_id },
|
2020-05-06 06:11:36 -04:00
|
|
|
`accepting ${this.change_ids.length} changes via http`
|
|
|
|
)
|
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
describe('when an errors occurs', function () {
|
2020-05-06 06:11:36 -04:00
|
|
|
beforeEach(function () {
|
|
|
|
this.DocumentManager.acceptChangesWithLock = sinon
|
|
|
|
.stub()
|
|
|
|
.callsArgWith(3, new Error('oops'))
|
2020-05-11 11:20:55 -04:00
|
|
|
this.HttpController.acceptChanges(this.req, this.res, this.next)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
it('should call next with the error', function () {
|
2020-05-15 14:29:49 -04:00
|
|
|
this.next.calledWith(sinon.match.instanceOf(Error)).should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('deleteComment', function () {
|
|
|
|
beforeEach(function () {
|
2020-05-11 11:20:55 -04:00
|
|
|
this.req = {
|
2020-05-06 06:11:36 -04:00
|
|
|
params: {
|
|
|
|
project_id: this.project_id,
|
|
|
|
doc_id: this.doc_id,
|
2021-07-13 07:04:42 -04:00
|
|
|
comment_id: (this.comment_id = 'mock-comment-id'),
|
2020-05-11 11:37:59 -04:00
|
|
|
},
|
|
|
|
query: {},
|
2021-07-13 07:04:42 -04:00
|
|
|
body: {},
|
2020-05-11 11:20:55 -04:00
|
|
|
}
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('successfully', function () {
|
|
|
|
beforeEach(function () {
|
|
|
|
this.DocumentManager.deleteCommentWithLock = sinon
|
|
|
|
.stub()
|
|
|
|
.callsArgWith(3)
|
2020-05-11 11:20:55 -04:00
|
|
|
this.HttpController.deleteComment(this.req, this.res, this.next)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('should accept the change', function () {
|
2020-05-11 11:20:55 -04:00
|
|
|
this.DocumentManager.deleteCommentWithLock
|
2020-05-06 06:11:36 -04:00
|
|
|
.calledWith(this.project_id, this.doc_id, this.comment_id)
|
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should return a successful No Content response', function () {
|
2020-05-11 11:20:55 -04:00
|
|
|
this.res.sendStatus.calledWith(204).should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('should log the request', function () {
|
2021-09-30 04:28:32 -04:00
|
|
|
this.logger.debug
|
2020-05-06 06:11:36 -04:00
|
|
|
.calledWith(
|
|
|
|
{
|
2020-05-11 11:37:59 -04:00
|
|
|
projectId: this.project_id,
|
|
|
|
docId: this.doc_id,
|
2021-07-13 07:04:42 -04:00
|
|
|
commentId: this.comment_id,
|
2020-05-06 06:11:36 -04:00
|
|
|
},
|
|
|
|
'deleting comment via http'
|
|
|
|
)
|
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
it('should time the request', function () {
|
|
|
|
this.Metrics.Timer.prototype.done.called.should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
describe('when an errors occurs', function () {
|
2020-05-06 06:11:36 -04:00
|
|
|
beforeEach(function () {
|
|
|
|
this.DocumentManager.deleteCommentWithLock = sinon
|
|
|
|
.stub()
|
|
|
|
.callsArgWith(3, new Error('oops'))
|
2020-05-11 11:20:55 -04:00
|
|
|
this.HttpController.deleteComment(this.req, this.res, this.next)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
it('should call next with the error', function () {
|
2020-05-15 14:29:49 -04:00
|
|
|
this.next.calledWith(sinon.match.instanceOf(Error)).should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('getProjectDocsAndFlushIfOld', function () {
|
|
|
|
beforeEach(function () {
|
|
|
|
this.state = '01234567890abcdef'
|
|
|
|
this.docs = [
|
|
|
|
{ _id: '1234', lines: 'hello', v: 23 },
|
2021-07-13 07:04:42 -04:00
|
|
|
{ _id: '4567', lines: 'world', v: 45 },
|
2020-05-06 06:11:36 -04:00
|
|
|
]
|
2020-05-11 11:20:55 -04:00
|
|
|
this.req = {
|
2020-05-06 06:11:36 -04:00
|
|
|
params: {
|
2021-07-13 07:04:42 -04:00
|
|
|
project_id: this.project_id,
|
2020-05-06 06:11:36 -04:00
|
|
|
},
|
|
|
|
query: {
|
2021-07-13 07:04:42 -04:00
|
|
|
state: this.state,
|
2020-05-11 11:37:59 -04:00
|
|
|
},
|
2021-07-13 07:04:42 -04:00
|
|
|
body: {},
|
2020-05-11 11:20:55 -04:00
|
|
|
}
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('successfully', function () {
|
|
|
|
beforeEach(function () {
|
|
|
|
this.ProjectManager.getProjectDocsAndFlushIfOld = sinon
|
|
|
|
.stub()
|
|
|
|
.callsArgWith(3, null, this.docs)
|
2020-05-11 11:20:55 -04:00
|
|
|
this.HttpController.getProjectDocsAndFlushIfOld(
|
2020-05-06 06:11:36 -04:00
|
|
|
this.req,
|
|
|
|
this.res,
|
|
|
|
this.next
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should get docs from the project manager', function () {
|
2020-05-11 11:20:55 -04:00
|
|
|
this.ProjectManager.getProjectDocsAndFlushIfOld
|
2020-05-06 06:11:36 -04:00
|
|
|
.calledWith(this.project_id, this.state, {})
|
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should return a successful response', function () {
|
2020-05-11 11:20:55 -04:00
|
|
|
this.res.send.calledWith(this.docs).should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('should log the request', function () {
|
2021-09-30 04:28:32 -04:00
|
|
|
this.logger.debug
|
2020-05-06 06:11:36 -04:00
|
|
|
.calledWith(
|
2020-05-11 11:37:59 -04:00
|
|
|
{ projectId: this.project_id, exclude: [] },
|
2020-05-06 06:11:36 -04:00
|
|
|
'getting docs via http'
|
|
|
|
)
|
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should log the response', function () {
|
2021-09-30 04:28:32 -04:00
|
|
|
this.logger.debug
|
2020-05-06 06:11:36 -04:00
|
|
|
.calledWith(
|
2020-05-11 11:37:59 -04:00
|
|
|
{ projectId: this.project_id, result: ['1234:23', '4567:45'] },
|
2020-05-06 06:11:36 -04:00
|
|
|
'got docs via http'
|
|
|
|
)
|
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
it('should time the request', function () {
|
|
|
|
this.Metrics.Timer.prototype.done.called.should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('when there is a conflict', function () {
|
|
|
|
beforeEach(function () {
|
|
|
|
this.ProjectManager.getProjectDocsAndFlushIfOld = sinon
|
|
|
|
.stub()
|
|
|
|
.callsArgWith(
|
|
|
|
3,
|
|
|
|
new Errors.ProjectStateChangedError('project state changed')
|
|
|
|
)
|
2020-05-11 11:20:55 -04:00
|
|
|
this.HttpController.getProjectDocsAndFlushIfOld(
|
2020-05-06 06:11:36 -04:00
|
|
|
this.req,
|
|
|
|
this.res,
|
|
|
|
this.next
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
it('should return an HTTP 409 Conflict response', function () {
|
|
|
|
this.res.sendStatus.calledWith(409).should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
describe('when an error occurs', function () {
|
2020-05-06 06:11:36 -04:00
|
|
|
beforeEach(function () {
|
|
|
|
this.ProjectManager.getProjectDocsAndFlushIfOld = sinon
|
|
|
|
.stub()
|
|
|
|
.callsArgWith(3, new Error('oops'))
|
2020-05-11 11:20:55 -04:00
|
|
|
this.HttpController.getProjectDocsAndFlushIfOld(
|
2020-05-06 06:11:36 -04:00
|
|
|
this.req,
|
|
|
|
this.res,
|
|
|
|
this.next
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
it('should call next with the error', function () {
|
2020-05-15 14:29:49 -04:00
|
|
|
this.next.calledWith(sinon.match.instanceOf(Error)).should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2020-05-20 16:26:22 -04:00
|
|
|
describe('updateProject', function () {
|
2020-05-15 15:54:31 -04:00
|
|
|
beforeEach(function () {
|
|
|
|
this.projectHistoryId = 'history-id-123'
|
|
|
|
this.userId = 'user-id-123'
|
|
|
|
this.updates = [
|
|
|
|
{
|
|
|
|
type: 'rename-doc',
|
|
|
|
id: 1,
|
|
|
|
pathname: 'thesis.tex',
|
2021-07-13 07:04:42 -04:00
|
|
|
newPathname: 'book.tex',
|
2020-05-15 15:54:31 -04:00
|
|
|
},
|
|
|
|
{ type: 'add-doc', id: 2, pathname: 'article.tex', docLines: 'hello' },
|
|
|
|
{
|
|
|
|
type: 'rename-file',
|
|
|
|
id: 3,
|
|
|
|
pathname: 'apple.png',
|
2021-07-13 07:04:42 -04:00
|
|
|
newPathname: 'banana.png',
|
2020-05-15 15:54:31 -04:00
|
|
|
},
|
2021-07-13 07:04:42 -04:00
|
|
|
{ type: 'add-file', id: 4, url: 'filestore.example.com/4' },
|
2020-05-15 15:54:31 -04:00
|
|
|
]
|
|
|
|
this.version = 1234567
|
|
|
|
this.req = {
|
|
|
|
query: {},
|
|
|
|
body: {
|
|
|
|
projectHistoryId: this.projectHistoryId,
|
|
|
|
userId: this.userId,
|
|
|
|
updates: this.updates,
|
2021-07-13 07:04:42 -04:00
|
|
|
version: this.version,
|
2020-05-15 15:54:31 -04:00
|
|
|
},
|
|
|
|
params: {
|
2021-07-13 07:04:42 -04:00
|
|
|
project_id: this.project_id,
|
|
|
|
},
|
2020-05-15 15:54:31 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('successfully', function () {
|
|
|
|
beforeEach(function () {
|
|
|
|
this.ProjectManager.updateProjectWithLocks = sinon.stub().yields()
|
2020-05-11 11:20:55 -04:00
|
|
|
this.HttpController.updateProject(this.req, this.res, this.next)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('should accept the change', function () {
|
2020-05-11 11:20:55 -04:00
|
|
|
this.ProjectManager.updateProjectWithLocks
|
2020-05-06 06:11:36 -04:00
|
|
|
.calledWith(
|
|
|
|
this.project_id,
|
|
|
|
this.projectHistoryId,
|
|
|
|
this.userId,
|
2020-05-15 15:54:31 -04:00
|
|
|
this.updates,
|
2020-05-06 06:11:36 -04:00
|
|
|
this.version
|
|
|
|
)
|
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should return a successful No Content response', function () {
|
2020-05-11 11:20:55 -04:00
|
|
|
this.res.sendStatus.calledWith(204).should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
it('should time the request', function () {
|
|
|
|
this.Metrics.Timer.prototype.done.called.should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
describe('when an errors occurs', function () {
|
2020-05-06 06:11:36 -04:00
|
|
|
beforeEach(function () {
|
|
|
|
this.ProjectManager.updateProjectWithLocks = sinon
|
|
|
|
.stub()
|
2020-05-15 15:54:31 -04:00
|
|
|
.yields(new Error('oops'))
|
2020-05-11 11:20:55 -04:00
|
|
|
this.HttpController.updateProject(this.req, this.res, this.next)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
it('should call next with the error', function () {
|
2020-05-15 14:29:49 -04:00
|
|
|
this.next.calledWith(sinon.match.instanceOf(Error)).should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
describe('resyncProjectHistory', function () {
|
2020-05-06 06:11:36 -04:00
|
|
|
beforeEach(function () {
|
|
|
|
this.projectHistoryId = 'history-id-123'
|
|
|
|
this.docs = sinon.stub()
|
|
|
|
this.files = sinon.stub()
|
|
|
|
this.fileUpdates = sinon.stub()
|
2020-05-11 11:20:55 -04:00
|
|
|
this.req = {
|
2020-05-11 11:37:59 -04:00
|
|
|
query: {},
|
2020-05-06 06:11:36 -04:00
|
|
|
body: {
|
|
|
|
projectHistoryId: this.projectHistoryId,
|
|
|
|
docs: this.docs,
|
2021-07-13 07:04:42 -04:00
|
|
|
files: this.files,
|
2020-05-06 06:11:36 -04:00
|
|
|
},
|
|
|
|
params: {
|
2021-07-13 07:04:42 -04:00
|
|
|
project_id: this.project_id,
|
|
|
|
},
|
2020-05-11 11:20:55 -04:00
|
|
|
}
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('successfully', function () {
|
|
|
|
beforeEach(function () {
|
|
|
|
this.HistoryManager.resyncProjectHistory = sinon.stub().callsArgWith(4)
|
2020-05-11 11:20:55 -04:00
|
|
|
this.HttpController.resyncProjectHistory(this.req, this.res, this.next)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('should accept the change', function () {
|
2020-05-11 11:20:55 -04:00
|
|
|
this.HistoryManager.resyncProjectHistory
|
2020-05-06 06:11:36 -04:00
|
|
|
.calledWith(
|
|
|
|
this.project_id,
|
|
|
|
this.projectHistoryId,
|
|
|
|
this.docs,
|
|
|
|
this.files
|
|
|
|
)
|
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
it('should return a successful No Content response', function () {
|
|
|
|
this.res.sendStatus.calledWith(204).should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
describe('when an errors occurs', function () {
|
2020-05-06 06:11:36 -04:00
|
|
|
beforeEach(function () {
|
|
|
|
this.HistoryManager.resyncProjectHistory = sinon
|
|
|
|
.stub()
|
|
|
|
.callsArgWith(4, new Error('oops'))
|
2020-05-11 11:20:55 -04:00
|
|
|
this.HttpController.resyncProjectHistory(this.req, this.res, this.next)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
|
2020-05-11 11:20:55 -04:00
|
|
|
it('should call next with the error', function () {
|
2020-05-15 14:29:49 -04:00
|
|
|
this.next.calledWith(sinon.match.instanceOf(Error)).should.equal(true)
|
2020-05-06 06:11:36 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|