2020-06-23 13:30:34 -04:00
|
|
|
/* eslint-disable
|
|
|
|
camelcase,
|
|
|
|
no-return-assign,
|
|
|
|
*/
|
|
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
|
|
// Fix any style issues and re-enable lint.
|
2020-06-23 13:30:29 -04:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
2020-06-23 13:30:45 -04:00
|
|
|
let MockWebServer
|
|
|
|
const sinon = require('sinon')
|
|
|
|
const express = require('express')
|
2014-11-10 06:27:08 -05:00
|
|
|
|
2020-06-23 13:30:45 -04:00
|
|
|
module.exports = MockWebServer = {
|
|
|
|
projects: {},
|
|
|
|
privileges: {},
|
2017-10-20 10:19:20 -04:00
|
|
|
|
2020-06-23 13:30:45 -04:00
|
|
|
createMockProject(project_id, privileges, project) {
|
|
|
|
MockWebServer.privileges[project_id] = privileges
|
|
|
|
return (MockWebServer.projects[project_id] = project)
|
|
|
|
},
|
|
|
|
|
|
|
|
joinProject(project_id, user_id, callback) {
|
|
|
|
if (callback == null) {
|
2021-10-27 05:49:18 -04:00
|
|
|
callback = function () {}
|
2020-06-23 13:30:45 -04:00
|
|
|
}
|
|
|
|
return callback(
|
|
|
|
null,
|
|
|
|
MockWebServer.projects[project_id],
|
2020-10-01 07:28:39 -04:00
|
|
|
MockWebServer.privileges[project_id][user_id] ||
|
|
|
|
MockWebServer.privileges[project_id]['anonymous-user']
|
2020-06-23 13:30:45 -04:00
|
|
|
)
|
|
|
|
},
|
|
|
|
|
|
|
|
joinProjectRequest(req, res, next) {
|
|
|
|
const { project_id } = req.params
|
|
|
|
const { user_id } = req.query
|
2021-09-01 05:10:10 -04:00
|
|
|
if (project_id === '404404404404404404404404') {
|
|
|
|
// not-found
|
2020-08-27 06:39:25 -04:00
|
|
|
return res.status(404).send()
|
|
|
|
}
|
2021-09-01 05:10:10 -04:00
|
|
|
if (project_id === '403403403403403403403403') {
|
|
|
|
// forbidden
|
2020-08-27 05:51:34 -04:00
|
|
|
return res.status(403).send()
|
|
|
|
}
|
2021-09-01 05:10:10 -04:00
|
|
|
if (project_id === '429429429429429429429429') {
|
|
|
|
// rate-limited
|
2020-06-23 13:30:45 -04:00
|
|
|
return res.status(429).send()
|
|
|
|
} else {
|
|
|
|
return MockWebServer.joinProject(
|
|
|
|
project_id,
|
|
|
|
user_id,
|
|
|
|
(error, project, privilegeLevel) => {
|
|
|
|
if (error != null) {
|
|
|
|
return next(error)
|
|
|
|
}
|
|
|
|
return res.json({
|
|
|
|
project,
|
2021-07-13 07:04:45 -04:00
|
|
|
privilegeLevel,
|
2020-06-23 13:30:45 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
running: false,
|
|
|
|
run(callback) {
|
|
|
|
if (callback == null) {
|
2021-10-27 05:49:18 -04:00
|
|
|
callback = function () {}
|
2020-06-23 13:30:45 -04:00
|
|
|
}
|
|
|
|
if (MockWebServer.running) {
|
|
|
|
return callback()
|
|
|
|
}
|
|
|
|
const app = express()
|
|
|
|
app.post('/project/:project_id/join', MockWebServer.joinProjectRequest)
|
|
|
|
return app
|
2021-07-13 07:04:45 -04:00
|
|
|
.listen(3000, error => {
|
2020-06-23 13:30:45 -04:00
|
|
|
MockWebServer.running = true
|
|
|
|
return callback(error)
|
|
|
|
})
|
2021-07-13 07:04:45 -04:00
|
|
|
.on('error', error => {
|
2020-06-23 13:30:45 -04:00
|
|
|
console.error('error starting MockWebServer:', error.message)
|
|
|
|
return process.exit(1)
|
|
|
|
})
|
2021-07-13 07:04:45 -04:00
|
|
|
},
|
2020-06-23 13:30:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
sinon.spy(MockWebServer, 'joinProject')
|