2021-04-01 15:51:00 -04:00
|
|
|
const chai = require('chai')
|
2024-01-30 10:35:54 -05:00
|
|
|
const chaiAsPromised = require('chai-as-promised')
|
|
|
|
const sinonChai = require('sinon-chai')
|
2021-04-01 15:51:00 -04:00
|
|
|
const SandboxedModule = require('sandboxed-module')
|
|
|
|
const sinon = require('sinon')
|
|
|
|
|
|
|
|
// Chai configuration
|
|
|
|
chai.should()
|
2024-01-30 10:35:54 -05:00
|
|
|
chai.use(chaiAsPromised)
|
2023-09-06 10:23:23 -04:00
|
|
|
// Load sinon-chai assertions so expect(stubFn).to.have.been.calledWith('abc')
|
|
|
|
// has a nicer failure messages
|
2024-01-30 10:35:54 -05:00
|
|
|
chai.use(sinonChai)
|
2021-04-01 15:51:00 -04:00
|
|
|
|
|
|
|
// Global stubs
|
|
|
|
const sandbox = sinon.createSandbox()
|
|
|
|
const stubs = {
|
|
|
|
logger: {
|
|
|
|
debug: sandbox.stub(),
|
|
|
|
log: sandbox.stub(),
|
|
|
|
warn: sandbox.stub(),
|
|
|
|
err: sandbox.stub(),
|
2021-07-13 07:04:42 -04:00
|
|
|
error: sandbox.stub(),
|
|
|
|
},
|
2021-04-01 15:51:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// SandboxedModule configuration
|
|
|
|
SandboxedModule.configure({
|
|
|
|
requires: {
|
2021-10-06 05:10:28 -04:00
|
|
|
'@overleaf/logger': stubs.logger,
|
2021-04-01 15:51:00 -04:00
|
|
|
},
|
2021-07-13 07:04:42 -04:00
|
|
|
globals: { Buffer, JSON, Math, console, process },
|
2021-04-01 15:51:00 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
// Mocha hooks
|
|
|
|
exports.mochaHooks = {
|
|
|
|
beforeEach() {
|
|
|
|
this.logger = stubs.logger
|
|
|
|
},
|
|
|
|
|
|
|
|
afterEach() {
|
|
|
|
sandbox.reset()
|
2021-07-13 07:04:42 -04:00
|
|
|
},
|
2021-04-01 15:51:00 -04:00
|
|
|
}
|