aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/shared/mock-servers/mock-instances-index.ts
blob: 598b007f12f984da7bc74cb5fffaec7ab8d7758a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import express from 'express'
import { Server } from 'http'
import { getPort, randomListen, terminateServer } from './shared'

export class MockInstancesIndex {
  private server: Server

  private readonly indexInstances: { host: string, createdAt: string }[] = []

  async initialize () {
    const app = express()

    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)

      return next()
    })

    app.get('/api/v1/instances/hosts', (req: express.Request, res: express.Response) => {
      const since = req.query.since

      const filtered = this.indexInstances.filter(i => {
        if (!since) return true

        return i.createdAt > since
      })

      return res.json({
        total: filtered.length,
        data: filtered
      })
    })

    this.server = await randomListen(app)

    return getPort(this.server)
  }

  addInstance (host: string) {
    this.indexInstances.push({ host, createdAt: new Date().toISOString() })
  }

  terminate () {
    return terminateServer(this.server)
  }
}