overleaf/services/docstore/test/acceptance/js/helpers/DocstoreApp.js

38 lines
965 B
JavaScript
Raw Normal View History

const app = require('../../../../app')
const { waitForDb } = require('../../../../app/js/mongodb')
require('@overleaf/logger').logger.level('error')
const settings = require('@overleaf/settings')
2018-05-23 06:27:31 -04:00
module.exports = {
running: false,
initing: false,
callbacks: [],
ensureRunning(callback) {
if (callback == null) {
callback = function () {}
}
if (this.running) {
return callback()
} else if (this.initing) {
return this.callbacks.push(callback)
}
this.initing = true
this.callbacks.push(callback)
waitForDb().then(() => {
2021-07-13 07:04:48 -04:00
return app.listen(settings.internal.docstore.port, 'localhost', error => {
if (error != null) {
throw error
2020-05-28 09:20:54 -04:00
}
2021-07-13 07:04:48 -04:00
this.running = true
return (() => {
const result = []
for (callback of Array.from(this.callbacks)) {
result.push(callback())
}
return result
})()
})
})
2021-07-13 07:04:48 -04:00
},
}