2021-08-27 08:32:44 -04:00
|
|
|
import express from 'express'
|
2021-10-14 05:35:43 -04:00
|
|
|
import { Server } from 'http'
|
2021-12-17 05:58:15 -05:00
|
|
|
import { getPort, randomListen, terminateServer } from './shared'
|
2019-09-04 05:18:33 -04:00
|
|
|
|
|
|
|
export class MockInstancesIndex {
|
2021-10-14 05:35:43 -04:00
|
|
|
private server: Server
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
private readonly indexInstances: { host: string, createdAt: string }[] = []
|
2019-09-04 05:18:33 -04:00
|
|
|
|
2021-10-22 08:31:38 -04:00
|
|
|
async initialize () {
|
|
|
|
const app = express()
|
2019-09-04 05:18:33 -04:00
|
|
|
|
2021-10-22 08:31:38 -04:00
|
|
|
app.use('/', (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
if (process.env.DEBUG) console.log('Receiving request on mocked server %s.', req.url)
|
2019-09-04 05:18:33 -04:00
|
|
|
|
2021-10-22 08:31:38 -04:00
|
|
|
return next()
|
|
|
|
})
|
2019-09-04 05:18:33 -04:00
|
|
|
|
2021-10-22 08:31:38 -04:00
|
|
|
app.get('/api/v1/instances/hosts', (req: express.Request, res: express.Response) => {
|
|
|
|
const since = req.query.since
|
2019-09-04 05:18:33 -04:00
|
|
|
|
2021-10-22 08:31:38 -04:00
|
|
|
const filtered = this.indexInstances.filter(i => {
|
|
|
|
if (!since) return true
|
2019-09-04 05:18:33 -04:00
|
|
|
|
2021-10-22 08:31:38 -04:00
|
|
|
return i.createdAt > since
|
2019-09-04 05:18:33 -04:00
|
|
|
})
|
|
|
|
|
2021-10-22 08:31:38 -04:00
|
|
|
return res.json({
|
|
|
|
total: filtered.length,
|
|
|
|
data: filtered
|
|
|
|
})
|
2019-09-04 05:18:33 -04:00
|
|
|
})
|
2021-10-22 08:31:38 -04:00
|
|
|
|
|
|
|
this.server = await randomListen(app)
|
|
|
|
|
|
|
|
return getPort(this.server)
|
2019-09-04 05:18:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
addInstance (host: string) {
|
|
|
|
this.indexInstances.push({ host, createdAt: new Date().toISOString() })
|
|
|
|
}
|
2021-10-14 05:35:43 -04:00
|
|
|
|
|
|
|
terminate () {
|
|
|
|
return terminateServer(this.server)
|
|
|
|
}
|
2019-09-04 05:18:33 -04:00
|
|
|
}
|