bootstrap.js 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. const Path = require('path')
  2. const chai = require('chai')
  3. const sinon = require('sinon')
  4. /*
  5. * Chai configuration
  6. */
  7. // add chai.should()
  8. chai.should()
  9. // Load sinon-chai assertions so expect(stubFn).to.have.been.calledWith('abc')
  10. // has a nicer failure messages
  11. chai.use(require('sinon-chai'))
  12. // Load promise support for chai
  13. chai.use(require('chai-as-promised'))
  14. // Do not truncate assertion errors
  15. chai.config.truncateThreshold = 0
  16. // add support for mongoose in sinon
  17. require('sinon-mongoose')
  18. /*
  19. * Global stubs
  20. */
  21. const globalStubsSandbox = sinon.createSandbox()
  22. const globalStubs = {
  23. logger: {
  24. debug: globalStubsSandbox.stub(),
  25. info: globalStubsSandbox.stub(),
  26. log: globalStubsSandbox.stub(),
  27. warn: globalStubsSandbox.stub(),
  28. err: globalStubsSandbox.stub(),
  29. error: globalStubsSandbox.stub(),
  30. fatal: globalStubsSandbox.stub(),
  31. },
  32. }
  33. /*
  34. * Sandboxed module configuration
  35. */
  36. const SandboxedModule = require('sandboxed-module')
  37. SandboxedModule.configure({
  38. ignoreMissing: true,
  39. requires: getSandboxedModuleRequires(),
  40. globals: { AbortSignal, Buffer, Promise, console, process, URL },
  41. })
  42. function getSandboxedModuleRequires() {
  43. const requires = {
  44. '@overleaf/logger': globalStubs.logger,
  45. }
  46. const internalModules = [
  47. '../../app/src/util/promises',
  48. '../../app/src/Features/Errors/Errors',
  49. '../../app/src/Features/Helpers/Mongo',
  50. ]
  51. const externalLibs = [
  52. 'async',
  53. 'bull',
  54. 'json2csv',
  55. 'lodash',
  56. 'marked',
  57. 'moment',
  58. '@overleaf/o-error',
  59. 'sanitize-html',
  60. 'sshpk',
  61. 'underscore',
  62. 'xml2js',
  63. ]
  64. for (const modulePath of internalModules) {
  65. requires[Path.resolve(__dirname, modulePath)] = require(modulePath)
  66. }
  67. for (const lib of externalLibs) {
  68. requires[lib] = require(lib)
  69. }
  70. return requires
  71. }
  72. /*
  73. * Mocha hooks
  74. */
  75. // sandboxed-module somehow registers every fake module it creates in this
  76. // module's children array, which uses quite a big amount of memory. We'll take
  77. // a copy of the module children array and restore it after each test so that
  78. // the garbage collector has a chance to reclaim the fake modules.
  79. let initialModuleChildren
  80. exports.mochaHooks = {
  81. beforeAll() {
  82. // Record initial module children
  83. initialModuleChildren = module.children.slice()
  84. },
  85. beforeEach() {
  86. // Install logger stub
  87. this.logger = globalStubs.logger
  88. },
  89. afterEach() {
  90. // Delete leaking sandboxed modules
  91. module.children = initialModuleChildren.slice()
  92. // Reset global stubs
  93. globalStubsSandbox.reset()
  94. // Restore other stubs
  95. sinon.restore()
  96. },
  97. }