mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
289 lines
10 KiB
CoffeeScript
289 lines
10 KiB
CoffeeScript
SandboxedModule = require('sandboxed-module')
|
|
sinon = require('sinon')
|
|
chai = require('chai')
|
|
chai.should()
|
|
expect = chai.expect
|
|
modulePath = require('path').join __dirname, '../../../app/js/DocManager'
|
|
ObjectId = require("mongojs").ObjectId
|
|
Errors = require "../../../app/js/Errors"
|
|
|
|
describe "DocManager", ->
|
|
beforeEach ->
|
|
@DocManager = SandboxedModule.require modulePath, requires:
|
|
"./MongoManager": @MongoManager = {}
|
|
"./DocArchiveManager": @DocArchiveManager = {}
|
|
"logger-sharelatex": @logger =
|
|
log: sinon.stub()
|
|
warn:->
|
|
err:->
|
|
@doc_id = ObjectId().toString()
|
|
@project_id = ObjectId().toString()
|
|
@another_project_id = ObjectId().toString()
|
|
@callback = sinon.stub()
|
|
@stubbedError = new Error("blew up")
|
|
|
|
describe "getDoc", ->
|
|
beforeEach ->
|
|
@project = { name: "mock-project" }
|
|
@doc = { _id: @doc_id, project_id: @project_id, lines: ["mock-lines"] }
|
|
@version = 42
|
|
@MongoManager.findDoc = sinon.stub()
|
|
@MongoManager.getDocVersion = sinon.stub().yields(null, @version)
|
|
|
|
describe "when the doc is in the doc collection", ->
|
|
beforeEach ->
|
|
@MongoManager.findDoc.yields(null, @doc)
|
|
@DocManager.getDoc @project_id, @doc_id, {version: true}, @callback
|
|
|
|
it "should get the doc from the doc collection", ->
|
|
@MongoManager.findDoc
|
|
.calledWith(@project_id, @doc_id)
|
|
.should.equal true
|
|
|
|
it "should get the doc version from the docOps collection", ->
|
|
@MongoManager.getDocVersion
|
|
.calledWith(@doc_id)
|
|
.should.equal true
|
|
|
|
it "should return the callback with the doc with the version", ->
|
|
@callback.called.should.equal true
|
|
doc = @callback.args[0][1]
|
|
doc.lines.should.equal @doc.lines
|
|
doc.version.should.equal @version
|
|
|
|
describe "without the version filter", ->
|
|
beforeEach ->
|
|
@MongoManager.findDoc.yields(null, @doc)
|
|
@DocManager.getDoc @project_id, @doc_id, {version: false}, @callback
|
|
|
|
it "should not get the doc version from the docOps collection", ->
|
|
@MongoManager.getDocVersion.called.should.equal false
|
|
|
|
describe "when MongoManager.findDoc errors", ->
|
|
beforeEach ->
|
|
@MongoManager.findDoc.yields(@stubbedError)
|
|
@DocManager.getDoc @project_id, @doc_id, {version: true}, @callback
|
|
|
|
it "should return the error", ->
|
|
@callback.calledWith(@stubbedError).should.equal true
|
|
|
|
describe "when the doc is archived", ->
|
|
beforeEach ->
|
|
@doc = { _id: @doc_id, project_id: @project_id, lines: ["mock-lines"], inS3: true }
|
|
@MongoManager.findDoc.yields(null, @doc)
|
|
@DocArchiveManager.unarchiveDoc = (project_id, doc_id, callback) =>
|
|
@doc.inS3 = false
|
|
callback()
|
|
sinon.spy @DocArchiveManager, "unarchiveDoc"
|
|
@DocManager.getDoc @project_id, @doc_id, {version: true}, @callback
|
|
|
|
it "should call the DocArchive to unarchive the doc", ->
|
|
@DocArchiveManager.unarchiveDoc.calledWith(@project_id, @doc_id).should.equal true
|
|
|
|
it "should look up the doc twice", ->
|
|
@MongoManager.findDoc.calledTwice.should.equal true
|
|
|
|
it "should return the doc", ->
|
|
@callback.calledWith(null, @doc).should.equal true
|
|
|
|
describe "when the doc does not exist in the docs collection", ->
|
|
beforeEach ->
|
|
@MongoManager.findDoc = sinon.stub().callsArgWith(2, null, null)
|
|
@DocManager.getDoc @project_id, @doc_id, {version: true}, @callback
|
|
|
|
it "should return a NotFoundError", ->
|
|
@callback
|
|
.calledWith(new Errors.NotFoundError("No such doc: #{@doc_id} in project #{@project_id}"))
|
|
.should.equal true
|
|
|
|
describe "getAllDocs", ->
|
|
describe "when the project exists", ->
|
|
beforeEach ->
|
|
@docs = [{ _id: @doc_id, project_id: @project_id, lines: ["mock-lines"] }]
|
|
@MongoManager.getProjectsDocs = sinon.stub().callsArgWith(1, null, @docs)
|
|
@DocArchiveManager.unArchiveAllDocs = sinon.stub().callsArgWith(1, null, @docs)
|
|
@DocManager.getAllDocs @project_id, @callback
|
|
|
|
it "should get the project from the database", ->
|
|
@MongoManager.getProjectsDocs
|
|
.calledWith(@project_id)
|
|
.should.equal true
|
|
|
|
it "should return the docs", ->
|
|
@callback.calledWith(null, @docs).should.equal true
|
|
|
|
describe "when there are no docs for the project", ->
|
|
beforeEach ->
|
|
@MongoManager.getProjectsDocs = sinon.stub().callsArgWith(1, null, null)
|
|
@DocArchiveManager.unArchiveAllDocs = sinon.stub().callsArgWith(1, null, null)
|
|
@DocManager.getAllDocs @project_id, @callback
|
|
|
|
it "should return a NotFoundError", ->
|
|
@callback
|
|
.calledWith(new Errors.NotFoundError("No such docs for project #{@project_id}"))
|
|
.should.equal true
|
|
|
|
describe "deleteDoc", ->
|
|
describe "when the doc exists", ->
|
|
beforeEach ->
|
|
@lines = ["mock", "doc", "lines"]
|
|
@rev = 77
|
|
@DocManager.getDoc = sinon.stub().callsArgWith(3, null, {lines: @lines, rev:@rev})
|
|
@MongoManager.markDocAsDeleted = sinon.stub().callsArg(2)
|
|
@DocManager.deleteDoc @project_id, @doc_id, @callback
|
|
|
|
it "should get the doc", ->
|
|
@DocManager.getDoc
|
|
.calledWith(@project_id, @doc_id)
|
|
.should.equal true
|
|
|
|
it "should mark doc as deleted", ->
|
|
@MongoManager.markDocAsDeleted
|
|
.calledWith(@project_id, @doc_id)
|
|
.should.equal true
|
|
|
|
it "should return the callback", ->
|
|
@callback.called.should.equal true
|
|
|
|
describe "when the doc does not exist", ->
|
|
beforeEach ->
|
|
@DocManager.getDoc = sinon.stub().callsArgWith(3, null, null)
|
|
@DocManager.deleteDoc @project_id, @doc_id, @callback
|
|
|
|
|
|
it "should return a NotFoundError", ->
|
|
@callback
|
|
.calledWith(new Errors.NotFoundError("No such doc: #{@doc_id}"))
|
|
.should.equal true
|
|
|
|
describe "updateDoc", ->
|
|
beforeEach ->
|
|
@oldDocLines = ["old", "doc", "lines"]
|
|
@newDocLines = ["new", "doc", "lines"]
|
|
@version = 42
|
|
@doc = { _id: @doc_id, project_id: @project_id, lines: @oldDocLines, rev: @rev = 5, version: @version }
|
|
|
|
@MongoManager.upsertIntoDocCollection = sinon.stub().callsArg(3)
|
|
@MongoManager.setDocVersion = sinon.stub().yields()
|
|
@DocManager.getDoc = sinon.stub()
|
|
|
|
describe "when the doc lines have changed", ->
|
|
beforeEach ->
|
|
@DocManager.getDoc = sinon.stub().callsArgWith(3, null, @doc)
|
|
@DocManager.updateDoc @project_id, @doc_id, @newDocLines, @version, @callback
|
|
|
|
it "should get the existing doc", ->
|
|
@DocManager.getDoc
|
|
.calledWith(@project_id, @doc_id)
|
|
.should.equal true
|
|
|
|
it "should upsert the document to the doc collection", ->
|
|
@MongoManager.upsertIntoDocCollection
|
|
.calledWith(@project_id, @doc_id, {lines: @newDocLines})
|
|
.should.equal true
|
|
|
|
it "should update the version", ->
|
|
@MongoManager.setDocVersion
|
|
.calledWith(@doc_id, @version)
|
|
.should.equal true
|
|
|
|
it "should log out the old and new doc lines", ->
|
|
@logger.log
|
|
.calledWith(
|
|
project_id: @project_id
|
|
doc_id: @doc_id
|
|
oldDocLines: @oldDocLines
|
|
newDocLines: @newDocLines
|
|
rev: @doc.rev
|
|
oldVersion: @version
|
|
newVersion: @version
|
|
"updating doc lines"
|
|
)
|
|
.should.equal true
|
|
|
|
it "should return the callback with the new rev", ->
|
|
@callback.calledWith(null, true, @rev + 1).should.equal true
|
|
|
|
describe "when the version has changed", ->
|
|
beforeEach ->
|
|
@DocManager.getDoc = sinon.stub().callsArgWith(3, null, @doc)
|
|
@DocManager.updateDoc @project_id, @doc_id, @oldDocLines, @version + 1, @callback
|
|
|
|
it "should get the existing doc with the version", ->
|
|
@DocManager.getDoc
|
|
.calledWith(@project_id, @doc_id, {version: true})
|
|
.should.equal true
|
|
|
|
it "should upsert the document to the doc collection", ->
|
|
@MongoManager.upsertIntoDocCollection
|
|
.calledWith(@project_id, @doc_id, {lines: @oldDocLines})
|
|
.should.equal true
|
|
|
|
it "should update the version", ->
|
|
@MongoManager.setDocVersion
|
|
.calledWith(@doc_id, @version + 1)
|
|
.should.equal true
|
|
|
|
it "should return the callback with the new rev", ->
|
|
@callback.calledWith(null, true, @rev + 1).should.equal true
|
|
|
|
describe "when the version is null", ->
|
|
beforeEach ->
|
|
@DocManager.updateDoc @project_id, @doc_id, @newDocLines, null, @callback
|
|
|
|
it "should return an error", ->
|
|
@callback.calledWith(new Error("no lines or version provided")).should.equal true
|
|
|
|
describe "when the lines are null", ->
|
|
beforeEach ->
|
|
@DocManager.updateDoc @project_id, @doc_id, null, @version, @callback
|
|
|
|
it "should return an error", ->
|
|
@callback.calledWith(new Error("no lines or version provided")).should.equal true
|
|
|
|
describe "when there is a generic error getting the doc", ->
|
|
beforeEach ->
|
|
@error = new Error("doc could not be found")
|
|
@DocManager.getDoc = sinon.stub().callsArgWith(3, @error, null, null)
|
|
@DocManager.updateDoc @project_id, @doc_id, @newDocLines, @version, @callback
|
|
|
|
it "should not upsert the document to the doc collection", ->
|
|
@MongoManager.upsertIntoDocCollection.called.should.equal false
|
|
|
|
it "should return the callback with the error", ->
|
|
@callback.calledWith(@error).should.equal true
|
|
|
|
describe "when the doc lines have not changed", ->
|
|
beforeEach ->
|
|
@DocManager.getDoc = sinon.stub().callsArgWith(3, null, @doc)
|
|
@DocManager.updateDoc @project_id, @doc_id, @oldDocLines.slice(), @version, @callback
|
|
|
|
it "should not update the doc", ->
|
|
@MongoManager.upsertIntoDocCollection.called.should.equal false
|
|
|
|
it "should return the callback with the existing rev", ->
|
|
@callback.calledWith(null, false, @rev).should.equal true
|
|
|
|
describe "when the doc lines are an empty array", ->
|
|
beforeEach ->
|
|
@doc.lines = []
|
|
@DocManager.getDoc = sinon.stub().callsArgWith(3, null, @doc)
|
|
@DocManager.updateDoc @project_id, @doc_id, @doc.lines, @callback
|
|
|
|
it "should upsert the document to the doc collection", ->
|
|
@MongoManager.upsertIntoDocCollection
|
|
.calledWith(@project_id, @doc_id, {lines: @doc.lines})
|
|
.should.equal true
|
|
|
|
describe "when the doc does not exist", ->
|
|
beforeEach ->
|
|
@DocManager.getDoc = sinon.stub().callsArgWith(3, null, null, null)
|
|
@DocManager.updateDoc @project_id, @doc_id, @newDocLines, @version, @callback
|
|
|
|
it "should upsert the document to the doc collection", ->
|
|
@MongoManager.upsertIntoDocCollection
|
|
.calledWith(@project_id, @doc_id, {lines: @newDocLines})
|
|
.should.equal true
|
|
|
|
it "should return the callback with the new rev", ->
|
|
@callback.calledWith(null, true, 1).should.equal true
|