bootstrap.js 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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: {
  41. AbortSignal,
  42. Buffer,
  43. Promise,
  44. console,
  45. process,
  46. URL,
  47. TextEncoder,
  48. TextDecoder,
  49. },
  50. })
  51. function getSandboxedModuleRequires() {
  52. const requires = {
  53. '@overleaf/logger': globalStubs.logger,
  54. }
  55. const internalModules = [
  56. '../../app/src/Features/Errors/Errors',
  57. '../../app/src/Features/Helpers/Mongo',
  58. ]
  59. const externalLibs = [
  60. 'async',
  61. 'bull',
  62. 'json2csv',
  63. 'lodash',
  64. 'marked',
  65. 'moment',
  66. '@overleaf/o-error',
  67. 'sanitize-html',
  68. 'sshpk',
  69. 'xml2js',
  70. ]
  71. for (const modulePath of internalModules) {
  72. requires[Path.resolve(__dirname, modulePath)] = require(modulePath)
  73. }
  74. for (const lib of externalLibs) {
  75. requires[lib] = require(lib)
  76. }
  77. return requires
  78. }
  79. /*
  80. * Mocha hooks
  81. */
  82. // sandboxed-module somehow registers every fake module it creates in this
  83. // module's children array, which uses quite a big amount of memory. We'll take
  84. // a copy of the module children array and restore it after each test so that
  85. // the garbage collector has a chance to reclaim the fake modules.
  86. let initialModuleChildren
  87. exports.mochaHooks = {
  88. beforeAll() {
  89. // Record initial module children
  90. initialModuleChildren = module.children.slice()
  91. },
  92. beforeEach() {
  93. // Install logger stub
  94. this.logger = globalStubs.logger
  95. },
  96. afterEach() {
  97. // Delete leaking sandboxed modules
  98. module.children = initialModuleChildren.slice()
  99. // Reset global stubs
  100. globalStubsSandbox.reset()
  101. // Restore other stubs
  102. sinon.restore()
  103. },
  104. }