aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared
diff options
context:
space:
mode:
Diffstat (limited to 'shared')
-rw-r--r--shared/extra-utils/index.ts1
-rw-r--r--shared/extra-utils/plugins/mock-blocklist.ts28
2 files changed, 29 insertions, 0 deletions
diff --git a/shared/extra-utils/index.ts b/shared/extra-utils/index.ts
index fd8fef5dc..d3f010b20 100644
--- a/shared/extra-utils/index.ts
+++ b/shared/extra-utils/index.ts
@@ -27,3 +27,4 @@ export * from './videos/video-change-ownership'
27export * from './feeds/feeds' 27export * from './feeds/feeds'
28export * from './instances-index/mock-instances-index' 28export * from './instances-index/mock-instances-index'
29export * from './search/videos' 29export * from './search/videos'
30export * from './plugins/mock-blocklist'
diff --git a/shared/extra-utils/plugins/mock-blocklist.ts b/shared/extra-utils/plugins/mock-blocklist.ts
new file mode 100644
index 000000000..ef57d96a8
--- /dev/null
+++ b/shared/extra-utils/plugins/mock-blocklist.ts
@@ -0,0 +1,28 @@
1import * as express from 'express'
2
3type BlocklistResponse = {
4 data: {
5 value: string
6 action?: 'add' | 'remove'
7 }[]
8}
9
10export class MockBlocklist {
11 private body: BlocklistResponse
12
13 initialize () {
14 return new Promise(res => {
15 const app = express()
16
17 app.get('/blocklist', (req: express.Request, res: express.Response) => {
18 return res.json(this.body)
19 })
20
21 app.listen(42100, () => res())
22 })
23 }
24
25 replace (body: BlocklistResponse) {
26 this.body = body
27 }
28}