| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239 |
- /* 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 sinon = require('sinon')
- const { expect } = require('chai')
- const modulePath = '../../../../app/js/MongoManager.js'
- const packModulePath = '../../../../app/js/PackManager.js'
- const SandboxedModule = require('sandboxed-module')
- const { ObjectId } = require('mongodb')
- const tk = require('timekeeper')
- describe('MongoManager', function () {
- beforeEach(function () {
- tk.freeze(new Date())
- this.MongoManager = SandboxedModule.require(modulePath, {
- requires: {
- './mongodb': { db: (this.db = {}), ObjectId },
- './PackManager': (this.PackManager = {}),
- '@overleaf/metrics': { timeAsyncMethod() {} },
- },
- })
- this.callback = sinon.stub()
- this.doc_id = ObjectId().toString()
- return (this.project_id = ObjectId().toString())
- })
- afterEach(function () {
- return tk.reset()
- })
- describe('getLastCompressedUpdate', function () {
- beforeEach(function () {
- this.update = 'mock-update'
- this.db.docHistory = {}
- this.db.docHistory.find = sinon.stub().returns(this.db.docHistory)
- this.db.docHistory.findOne = sinon.stub().returns(this.db.docHistory)
- this.db.docHistory.sort = sinon.stub().returns(this.db.docHistory)
- this.db.docHistory.limit = sinon.stub().returns(this.db.docHistory)
- this.db.docHistory.toArray = sinon
- .stub()
- .callsArgWith(0, null, [this.update])
- return this.MongoManager.getLastCompressedUpdate(
- this.doc_id,
- this.callback
- )
- })
- it('should find the updates for the doc', function () {
- return this.db.docHistory.find
- .calledWith({ doc_id: ObjectId(this.doc_id) })
- .should.equal(true)
- })
- it('should limit to one result', function () {
- return this.db.docHistory.limit.calledWith(1).should.equal(true)
- })
- it('should sort in descending version order', function () {
- return this.db.docHistory.sort.calledWith({ v: -1 }).should.equal(true)
- })
- return it('should call the call back with the update', function () {
- return this.callback.calledWith(null, this.update).should.equal(true)
- })
- })
- describe('peekLastCompressedUpdate', function () {
- describe('when there is no last update', function () {
- beforeEach(function () {
- this.PackManager.getLastPackFromIndex = sinon
- .stub()
- .callsArgWith(1, null, null)
- this.MongoManager.getLastCompressedUpdate = sinon
- .stub()
- .callsArgWith(1, null, null)
- return this.MongoManager.peekLastCompressedUpdate(
- this.doc_id,
- this.callback
- )
- })
- it('should get the last update', function () {
- return this.MongoManager.getLastCompressedUpdate
- .calledWith(this.doc_id)
- .should.equal(true)
- })
- return it('should call the callback with no update', function () {
- return this.callback.calledWith(null, null).should.equal(true)
- })
- })
- describe('when there is an update', function () {
- beforeEach(function () {
- this.update = { _id: Object() }
- this.MongoManager.getLastCompressedUpdate = sinon
- .stub()
- .callsArgWith(1, null, this.update)
- return this.MongoManager.peekLastCompressedUpdate(
- this.doc_id,
- this.callback
- )
- })
- it('should get the last update', function () {
- return this.MongoManager.getLastCompressedUpdate
- .calledWith(this.doc_id)
- .should.equal(true)
- })
- return it('should call the callback with the update', function () {
- return this.callback.calledWith(null, this.update).should.equal(true)
- })
- })
- return describe('when there is a last update in S3', function () {
- beforeEach(function () {
- this.update = { _id: Object(), v: 12345, v_end: 12345, inS3: true }
- this.PackManager.getLastPackFromIndex = sinon
- .stub()
- .callsArgWith(1, null, this.update)
- this.MongoManager.getLastCompressedUpdate = sinon
- .stub()
- .callsArgWith(1, null)
- return this.MongoManager.peekLastCompressedUpdate(
- this.doc_id,
- this.callback
- )
- })
- it('should get the last update', function () {
- return this.MongoManager.getLastCompressedUpdate
- .calledWith(this.doc_id)
- .should.equal(true)
- })
- return it('should call the callback with a null update and the correct version', function () {
- return this.callback
- .calledWith(null, null, this.update.v_end)
- .should.equal(true)
- })
- })
- })
- describe('backportProjectId', function () {
- beforeEach(function () {
- this.db.docHistory = { updateMany: sinon.stub().yields() }
- return this.MongoManager.backportProjectId(
- this.project_id,
- this.doc_id,
- this.callback
- )
- })
- it("should insert the project_id into all entries for the doc_id which don't have it set", function () {
- return this.db.docHistory.updateMany
- .calledWith(
- {
- doc_id: ObjectId(this.doc_id),
- project_id: { $exists: false },
- },
- {
- $set: { project_id: ObjectId(this.project_id) },
- }
- )
- .should.equal(true)
- })
- return it('should call the callback', function () {
- return this.callback.called.should.equal(true)
- })
- })
- describe('getProjectMetaData', function () {
- beforeEach(function () {
- this.metadata = { mock: 'metadata' }
- this.db.projectHistoryMetaData = {
- findOne: sinon.stub().callsArgWith(1, null, this.metadata),
- }
- return this.MongoManager.getProjectMetaData(
- this.project_id,
- this.callback
- )
- })
- it('should look up the meta data in the db', function () {
- return this.db.projectHistoryMetaData.findOne
- .calledWith({ project_id: ObjectId(this.project_id) })
- .should.equal(true)
- })
- return it('should return the metadata', function () {
- return this.callback.calledWith(null, this.metadata).should.equal(true)
- })
- })
- return describe('setProjectMetaData', function () {
- beforeEach(function () {
- this.metadata = { mock: 'metadata' }
- this.db.projectHistoryMetaData = {
- updateOne: sinon.stub().yields(),
- }
- return this.MongoManager.setProjectMetaData(
- this.project_id,
- this.metadata,
- this.callback
- )
- })
- it('should upsert the metadata into the DB', function () {
- return this.db.projectHistoryMetaData.updateOne
- .calledWith(
- {
- project_id: ObjectId(this.project_id),
- },
- {
- $set: this.metadata,
- },
- {
- upsert: true,
- }
- )
- .should.equal(true)
- })
- return it('should call the callback', function () {
- return this.callback.called.should.equal(true)
- })
- })
- })
|