mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
5714deaa08
[docstore] skip mongo/object-persistor calls when archiving is disabled GitOrigin-RevId: 71bb7d77e987d6f32e37fd888311b6cc2a461170
53 lines
1.5 KiB
JavaScript
53 lines
1.5 KiB
JavaScript
const { expect } = require('chai')
|
|
const modulePath = '../../../app/js/PersistorManager.js'
|
|
const SandboxedModule = require('sandboxed-module')
|
|
|
|
describe('PersistorManager', function () {
|
|
class FakePersistor {
|
|
async sendStream() {
|
|
return 'sent'
|
|
}
|
|
}
|
|
|
|
describe('configured', function () {
|
|
it('should return fake persistor', function () {
|
|
const Settings = {
|
|
docstore: {
|
|
backend: 'gcs',
|
|
bucket: 'wombat',
|
|
},
|
|
}
|
|
const PersistorManger = SandboxedModule.require(modulePath, {
|
|
requires: {
|
|
'@overleaf/settings': Settings,
|
|
'@overleaf/object-persistor': () => new FakePersistor(),
|
|
},
|
|
})
|
|
|
|
expect(PersistorManger).to.be.instanceof(FakePersistor)
|
|
expect(PersistorManger.sendStream()).to.eventually.equal('sent')
|
|
})
|
|
})
|
|
|
|
describe('not configured', function () {
|
|
it('should return abstract persistor', async function () {
|
|
const Settings = {
|
|
docstore: {
|
|
backend: undefined,
|
|
bucket: 'wombat',
|
|
},
|
|
}
|
|
const PersistorManger = SandboxedModule.require(modulePath, {
|
|
requires: {
|
|
'@overleaf/settings': Settings,
|
|
'@overleaf/object-persistor': () => new FakePersistor(),
|
|
},
|
|
})
|
|
|
|
expect(PersistorManger.constructor.name).to.equal('AbstractPersistor')
|
|
expect(PersistorManger.sendStream()).to.eventually.be.rejectedWith(
|
|
/method not implemented in persistor/
|
|
)
|
|
})
|
|
})
|
|
})
|