2020-02-17 12:35:01 -05:00
|
|
|
/* eslint-disable
|
|
|
|
handle-callback-err,
|
|
|
|
no-return-assign,
|
|
|
|
*/
|
|
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
|
|
// Fix any style issues and re-enable lint.
|
2020-02-17 12:34:50 -05:00
|
|
|
/*
|
|
|
|
* decaffeinate suggestions:
|
|
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
|
|
*/
|
2020-02-17 12:35:16 -05:00
|
|
|
const chai = require('chai')
|
|
|
|
chai.should()
|
|
|
|
const sinon = require('sinon')
|
|
|
|
const modulePath = '../../../../app/js/MongoAWS.js'
|
|
|
|
const SandboxedModule = require('sandboxed-module')
|
|
|
|
const { ObjectId } = require('mongojs')
|
|
|
|
const MemoryStream = require('memorystream')
|
|
|
|
const zlib = require('zlib')
|
2015-08-31 17:13:18 -04:00
|
|
|
|
2020-06-04 04:24:21 -04:00
|
|
|
describe('MongoAWS', function () {
|
|
|
|
beforeEach(function () {
|
2020-02-17 12:35:16 -05:00
|
|
|
this.MongoAWS = SandboxedModule.require(modulePath, {
|
2020-03-23 06:34:57 -04:00
|
|
|
singleOnly: true,
|
2020-02-17 12:35:16 -05:00
|
|
|
requires: {
|
|
|
|
'settings-sharelatex': (this.settings = {
|
|
|
|
trackchanges: {
|
|
|
|
s3: {
|
|
|
|
secret: 's3-secret',
|
|
|
|
key: 's3-key'
|
|
|
|
},
|
|
|
|
stores: {
|
|
|
|
doc_history: 's3-bucket'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
child_process: (this.child_process = {}),
|
|
|
|
'mongo-uri': (this.mongouri = {}),
|
|
|
|
'logger-sharelatex': (this.logger = {
|
|
|
|
log: sinon.stub(),
|
|
|
|
error: sinon.stub(),
|
|
|
|
err() {}
|
|
|
|
}),
|
|
|
|
'aws-sdk': (this.awssdk = {}),
|
|
|
|
fs: (this.fs = {}),
|
|
|
|
's3-streams': (this.S3S = {}),
|
|
|
|
'./mongojs': { db: (this.db = {}), ObjectId },
|
|
|
|
JSONStream: (this.JSONStream = {}),
|
|
|
|
'readline-stream': (this.readline = sinon.stub()),
|
|
|
|
'metrics-sharelatex': { inc() {} }
|
|
|
|
}
|
|
|
|
})
|
2015-08-31 17:13:18 -04:00
|
|
|
|
2020-02-17 12:35:16 -05:00
|
|
|
this.project_id = ObjectId().toString()
|
|
|
|
this.doc_id = ObjectId().toString()
|
|
|
|
this.pack_id = ObjectId()
|
|
|
|
this.update = { v: 123 }
|
|
|
|
return (this.callback = sinon.stub())
|
|
|
|
})
|
2015-08-31 17:13:18 -04:00
|
|
|
|
2020-06-04 04:24:21 -04:00
|
|
|
describe('archivePack', function () {
|
|
|
|
beforeEach(function (done) {
|
2020-02-17 12:35:16 -05:00
|
|
|
this.awssdk.config = { update: sinon.stub() }
|
|
|
|
this.awssdk.S3 = sinon.stub()
|
|
|
|
this.S3S.WriteStream = () => MemoryStream.createWriteStream()
|
|
|
|
this.db.docHistory = {}
|
|
|
|
this.db.docHistory.findOne = sinon
|
|
|
|
.stub()
|
|
|
|
.callsArgWith(1, null, { pack: 'hello' })
|
2015-08-31 17:13:18 -04:00
|
|
|
|
2020-02-17 12:35:16 -05:00
|
|
|
return this.MongoAWS.archivePack(
|
|
|
|
this.project_id,
|
|
|
|
this.doc_id,
|
|
|
|
this.pack_id,
|
|
|
|
(err, result) => {
|
|
|
|
this.callback()
|
|
|
|
return done()
|
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
2015-08-31 17:13:18 -04:00
|
|
|
|
2020-06-04 04:24:21 -04:00
|
|
|
return it('should call the callback', function () {
|
2020-02-17 12:35:16 -05:00
|
|
|
return this.callback.called.should.equal(true)
|
|
|
|
})
|
|
|
|
})
|
2015-08-31 17:13:18 -04:00
|
|
|
|
2020-06-04 04:24:21 -04:00
|
|
|
return describe('unArchivePack', function () {
|
|
|
|
beforeEach(function (done) {
|
2020-02-17 12:35:16 -05:00
|
|
|
return zlib.gzip('{"pack":"123"}', (err, zbuf) => {
|
|
|
|
this.awssdk.config = { update: sinon.stub() }
|
|
|
|
this.awssdk.S3 = sinon.stub()
|
|
|
|
this.S3S.ReadStream = () =>
|
|
|
|
MemoryStream.createReadStream(zbuf, { readable: true })
|
|
|
|
this.db.docHistory = {}
|
|
|
|
this.db.docHistory.insert = sinon.stub().callsArgWith(1, null, 'pack')
|
2015-08-31 17:13:18 -04:00
|
|
|
|
2020-02-17 12:35:16 -05:00
|
|
|
return this.MongoAWS.unArchivePack(
|
|
|
|
this.project_id,
|
|
|
|
this.doc_id,
|
|
|
|
this.pack_id,
|
|
|
|
(err, result) => {
|
|
|
|
this.callback()
|
|
|
|
return done()
|
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
|
|
|
})
|
2015-08-31 17:13:18 -04:00
|
|
|
|
2020-06-04 04:24:21 -04:00
|
|
|
return it('should call db.docHistory.insert', function () {
|
2020-02-17 12:35:16 -05:00
|
|
|
return this.db.docHistory.insert.called.should.equal(true)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|