2021-03-12 17:16:01 -05:00
|
|
|
const chai = require('chai')
|
|
|
|
const sinon = require('sinon')
|
|
|
|
const sinonChai = require('sinon-chai')
|
|
|
|
const chaiAsPromised = require('chai-as-promised')
|
|
|
|
const SandboxedModule = require('sandboxed-module')
|
|
|
|
|
2021-08-03 05:00:44 -04:00
|
|
|
process.env.BACKEND = 'gcs'
|
|
|
|
|
2021-03-12 17:16:01 -05:00
|
|
|
// Chai configuration
|
|
|
|
chai.should()
|
|
|
|
chai.use(sinonChai)
|
|
|
|
chai.use(chaiAsPromised)
|
|
|
|
|
|
|
|
// Global stubs
|
|
|
|
const sandbox = sinon.createSandbox()
|
|
|
|
const stubs = {
|
|
|
|
logger: {
|
|
|
|
log: sandbox.stub(),
|
|
|
|
warn: sandbox.stub(),
|
|
|
|
err: sandbox.stub(),
|
|
|
|
error: sandbox.stub(),
|
2021-07-13 07:04:48 -04:00
|
|
|
fatal: sandbox.stub(),
|
|
|
|
},
|
2021-03-12 17:16:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// SandboxedModule configuration
|
|
|
|
SandboxedModule.configure({
|
|
|
|
requires: {
|
2021-07-13 07:04:48 -04:00
|
|
|
'logger-sharelatex': stubs.logger,
|
2021-03-12 17:16:01 -05:00
|
|
|
},
|
2021-07-13 07:04:48 -04:00
|
|
|
globals: { Buffer, JSON, console, process },
|
2021-03-12 17:16:01 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
exports.mochaHooks = {
|
|
|
|
beforeEach() {
|
|
|
|
this.logger = stubs.logger
|
|
|
|
},
|
|
|
|
|
|
|
|
afterEach() {
|
|
|
|
sandbox.reset()
|
2021-07-13 07:04:48 -04:00
|
|
|
},
|
2021-03-12 17:16:01 -05:00
|
|
|
}
|