]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/plugins/plugin-helpers.ts
Add scale filter to documentation
[github/Chocobozzz/PeerTube.git] / server / tests / plugins / plugin-helpers.ts
CommitLineData
1b05d82d
C
1/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2
1b05d82d 3import 'mocha'
ab3ead3a
C
4import {
5 checkVideoFilesWereRemoved,
80fdaf06 6 doubleFollow,
ab3ead3a
C
7 getPluginTestPath,
8 getVideo,
9 installPlugin,
80fdaf06 10 makePostBodyRequest,
ab3ead3a
C
11 setAccessTokensToServers,
12 uploadVideoAndGetId,
80fdaf06
C
13 viewVideo,
14 getVideosList,
22820226
C
15 waitJobs,
16 makeGetRequest
ab3ead3a 17} from '../../../shared/extra-utils'
80fdaf06
C
18import { cleanupTests, flushAndRunMultipleServers, ServerInfo, waitUntilLog } from '../../../shared/extra-utils/server/servers'
19import { expect } from 'chai'
2d53be02 20import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes'
80fdaf06
C
21
22function postCommand (server: ServerInfo, command: string, bodyArg?: object) {
23 const body = { command }
24 if (bodyArg) Object.assign(body, bodyArg)
25
26 return makePostBodyRequest({
27 url: server.url,
28 path: '/plugins/test-four/router/commander',
29 fields: body,
2d53be02 30 statusCodeExpected: HttpStatusCode.NO_CONTENT_204
80fdaf06
C
31 })
32}
1b05d82d
C
33
34describe('Test plugin helpers', function () {
80fdaf06 35 let servers: ServerInfo[]
1b05d82d
C
36
37 before(async function () {
80fdaf06
C
38 this.timeout(60000)
39
40 servers = await flushAndRunMultipleServers(2)
41 await setAccessTokensToServers(servers)
1b05d82d 42
80fdaf06 43 await doubleFollow(servers[0], servers[1])
1b05d82d
C
44
45 await installPlugin({
80fdaf06
C
46 url: servers[0].url,
47 accessToken: servers[0].accessToken,
1b05d82d
C
48 path: getPluginTestPath('-four')
49 })
50 })
51
80fdaf06
C
52 describe('Logger', function () {
53
54 it('Should have logged things', async function () {
55 await waitUntilLog(servers[0], 'localhost:' + servers[0].port + ' peertube-plugin-test-four', 1, false)
56 await waitUntilLog(servers[0], 'Hello world from plugin four', 1)
57 })
1b05d82d
C
58 })
59
80fdaf06
C
60 describe('Database', function () {
61
62 it('Should have made a query', async function () {
63 await waitUntilLog(servers[0], `root email is admin${servers[0].internalServerNumber}@example.com`)
64 })
65 })
66
67 describe('Config', function () {
68
69 it('Should have the correct webserver url', async function () {
70 await waitUntilLog(servers[0], `server url is http://localhost:${servers[0].port}`)
71 })
22820226
C
72
73 it('Should have the correct config', async function () {
74 const res = await makeGetRequest({
75 url: servers[0].url,
76 path: '/plugins/test-four/router/server-config',
77 statusCodeExpected: HttpStatusCode.OK_200
78 })
79
80 expect(res.body.serverConfig).to.exist
81 expect(res.body.serverConfig.instance.name).to.equal('PeerTube')
82 })
80fdaf06
C
83 })
84
85 describe('Server', function () {
86
87 it('Should get the server actor', async function () {
88 await waitUntilLog(servers[0], 'server actor name is peertube')
89 })
90 })
91
22820226
C
92 describe('Plugin', function () {
93
94 it('Should get the base static route', async function () {
95 const res = await makeGetRequest({
96 url: servers[0].url,
97 path: '/plugins/test-four/router/static-route',
98 statusCodeExpected: HttpStatusCode.OK_200
99 })
100
101 expect(res.body.staticRoute).to.equal('/plugins/test-four/0.0.1/static/')
102 })
103 })
104
80fdaf06
C
105 describe('Moderation', function () {
106 let videoUUIDServer1: string
107
108 before(async function () {
c655c9ef 109 this.timeout(30000)
80fdaf06
C
110
111 {
112 const res = await uploadVideoAndGetId({ server: servers[0], videoName: 'video server 1' })
113 videoUUIDServer1 = res.uuid
114 }
115
116 {
117 await uploadVideoAndGetId({ server: servers[1], videoName: 'video server 2' })
118 }
119
120 await waitJobs(servers)
121
122 const res = await getVideosList(servers[0].url)
123 const videos = res.body.data
124
125 expect(videos).to.have.lengthOf(2)
126 })
127
128 it('Should mute server 2', async function () {
129 this.timeout(10000)
130 await postCommand(servers[0], 'blockServer', { hostToBlock: `localhost:${servers[1].port}` })
131
132 const res = await getVideosList(servers[0].url)
133 const videos = res.body.data
134
135 expect(videos).to.have.lengthOf(1)
136 expect(videos[0].name).to.equal('video server 1')
137 })
138
139 it('Should unmute server 2', async function () {
140 await postCommand(servers[0], 'unblockServer', { hostToUnblock: `localhost:${servers[1].port}` })
141
142 const res = await getVideosList(servers[0].url)
143 const videos = res.body.data
144
145 expect(videos).to.have.lengthOf(2)
146 })
147
148 it('Should mute account of server 2', async function () {
149 await postCommand(servers[0], 'blockAccount', { handleToBlock: `root@localhost:${servers[1].port}` })
150
151 const res = await getVideosList(servers[0].url)
152 const videos = res.body.data
153
154 expect(videos).to.have.lengthOf(1)
155 expect(videos[0].name).to.equal('video server 1')
156 })
157
158 it('Should unmute account of server 2', async function () {
159 await postCommand(servers[0], 'unblockAccount', { handleToUnblock: `root@localhost:${servers[1].port}` })
160
161 const res = await getVideosList(servers[0].url)
162 const videos = res.body.data
163
164 expect(videos).to.have.lengthOf(2)
165 })
166
167 it('Should blacklist video', async function () {
168 this.timeout(10000)
169
170 await postCommand(servers[0], 'blacklist', { videoUUID: videoUUIDServer1, unfederate: true })
171
172 await waitJobs(servers)
173
174 for (const server of servers) {
175 const res = await getVideosList(server.url)
176 const videos = res.body.data
177
178 expect(videos).to.have.lengthOf(1)
179 expect(videos[0].name).to.equal('video server 2')
180 }
181 })
182
183 it('Should unblacklist video', async function () {
184 this.timeout(10000)
185
186 await postCommand(servers[0], 'unblacklist', { videoUUID: videoUUIDServer1 })
187
188 await waitJobs(servers)
189
190 for (const server of servers) {
191 const res = await getVideosList(server.url)
192 const videos = res.body.data
193
194 expect(videos).to.have.lengthOf(2)
195 }
196 })
1b05d82d
C
197 })
198
80fdaf06
C
199 describe('Videos', function () {
200 let videoUUID: string
201
202 before(async () => {
203 const res = await uploadVideoAndGetId({ server: servers[0], videoName: 'video1' })
204 videoUUID = res.uuid
205 })
ab3ead3a 206
80fdaf06 207 it('Should remove a video after a view', async function () {
59fd824c 208 this.timeout(40000)
ab3ead3a 209
80fdaf06
C
210 // Should not throw -> video exists
211 await getVideo(servers[0].url, videoUUID)
212 // Should delete the video
213 await viewVideo(servers[0].url, videoUUID)
ab3ead3a 214
80fdaf06 215 await waitUntilLog(servers[0], 'Video deleted by plugin four.')
ab3ead3a 216
80fdaf06
C
217 try {
218 // Should throw because the video should have been deleted
219 await getVideo(servers[0].url, videoUUID)
220 throw new Error('Video exists')
221 } catch (err) {
222 if (err.message.includes('exists')) throw err
223 }
ab3ead3a 224
80fdaf06
C
225 await checkVideoFilesWereRemoved(videoUUID, servers[0].internalServerNumber)
226 })
227
228 it('Should have fetched the video by URL', async function () {
229 await waitUntilLog(servers[0], `video from DB uuid is ${videoUUID}`)
230 })
ab3ead3a
C
231 })
232
1b05d82d 233 after(async function () {
80fdaf06 234 await cleanupTests(servers)
1b05d82d
C
235 })
236})