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')
|
2024-11-08 05:21:56 -05:00
|
|
|
const timersPromises = require('node:timers/promises')
|
2021-03-12 17:16:01 -05:00
|
|
|
|
2024-07-15 07:10:48 -04:00
|
|
|
// ensure every ObjectId has the id string as a property for correct comparisons
|
|
|
|
require('mongodb-legacy').ObjectId.cacheHexString = true
|
|
|
|
|
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: {
|
2022-05-16 08:38:18 -04:00
|
|
|
debug: sandbox.stub(),
|
2021-03-12 17:16:01 -05:00
|
|
|
log: sandbox.stub(),
|
2022-05-16 08:38:18 -04:00
|
|
|
info: sandbox.stub(),
|
2021-03-12 17:16:01 -05:00
|
|
|
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-12-14 08:00:35 -05:00
|
|
|
'@overleaf/logger': stubs.logger,
|
2023-11-08 09:17:19 -05:00
|
|
|
'timers/promises': timersPromises,
|
2024-07-15 07:10:48 -04:00
|
|
|
'mongodb-legacy': require('mongodb-legacy'),
|
2021-03-12 17:16:01 -05:00
|
|
|
},
|
2022-12-15 07:53:03 -05:00
|
|
|
globals: { Buffer, JSON, Math, console, process },
|
2024-11-08 05:21:56 -05:00
|
|
|
sourceTransformers: {
|
|
|
|
removeNodePrefix: function (source) {
|
|
|
|
return source.replace(/require\(['"]node:/g, "require('")
|
|
|
|
},
|
|
|
|
},
|
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
|
|
|
}
|