mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
ffd10a8439
The version number is only used by the doc updater and so can be cleanly encapsulated in a collection that only the doc updater knows about. The version is already stored under docOps, so continue to tore it there.
46 lines
1.4 KiB
CoffeeScript
46 lines
1.4 KiB
CoffeeScript
sinon = require('sinon')
|
|
chai = require('chai')
|
|
should = chai.should()
|
|
modulePath = "../../../../app/js/PersistenceManager.js"
|
|
SandboxedModule = require('sandboxed-module')
|
|
{ObjectId} = require("mongojs")
|
|
|
|
describe "PersistenceManager.getDoc", ->
|
|
beforeEach ->
|
|
@PersistenceManager = SandboxedModule.require modulePath, requires:
|
|
"request": @request = sinon.stub()
|
|
"settings-sharelatex": @Settings = {}
|
|
"./Metrics": @Metrics =
|
|
Timer: class Timer
|
|
done: sinon.stub()
|
|
"logger-sharelatex": @logger = {warn: sinon.stub()}
|
|
"./mongojs":
|
|
db: @db = { docOps: {} }
|
|
ObjectId: ObjectId
|
|
|
|
@project_id = ObjectId().toString()
|
|
@doc_id = ObjectId().toString()
|
|
@callback = sinon.stub()
|
|
@lines = ["mock", "doc", "lines"]
|
|
@version = 42
|
|
|
|
describe "successfully", ->
|
|
beforeEach ->
|
|
@PersistenceManager.getDocFromWeb = sinon.stub().callsArgWith(2, null, @lines)
|
|
@PersistenceManager.getDocVersionInMongo = sinon.stub().callsArgWith(1, null, @version)
|
|
@PersistenceManager.getDoc @project_id, @doc_id, @callback
|
|
|
|
it "should look up the doc in the web api", ->
|
|
@PersistenceManager.getDocFromWeb
|
|
.calledWith(@project_id, @doc_id)
|
|
.should.equal true
|
|
|
|
it "should look up the version in Mongo", ->
|
|
@PersistenceManager.getDocVersionInMongo
|
|
.calledWith(@doc_id)
|
|
.should.equal true
|
|
|
|
it "should call the callback with the lines and version", ->
|
|
@callback.calledWith(null, @lines, @version).should.equal true
|
|
|
|
|