2021-08-27 14:32:44 +02:00
|
|
|
import express, { Request, Response } from 'express'
|
2020-06-26 14:50:40 +02:00
|
|
|
import { Server } from 'http'
|
2021-06-03 09:06:51 +02:00
|
|
|
import { randomInt } from '@shared/core-utils'
|
2021-09-06 08:13:11 +02:00
|
|
|
import { terminateServer } from './utils'
|
2020-05-07 16:32:54 +02:00
|
|
|
|
|
|
|
type BlocklistResponse = {
|
|
|
|
data: {
|
|
|
|
value: string
|
|
|
|
action?: 'add' | 'remove'
|
2020-05-07 17:08:16 +02:00
|
|
|
updatedAt?: string
|
2020-05-07 16:32:54 +02:00
|
|
|
}[]
|
|
|
|
}
|
|
|
|
|
|
|
|
export class MockBlocklist {
|
|
|
|
private body: BlocklistResponse
|
2020-06-26 14:50:40 +02:00
|
|
|
private server: Server
|
2020-05-07 16:32:54 +02:00
|
|
|
|
|
|
|
initialize () {
|
2021-06-03 09:06:51 +02:00
|
|
|
return new Promise<number>(res => {
|
2020-05-07 16:32:54 +02:00
|
|
|
const app = express()
|
|
|
|
|
2021-08-27 14:32:44 +02:00
|
|
|
app.get('/blocklist', (req: Request, res: Response) => {
|
2020-05-07 16:32:54 +02:00
|
|
|
return res.json(this.body)
|
|
|
|
})
|
|
|
|
|
2021-06-03 09:06:51 +02:00
|
|
|
const port = 42201 + randomInt(1, 100)
|
|
|
|
this.server = app.listen(port, () => res(port))
|
2020-05-07 16:32:54 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
replace (body: BlocklistResponse) {
|
|
|
|
this.body = body
|
|
|
|
}
|
2020-06-26 14:50:40 +02:00
|
|
|
|
|
|
|
terminate () {
|
2021-09-06 08:13:11 +02:00
|
|
|
return terminateServer(this.server)
|
2020-06-26 14:50:40 +02:00
|
|
|
}
|
2020-05-07 16:32:54 +02:00
|
|
|
}
|