overleaf/services/track-changes/test/acceptance/js/helpers/MockDocStoreApi.js

55 lines
1.3 KiB
JavaScript
Raw Normal View History

/* eslint-disable
camelcase,
handle-callback-err,
*/
// TODO: This file was created by bulk-decaffeinate.
// Fix any style issues and re-enable lint.
/*
* decaffeinate suggestions:
* DS102: Remove unnecessary code created because of implicit returns
* DS207: Consider shorter variations of null checks
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
*/
let MockDocUpdaterApi
const express = require('express')
const app = express()
2015-09-02 17:47:34 -04:00
module.exports = MockDocUpdaterApi = {
docs: {},
2015-09-02 17:47:34 -04:00
getAllDoc(project_id, callback) {
if (callback == null) {
2020-06-04 04:24:21 -04:00
callback = function (error) {}
}
return callback(null, this.docs)
},
2015-09-02 17:47:34 -04:00
run() {
app.get('/project/:project_id/doc', (req, res, next) => {
return this.getAllDoc(req.params.project_id, (error, docs) => {
if (error != null) {
res.sendStatus(500)
}
if (docs == null) {
return res.sendStatus(404)
} else {
return res.send(JSON.stringify(docs))
}
})
})
2015-09-02 17:47:34 -04:00
return app
2020-06-04 04:24:21 -04:00
.listen(3016, (error) => {
if (error != null) {
throw error
}
})
2020-06-04 04:24:21 -04:00
.on('error', (error) => {
console.error('error starting MockDocStoreApi:', error.message)
return process.exit(1)
})
}
}
2015-09-02 17:47:34 -04:00
MockDocUpdaterApi.run()