PeerTube/shared/extra-utils/mock-servers/mock-plugin-blocklist.ts

37 lines
715 B
TypeScript
Raw Normal View History

2021-08-27 14:32:44 +02:00
import express, { Request, Response } from 'express'
import { Server } from 'http'
2021-10-22 14:31:38 +02:00
import { getPort, randomListen, 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
private server: Server
2020-05-07 16:32:54 +02:00
2021-10-22 14:31:38 +02:00
async initialize () {
const app = express()
2020-05-07 16:32:54 +02:00
2021-10-22 14:31:38 +02:00
app.get('/blocklist', (req: Request, res: Response) => {
return res.json(this.body)
2020-05-07 16:32:54 +02:00
})
2021-10-22 14:31:38 +02:00
this.server = await randomListen(app)
return getPort(this.server)
2020-05-07 16:32:54 +02:00
}
replace (body: BlocklistResponse) {
this.body = body
}
terminate () {
2021-09-06 08:13:11 +02:00
return terminateServer(this.server)
}
2020-05-07 16:32:54 +02:00
}