1
0
Fork 0
peertube/server/tests/shared/mock-servers/mock-instances-index.ts

47 lines
1.1 KiB
TypeScript
Raw Normal View History

2021-08-27 12:32:44 +00:00
import express from 'express'
2021-10-14 09:35:43 +00:00
import { Server } from 'http'
import { getPort, randomListen, terminateServer } from './shared'
export class MockInstancesIndex {
2021-10-14 09:35:43 +00:00
private server: Server
2020-01-31 15:56:52 +00:00
private readonly indexInstances: { host: string, createdAt: string }[] = []
2021-10-22 12:31:38 +00:00
async initialize () {
const app = express()
2021-10-22 12:31:38 +00: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)
2021-10-22 12:31:38 +00:00
return next()
})
2021-10-22 12:31:38 +00:00
app.get('/api/v1/instances/hosts', (req: express.Request, res: express.Response) => {
const since = req.query.since
2021-10-22 12:31:38 +00:00
const filtered = this.indexInstances.filter(i => {
if (!since) return true
2021-10-22 12:31:38 +00:00
return i.createdAt > since
})
2021-10-22 12:31:38 +00:00
return res.json({
total: filtered.length,
data: filtered
})
})
2021-10-22 12:31:38 +00:00
this.server = await randomListen(app)
return getPort(this.server)
}
addInstance (host: string) {
this.indexInstances.push({ host, createdAt: new Date().toISOString() })
}
2021-10-14 09:35:43 +00:00
terminate () {
return terminateServer(this.server)
}
}