]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/plugins/plugin-helpers.ts
Add job queue hooks
[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'
ae2abfd3 4import { expect } from 'chai'
2e9c7877 5import { pathExists } from 'fs-extra'
c55e3d72 6import { HttpStatusCode, ThumbnailType } from '@shared/models'
ab3ead3a 7import {
ae2abfd3 8 cleanupTests,
254d3579 9 createMultipleServers,
4c7e60bc 10 doubleFollow,
ae2abfd3 11 makeGetRequest,
80fdaf06 12 makePostBodyRequest,
2e9c7877 13 makeRawRequest,
254d3579 14 PeerTubeServer,
4c7e60bc 15 PluginsCommand,
ab3ead3a 16 setAccessTokensToServers,
6c5065a0 17 waitJobs
bf54587a 18} from '@shared/server-commands'
c55e3d72 19import { checkVideoFilesWereRemoved } from '../shared'
80fdaf06 20
254d3579 21function postCommand (server: PeerTubeServer, command: string, bodyArg?: object) {
80fdaf06
C
22 const body = { command }
23 if (bodyArg) Object.assign(body, bodyArg)
24
25 return makePostBodyRequest({
26 url: server.url,
27 path: '/plugins/test-four/router/commander',
28 fields: body,
c0e8b12e 29 expectedStatus: HttpStatusCode.NO_CONTENT_204
80fdaf06
C
30 })
31}
1b05d82d
C
32
33describe('Test plugin helpers', function () {
254d3579 34 let servers: PeerTubeServer[]
1b05d82d
C
35
36 before(async function () {
80fdaf06
C
37 this.timeout(60000)
38
254d3579 39 servers = await createMultipleServers(2)
80fdaf06 40 await setAccessTokensToServers(servers)
1b05d82d 41
80fdaf06 42 await doubleFollow(servers[0], servers[1])
1b05d82d 43
89d241a7 44 await servers[0].plugins.install({ path: PluginsCommand.getPluginTestPath('-four') })
1b05d82d
C
45 })
46
80fdaf06
C
47 describe('Logger', function () {
48
49 it('Should have logged things', async function () {
89d241a7
C
50 await servers[0].servers.waitUntilLog('localhost:' + servers[0].port + ' peertube-plugin-test-four', 1, false)
51 await servers[0].servers.waitUntilLog('Hello world from plugin four', 1)
80fdaf06 52 })
1b05d82d
C
53 })
54
80fdaf06
C
55 describe('Database', function () {
56
57 it('Should have made a query', async function () {
89d241a7 58 await servers[0].servers.waitUntilLog(`root email is admin${servers[0].internalServerNumber}@example.com`)
80fdaf06
C
59 })
60 })
61
62 describe('Config', function () {
63
64 it('Should have the correct webserver url', async function () {
89d241a7 65 await servers[0].servers.waitUntilLog(`server url is http://localhost:${servers[0].port}`)
80fdaf06 66 })
22820226
C
67
68 it('Should have the correct config', async function () {
69 const res = await makeGetRequest({
70 url: servers[0].url,
71 path: '/plugins/test-four/router/server-config',
c0e8b12e 72 expectedStatus: HttpStatusCode.OK_200
22820226
C
73 })
74
75 expect(res.body.serverConfig).to.exist
76 expect(res.body.serverConfig.instance.name).to.equal('PeerTube')
77 })
80fdaf06
C
78 })
79
80 describe('Server', function () {
81
82 it('Should get the server actor', async function () {
89d241a7 83 await servers[0].servers.waitUntilLog('server actor name is peertube')
80fdaf06
C
84 })
85 })
86
22820226
C
87 describe('Plugin', function () {
88
89 it('Should get the base static route', async function () {
90 const res = await makeGetRequest({
91 url: servers[0].url,
92 path: '/plugins/test-four/router/static-route',
c0e8b12e 93 expectedStatus: HttpStatusCode.OK_200
22820226
C
94 })
95
96 expect(res.body.staticRoute).to.equal('/plugins/test-four/0.0.1/static/')
97 })
302eba0d
C
98
99 it('Should get the base static route', async function () {
100 const baseRouter = '/plugins/test-four/0.0.1/router/'
101
102 const res = await makeGetRequest({
103 url: servers[0].url,
104 path: baseRouter + 'router-route',
c0e8b12e 105 expectedStatus: HttpStatusCode.OK_200
302eba0d
C
106 })
107
108 expect(res.body.routerRoute).to.equal(baseRouter)
109 })
110 })
111
112 describe('User', function () {
22df69fd 113 let rootId: number
302eba0d
C
114
115 it('Should not get a user if not authenticated', async function () {
62906990 116 await makeGetRequest({
302eba0d
C
117 url: servers[0].url,
118 path: '/plugins/test-four/router/user',
c0e8b12e 119 expectedStatus: HttpStatusCode.NOT_FOUND_404
302eba0d 120 })
302eba0d
C
121 })
122
123 it('Should get a user if authenticated', async function () {
124 const res = await makeGetRequest({
125 url: servers[0].url,
126 token: servers[0].accessToken,
127 path: '/plugins/test-four/router/user',
c0e8b12e 128 expectedStatus: HttpStatusCode.OK_200
302eba0d
C
129 })
130
302eba0d 131 expect(res.body.username).to.equal('root')
b31d7262 132 expect(res.body.displayName).to.equal('root')
302eba0d
C
133 expect(res.body.isAdmin).to.be.true
134 expect(res.body.isModerator).to.be.false
135 expect(res.body.isUser).to.be.false
22df69fd
C
136
137 rootId = res.body.id
138 })
139
140 it('Should load a user by id', async function () {
141 {
142 const res = await makeGetRequest({
143 url: servers[0].url,
144 path: '/plugins/test-four/router/user/' + rootId,
145 expectedStatus: HttpStatusCode.OK_200
146 })
147
148 expect(res.body.username).to.equal('root')
149 }
150
151 {
152 await makeGetRequest({
153 url: servers[0].url,
154 path: '/plugins/test-four/router/user/42',
155 expectedStatus: HttpStatusCode.NOT_FOUND_404
156 })
157 }
302eba0d 158 })
22820226
C
159 })
160
80fdaf06
C
161 describe('Moderation', function () {
162 let videoUUIDServer1: string
163
164 before(async function () {
75e12406 165 this.timeout(60000)
80fdaf06
C
166
167 {
c0e8b12e 168 const res = await servers[0].videos.quickUpload({ name: 'video server 1' })
80fdaf06
C
169 videoUUIDServer1 = res.uuid
170 }
171
172 {
c0e8b12e 173 await servers[1].videos.quickUpload({ name: 'video server 2' })
80fdaf06
C
174 }
175
176 await waitJobs(servers)
177
89d241a7 178 const { data } = await servers[0].videos.list()
80fdaf06 179
d23dd9fb 180 expect(data).to.have.lengthOf(2)
80fdaf06
C
181 })
182
183 it('Should mute server 2', async function () {
184 this.timeout(10000)
185 await postCommand(servers[0], 'blockServer', { hostToBlock: `localhost:${servers[1].port}` })
186
89d241a7 187 const { data } = await servers[0].videos.list()
80fdaf06 188
d23dd9fb
C
189 expect(data).to.have.lengthOf(1)
190 expect(data[0].name).to.equal('video server 1')
80fdaf06
C
191 })
192
193 it('Should unmute server 2', async function () {
194 await postCommand(servers[0], 'unblockServer', { hostToUnblock: `localhost:${servers[1].port}` })
195
89d241a7 196 const { data } = await servers[0].videos.list()
80fdaf06 197
d23dd9fb 198 expect(data).to.have.lengthOf(2)
80fdaf06
C
199 })
200
201 it('Should mute account of server 2', async function () {
202 await postCommand(servers[0], 'blockAccount', { handleToBlock: `root@localhost:${servers[1].port}` })
203
89d241a7 204 const { data } = await servers[0].videos.list()
80fdaf06 205
d23dd9fb
C
206 expect(data).to.have.lengthOf(1)
207 expect(data[0].name).to.equal('video server 1')
80fdaf06
C
208 })
209
210 it('Should unmute account of server 2', async function () {
211 await postCommand(servers[0], 'unblockAccount', { handleToUnblock: `root@localhost:${servers[1].port}` })
212
89d241a7 213 const { data } = await servers[0].videos.list()
80fdaf06 214
d23dd9fb 215 expect(data).to.have.lengthOf(2)
80fdaf06
C
216 })
217
218 it('Should blacklist video', async function () {
219 this.timeout(10000)
220
221 await postCommand(servers[0], 'blacklist', { videoUUID: videoUUIDServer1, unfederate: true })
222
223 await waitJobs(servers)
224
225 for (const server of servers) {
89d241a7 226 const { data } = await server.videos.list()
80fdaf06 227
d23dd9fb
C
228 expect(data).to.have.lengthOf(1)
229 expect(data[0].name).to.equal('video server 2')
80fdaf06
C
230 }
231 })
232
233 it('Should unblacklist video', async function () {
234 this.timeout(10000)
235
236 await postCommand(servers[0], 'unblacklist', { videoUUID: videoUUIDServer1 })
237
238 await waitJobs(servers)
239
240 for (const server of servers) {
89d241a7 241 const { data } = await server.videos.list()
80fdaf06 242
d23dd9fb 243 expect(data).to.have.lengthOf(2)
80fdaf06
C
244 }
245 })
1b05d82d
C
246 })
247
80fdaf06
C
248 describe('Videos', function () {
249 let videoUUID: string
754c52b9 250 let videoPath: string
80fdaf06
C
251
252 before(async () => {
2e9c7877
C
253 this.timeout(240000)
254
255 await servers[0].config.enableTranscoding()
256
c0e8b12e 257 const res = await servers[0].videos.quickUpload({ name: 'video1' })
80fdaf06 258 videoUUID = res.uuid
2e9c7877
C
259
260 await waitJobs(servers)
261 })
262
263 it('Should get video files', async function () {
264 const { body } = await makeGetRequest({
265 url: servers[0].url,
266 path: '/plugins/test-four/router/video-files/' + videoUUID,
267 expectedStatus: HttpStatusCode.OK_200
268 })
269
270 // Video files check
271 {
272 expect(body.webtorrent.videoFiles).to.be.an('array')
273 expect(body.hls.videoFiles).to.be.an('array')
274
275 for (const resolution of [ 144, 240, 360, 480, 720 ]) {
276 for (const files of [ body.webtorrent.videoFiles, body.hls.videoFiles ]) {
277 const file = files.find(f => f.resolution === resolution)
278 expect(file).to.exist
279
280 expect(file.size).to.be.a('number')
281 expect(file.fps).to.equal(25)
282
283 expect(await pathExists(file.path)).to.be.true
284 await makeRawRequest(file.url, HttpStatusCode.OK_200)
285 }
286 }
754c52b9
C
287
288 videoPath = body.webtorrent.videoFiles[0].path
2e9c7877
C
289 }
290
291 // Thumbnails check
292 {
293 expect(body.thumbnails).to.be.an('array')
294
295 const miniature = body.thumbnails.find(t => t.type === ThumbnailType.MINIATURE)
296 expect(miniature).to.exist
297 expect(await pathExists(miniature.path)).to.be.true
298 await makeRawRequest(miniature.url, HttpStatusCode.OK_200)
299
300 const preview = body.thumbnails.find(t => t.type === ThumbnailType.PREVIEW)
301 expect(preview).to.exist
302 expect(await pathExists(preview.path)).to.be.true
303 await makeRawRequest(preview.url, HttpStatusCode.OK_200)
304 }
80fdaf06 305 })
ab3ead3a 306
754c52b9
C
307 it('Should probe a file', async function () {
308 const { body } = await makeGetRequest({
309 url: servers[0].url,
310 path: '/plugins/test-four/router/ffprobe',
311 query: {
312 path: videoPath
313 },
314 expectedStatus: HttpStatusCode.OK_200
315 })
316
317 expect(body.streams).to.be.an('array')
318 expect(body.streams).to.have.lengthOf(2)
319 })
320
80fdaf06 321 it('Should remove a video after a view', async function () {
59fd824c 322 this.timeout(40000)
ab3ead3a 323
80fdaf06 324 // Should not throw -> video exists
83903cb6 325 const video = await servers[0].videos.get({ id: videoUUID })
80fdaf06 326 // Should delete the video
b2111066 327 await servers[0].views.simulateView({ id: videoUUID })
ab3ead3a 328
89d241a7 329 await servers[0].servers.waitUntilLog('Video deleted by plugin four.')
ab3ead3a 330
80fdaf06
C
331 try {
332 // Should throw because the video should have been deleted
89d241a7 333 await servers[0].videos.get({ id: videoUUID })
80fdaf06
C
334 throw new Error('Video exists')
335 } catch (err) {
336 if (err.message.includes('exists')) throw err
337 }
ab3ead3a 338
83903cb6 339 await checkVideoFilesWereRemoved({ server: servers[0], video })
80fdaf06
C
340 })
341
342 it('Should have fetched the video by URL', async function () {
89d241a7 343 await servers[0].servers.waitUntilLog(`video from DB uuid is ${videoUUID}`)
80fdaf06 344 })
ab3ead3a
C
345 })
346
1b05d82d 347 after(async function () {
80fdaf06 348 await cleanupTests(servers)
1b05d82d
C
349 })
350})