]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/plugins/filter-hooks.ts
Reorganize imports
[github/Chocobozzz/PeerTube.git] / server / tests / plugins / filter-hooks.ts
CommitLineData
a1587156 1/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
9b474844 2
9b474844 3import 'mocha'
2158ac90 4import * as chai from 'chai'
89cd1275 5import {
af971e06 6 cleanupTests,
254d3579 7 createMultipleServers,
59bbcced
C
8 doubleFollow,
9 FIXTURE_URLS,
4bc45da3 10 makeRawRequest,
254d3579 11 PeerTubeServer,
59bbcced 12 PluginsCommand,
a1587156 13 setAccessTokensToServers,
6691c522 14 setDefaultVideoChannel,
6c5065a0 15 waitJobs
af971e06 16} from '@shared/extra-utils'
4c7e60bc 17import { HttpStatusCode, VideoDetails, VideoImportState, VideoPlaylist, VideoPlaylistPrivacy, VideoPrivacy } from '@shared/models'
9b474844
C
18
19const expect = chai.expect
20
21describe('Test plugin filter hooks', function () {
254d3579 22 let servers: PeerTubeServer[]
89cd1275
C
23 let videoUUID: string
24 let threadId: number
9b474844
C
25
26 before(async function () {
4076e2ef 27 this.timeout(60000)
9b474844 28
254d3579 29 servers = await createMultipleServers(2)
89cd1275 30 await setAccessTokensToServers(servers)
6691c522
C
31 await setDefaultVideoChannel(servers)
32 await doubleFollow(servers[0], servers[1])
89cd1275 33
89d241a7
C
34 await servers[0].plugins.install({ path: PluginsCommand.getPluginTestPath() })
35 await servers[0].plugins.install({ path: PluginsCommand.getPluginTestPath('-filter-translations') })
89cd1275
C
36
37 for (let i = 0; i < 10; i++) {
89d241a7 38 await servers[0].videos.upload({ attributes: { name: 'default video ' + i } })
89cd1275
C
39 }
40
89d241a7 41 const { data } = await servers[0].videos.list()
d23dd9fb 42 videoUUID = data[0].uuid
3cabf353 43
89d241a7 44 await servers[0].config.updateCustomSubConfig({
65e6e260
C
45 newConfig: {
46 live: { enabled: true },
47 signup: { enabled: true },
48 import: {
49 videos: {
50 http: { enabled: true },
51 torrent: { enabled: true }
52 }
3cabf353
C
53 }
54 }
55 })
9b474844
C
56 })
57
6691c522 58 it('Should run filter:api.videos.list.params', async function () {
89d241a7 59 const { data } = await servers[0].videos.list({ start: 0, count: 2 })
89cd1275
C
60
61 // 2 plugins do +1 to the count parameter
d23dd9fb 62 expect(data).to.have.lengthOf(4)
89cd1275
C
63 })
64
65 it('Should run filter:api.videos.list.result', async function () {
89d241a7 66 const { total } = await servers[0].videos.list({ start: 0, count: 0 })
89cd1275
C
67
68 // Plugin do +1 to the total result
d23dd9fb 69 expect(total).to.equal(11)
89cd1275
C
70 })
71
38267c0c 72 it('Should run filter:api.accounts.videos.list.params', async function () {
c0e8b12e 73 const { data } = await servers[0].videos.listByAccount({ handle: 'root', start: 0, count: 2 })
38267c0c
C
74
75 // 1 plugin do +1 to the count parameter
d23dd9fb 76 expect(data).to.have.lengthOf(3)
38267c0c
C
77 })
78
79 it('Should run filter:api.accounts.videos.list.result', async function () {
c0e8b12e 80 const { total } = await servers[0].videos.listByAccount({ handle: 'root', start: 0, count: 2 })
38267c0c
C
81
82 // Plugin do +2 to the total result
d23dd9fb 83 expect(total).to.equal(12)
38267c0c
C
84 })
85
86 it('Should run filter:api.video-channels.videos.list.params', async function () {
c0e8b12e 87 const { data } = await servers[0].videos.listByChannel({ handle: 'root_channel', start: 0, count: 2 })
38267c0c
C
88
89 // 1 plugin do +3 to the count parameter
d23dd9fb 90 expect(data).to.have.lengthOf(5)
38267c0c
C
91 })
92
93 it('Should run filter:api.video-channels.videos.list.result', async function () {
c0e8b12e 94 const { total } = await servers[0].videos.listByChannel({ handle: 'root_channel', start: 0, count: 2 })
38267c0c
C
95
96 // Plugin do +3 to the total result
d23dd9fb 97 expect(total).to.equal(13)
38267c0c
C
98 })
99
a4d2ca07 100 it('Should run filter:api.user.me.videos.list.params', async function () {
89d241a7 101 const { data } = await servers[0].videos.listMyVideos({ start: 0, count: 2 })
a4d2ca07
C
102
103 // 1 plugin do +4 to the count parameter
d23dd9fb 104 expect(data).to.have.lengthOf(6)
a4d2ca07
C
105 })
106
107 it('Should run filter:api.user.me.videos.list.result', async function () {
89d241a7 108 const { total } = await servers[0].videos.listMyVideos({ start: 0, count: 2 })
a4d2ca07
C
109
110 // Plugin do +4 to the total result
d23dd9fb 111 expect(total).to.equal(14)
a4d2ca07
C
112 })
113
89cd1275 114 it('Should run filter:api.video.get.result', async function () {
89d241a7 115 const video = await servers[0].videos.get({ id: videoUUID })
d23dd9fb 116 expect(video.name).to.contain('<3')
9b474844
C
117 })
118
6691c522 119 it('Should run filter:api.video.upload.accept.result', async function () {
89d241a7 120 await servers[0].videos.upload({ attributes: { name: 'video with bad word' }, expectedStatus: HttpStatusCode.FORBIDDEN_403 })
6691c522
C
121 })
122
3cabf353
C
123 it('Should run filter:api.live-video.create.accept.result', async function () {
124 const attributes = {
125 name: 'video with bad word',
126 privacy: VideoPrivacy.PUBLIC,
89d241a7 127 channelId: servers[0].store.channel.id
3cabf353
C
128 }
129
89d241a7 130 await servers[0].live.create({ fields: attributes, expectedStatus: HttpStatusCode.FORBIDDEN_403 })
3cabf353
C
131 })
132
2158ac90 133 it('Should run filter:api.video.pre-import-url.accept.result', async function () {
6910f20f 134 const attributes = {
2158ac90
RK
135 name: 'normal title',
136 privacy: VideoPrivacy.PUBLIC,
89d241a7 137 channelId: servers[0].store.channel.id,
59bbcced 138 targetUrl: FIXTURE_URLS.goodVideo + 'bad'
2158ac90 139 }
89d241a7 140 await servers[0].imports.importVideo({ attributes, expectedStatus: HttpStatusCode.FORBIDDEN_403 })
2158ac90
RK
141 })
142
143 it('Should run filter:api.video.pre-import-torrent.accept.result', async function () {
6910f20f 144 const attributes = {
2158ac90
RK
145 name: 'bad torrent',
146 privacy: VideoPrivacy.PUBLIC,
89d241a7 147 channelId: servers[0].store.channel.id,
2158ac90
RK
148 torrentfile: 'video-720p.torrent' as any
149 }
89d241a7 150 await servers[0].imports.importVideo({ attributes, expectedStatus: HttpStatusCode.FORBIDDEN_403 })
2158ac90
RK
151 })
152
153 it('Should run filter:api.video.post-import-url.accept.result', async function () {
154 this.timeout(60000)
155
156 let videoImportId: number
157
158 {
6910f20f 159 const attributes = {
2158ac90
RK
160 name: 'title with bad word',
161 privacy: VideoPrivacy.PUBLIC,
89d241a7 162 channelId: servers[0].store.channel.id,
59bbcced 163 targetUrl: FIXTURE_URLS.goodVideo
2158ac90 164 }
89d241a7 165 const body = await servers[0].imports.importVideo({ attributes })
6910f20f 166 videoImportId = body.id
2158ac90
RK
167 }
168
169 await waitJobs(servers)
170
171 {
89d241a7 172 const body = await servers[0].imports.getMyVideoImports()
6910f20f 173 const videoImports = body.data
2158ac90
RK
174
175 const videoImport = videoImports.find(i => i.id === videoImportId)
176
177 expect(videoImport.state.id).to.equal(VideoImportState.REJECTED)
178 expect(videoImport.state.label).to.equal('Rejected')
179 }
180 })
181
182 it('Should run filter:api.video.post-import-torrent.accept.result', async function () {
183 this.timeout(60000)
184
185 let videoImportId: number
186
187 {
6910f20f 188 const attributes = {
2158ac90
RK
189 name: 'title with bad word',
190 privacy: VideoPrivacy.PUBLIC,
89d241a7 191 channelId: servers[0].store.channel.id,
2158ac90
RK
192 torrentfile: 'video-720p.torrent' as any
193 }
89d241a7 194 const body = await servers[0].imports.importVideo({ attributes })
6910f20f 195 videoImportId = body.id
2158ac90
RK
196 }
197
198 await waitJobs(servers)
199
200 {
89d241a7 201 const { data: videoImports } = await servers[0].imports.getMyVideoImports()
2158ac90
RK
202
203 const videoImport = videoImports.find(i => i.id === videoImportId)
204
205 expect(videoImport.state.id).to.equal(VideoImportState.REJECTED)
206 expect(videoImport.state.label).to.equal('Rejected')
207 }
208 })
209
6691c522 210 it('Should run filter:api.video-thread.create.accept.result', async function () {
89d241a7 211 await servers[0].comments.createThread({
12edc149
C
212 videoId: videoUUID,
213 text: 'comment with bad word',
214 expectedStatus: HttpStatusCode.FORBIDDEN_403
215 })
6691c522
C
216 })
217
218 it('Should run filter:api.video-comment-reply.create.accept.result', async function () {
89d241a7 219 const created = await servers[0].comments.createThread({ videoId: videoUUID, text: 'thread' })
12edc149
C
220 threadId = created.id
221
89d241a7 222 await servers[0].comments.addReply({
12edc149
C
223 videoId: videoUUID,
224 toCommentId: threadId,
225 text: 'comment with bad word',
226 expectedStatus: HttpStatusCode.FORBIDDEN_403
227 })
89d241a7 228 await servers[0].comments.addReply({
12edc149
C
229 videoId: videoUUID,
230 toCommentId: threadId,
231 text: 'comment with good word',
232 expectedStatus: HttpStatusCode.OK_200
233 })
6691c522
C
234 })
235
236 it('Should run filter:api.video-threads.list.params', async function () {
89d241a7 237 const { data } = await servers[0].comments.listThreads({ videoId: videoUUID, start: 0, count: 0 })
6691c522
C
238
239 // our plugin do +1 to the count parameter
12edc149 240 expect(data).to.have.lengthOf(1)
6691c522
C
241 })
242
243 it('Should run filter:api.video-threads.list.result', async function () {
89d241a7 244 const { total } = await servers[0].comments.listThreads({ videoId: videoUUID, start: 0, count: 0 })
6691c522
C
245
246 // Plugin do +1 to the total result
12edc149 247 expect(total).to.equal(2)
6691c522
C
248 })
249
250 it('Should run filter:api.video-thread-comments.list.params')
251
252 it('Should run filter:api.video-thread-comments.list.result', async function () {
89d241a7 253 const thread = await servers[0].comments.getThread({ videoId: videoUUID, threadId })
6691c522 254
6691c522
C
255 expect(thread.comment.text.endsWith(' <3')).to.be.true
256 })
257
258 describe('Should run filter:video.auto-blacklist.result', function () {
259
6910f20f 260 async function checkIsBlacklisted (id: number | string, value: boolean) {
89d241a7 261 const video = await servers[0].videos.getWithToken({ id })
6691c522
C
262 expect(video.blacklisted).to.equal(value)
263 }
264
265 it('Should blacklist on upload', async function () {
89d241a7 266 const { uuid } = await servers[0].videos.upload({ attributes: { name: 'video please blacklist me' } })
d23dd9fb 267 await checkIsBlacklisted(uuid, true)
6691c522
C
268 })
269
270 it('Should blacklist on import', async function () {
89566f77
C
271 this.timeout(15000)
272
6691c522
C
273 const attributes = {
274 name: 'video please blacklist me',
59bbcced 275 targetUrl: FIXTURE_URLS.goodVideo,
89d241a7 276 channelId: servers[0].store.channel.id
6691c522 277 }
89d241a7 278 const body = await servers[0].imports.importVideo({ attributes })
6910f20f 279 await checkIsBlacklisted(body.video.uuid, true)
6691c522
C
280 })
281
282 it('Should blacklist on update', async function () {
89d241a7 283 const { uuid } = await servers[0].videos.upload({ attributes: { name: 'video' } })
d23dd9fb 284 await checkIsBlacklisted(uuid, false)
6691c522 285
89d241a7 286 await servers[0].videos.update({ id: uuid, attributes: { name: 'please blacklist me' } })
d23dd9fb 287 await checkIsBlacklisted(uuid, true)
6691c522
C
288 })
289
290 it('Should blacklist on remote upload', async function () {
3d470a53 291 this.timeout(120000)
6691c522 292
89d241a7 293 const { uuid } = await servers[1].videos.upload({ attributes: { name: 'remote please blacklist me' } })
6691c522
C
294 await waitJobs(servers)
295
d23dd9fb 296 await checkIsBlacklisted(uuid, true)
6691c522
C
297 })
298
299 it('Should blacklist on remote update', async function () {
3d470a53 300 this.timeout(120000)
6691c522 301
89d241a7 302 const { uuid } = await servers[1].videos.upload({ attributes: { name: 'video' } })
6691c522
C
303 await waitJobs(servers)
304
d23dd9fb 305 await checkIsBlacklisted(uuid, false)
6691c522 306
89d241a7 307 await servers[1].videos.update({ id: uuid, attributes: { name: 'please blacklist me' } })
6691c522
C
308 await waitJobs(servers)
309
d23dd9fb 310 await checkIsBlacklisted(uuid, true)
6691c522
C
311 })
312 })
313
4ce7eb71
C
314 describe('Should run filter:api.user.signup.allowed.result', function () {
315
316 it('Should run on config endpoint', async function () {
89d241a7 317 const body = await servers[0].config.getConfig()
65e6e260 318 expect(body.signup.allowed).to.be.true
4ce7eb71
C
319 })
320
321 it('Should allow a signup', async function () {
89d241a7 322 await servers[0].users.register({ username: 'john', password: 'password' })
4ce7eb71
C
323 })
324
325 it('Should not allow a signup', async function () {
89d241a7 326 const res = await servers[0].users.register({
7926c5f9
C
327 username: 'jma',
328 password: 'password',
329 expectedStatus: HttpStatusCode.FORBIDDEN_403
330 })
4ce7eb71
C
331
332 expect(res.body.error).to.equal('No jma')
333 })
334 })
335
4bc45da3
C
336 describe('Download hooks', function () {
337 const downloadVideos: VideoDetails[] = []
338
339 before(async function () {
c4244cfd 340 this.timeout(120000)
4bc45da3 341
89d241a7 342 await servers[0].config.updateCustomSubConfig({
65e6e260
C
343 newConfig: {
344 transcoding: {
345 webtorrent: {
346 enabled: true
347 },
348 hls: {
349 enabled: true
350 }
4bc45da3
C
351 }
352 }
353 })
354
355 const uuids: string[] = []
356
357 for (const name of [ 'bad torrent', 'bad file', 'bad playlist file' ]) {
89d241a7 358 const uuid = (await servers[0].videos.quickUpload({ name: name })).uuid
4bc45da3
C
359 uuids.push(uuid)
360 }
361
362 await waitJobs(servers)
363
364 for (const uuid of uuids) {
89d241a7 365 downloadVideos.push(await servers[0].videos.get({ id: uuid }))
4bc45da3
C
366 }
367 })
368
369 it('Should run filter:api.download.torrent.allowed.result', async function () {
370 const res = await makeRawRequest(downloadVideos[0].files[0].torrentDownloadUrl, 403)
371 expect(res.body.error).to.equal('Liu Bei')
372
373 await makeRawRequest(downloadVideos[1].files[0].torrentDownloadUrl, 200)
374 await makeRawRequest(downloadVideos[2].files[0].torrentDownloadUrl, 200)
375 })
376
377 it('Should run filter:api.download.video.allowed.result', async function () {
378 {
379 const res = await makeRawRequest(downloadVideos[1].files[0].fileDownloadUrl, 403)
380 expect(res.body.error).to.equal('Cao Cao')
381
382 await makeRawRequest(downloadVideos[0].files[0].fileDownloadUrl, 200)
383 await makeRawRequest(downloadVideos[2].files[0].fileDownloadUrl, 200)
384 }
385
386 {
387 const res = await makeRawRequest(downloadVideos[2].streamingPlaylists[0].files[0].fileDownloadUrl, 403)
388 expect(res.body.error).to.equal('Sun Jian')
389
390 await makeRawRequest(downloadVideos[2].files[0].fileDownloadUrl, 200)
391
392 await makeRawRequest(downloadVideos[0].streamingPlaylists[0].files[0].fileDownloadUrl, 200)
393 await makeRawRequest(downloadVideos[1].streamingPlaylists[0].files[0].fileDownloadUrl, 200)
394 }
395 })
396 })
397
eebd9838
C
398 describe('Embed filters', function () {
399 const embedVideos: VideoDetails[] = []
400 const embedPlaylists: VideoPlaylist[] = []
401
402 before(async function () {
403 this.timeout(60000)
404
89d241a7 405 await servers[0].config.updateCustomSubConfig({
65e6e260
C
406 newConfig: {
407 transcoding: {
408 enabled: false
409 }
eebd9838
C
410 }
411 })
412
413 for (const name of [ 'bad embed', 'good embed' ]) {
414 {
89d241a7
C
415 const uuid = (await servers[0].videos.quickUpload({ name: name })).uuid
416 embedVideos.push(await servers[0].videos.get({ id: uuid }))
eebd9838
C
417 }
418
419 {
89d241a7
C
420 const attributes = { displayName: name, videoChannelId: servers[0].store.channel.id, privacy: VideoPlaylistPrivacy.PUBLIC }
421 const { id } = await servers[0].playlists.create({ attributes })
eebd9838 422
89d241a7 423 const playlist = await servers[0].playlists.get({ playlistId: id })
e6346d59 424 embedPlaylists.push(playlist)
eebd9838
C
425 }
426 }
427 })
428
429 it('Should run filter:html.embed.video.allowed.result', async function () {
430 const res = await makeRawRequest(servers[0].url + embedVideos[0].embedPath, 200)
431 expect(res.text).to.equal('Lu Bu')
432 })
433
434 it('Should run filter:html.embed.video-playlist.allowed.result', async function () {
435 const res = await makeRawRequest(servers[0].url + embedPlaylists[0].embedPath, 200)
436 expect(res.text).to.equal('Diao Chan')
437 })
438 })
439
74a4d531
C
440 describe('Search filters', function () {
441
442 before(async function () {
89d241a7 443 await servers[0].config.updateCustomSubConfig({
65e6e260
C
444 newConfig: {
445 search: {
446 searchIndex: {
447 enabled: true,
448 isDefaultSearch: false,
449 disableLocalSearch: false
450 }
74a4d531
C
451 }
452 }
453 })
454 })
455
456 it('Should run filter:api.search.videos.local.list.{params,result}', async function () {
89d241a7 457 await servers[0].search.advancedVideoSearch({
af971e06
C
458 search: {
459 search: 'Sun Quan'
460 }
74a4d531
C
461 })
462
89d241a7
C
463 await servers[0].servers.waitUntilLog('Run hook filter:api.search.videos.local.list.params', 1)
464 await servers[0].servers.waitUntilLog('Run hook filter:api.search.videos.local.list.result', 1)
74a4d531
C
465 })
466
467 it('Should run filter:api.search.videos.index.list.{params,result}', async function () {
89d241a7 468 await servers[0].search.advancedVideoSearch({
af971e06
C
469 search: {
470 search: 'Sun Quan',
471 searchTarget: 'search-index'
472 }
74a4d531
C
473 })
474
89d241a7
C
475 await servers[0].servers.waitUntilLog('Run hook filter:api.search.videos.local.list.params', 1)
476 await servers[0].servers.waitUntilLog('Run hook filter:api.search.videos.local.list.result', 1)
477 await servers[0].servers.waitUntilLog('Run hook filter:api.search.videos.index.list.params', 1)
478 await servers[0].servers.waitUntilLog('Run hook filter:api.search.videos.index.list.result', 1)
74a4d531
C
479 })
480
481 it('Should run filter:api.search.video-channels.local.list.{params,result}', async function () {
89d241a7 482 await servers[0].search.advancedChannelSearch({
af971e06
C
483 search: {
484 search: 'Sun Ce'
485 }
74a4d531
C
486 })
487
89d241a7
C
488 await servers[0].servers.waitUntilLog('Run hook filter:api.search.video-channels.local.list.params', 1)
489 await servers[0].servers.waitUntilLog('Run hook filter:api.search.video-channels.local.list.result', 1)
74a4d531
C
490 })
491
492 it('Should run filter:api.search.video-channels.index.list.{params,result}', async function () {
89d241a7 493 await servers[0].search.advancedChannelSearch({
af971e06
C
494 search: {
495 search: 'Sun Ce',
496 searchTarget: 'search-index'
497 }
74a4d531
C
498 })
499
89d241a7
C
500 await servers[0].servers.waitUntilLog('Run hook filter:api.search.video-channels.local.list.params', 1)
501 await servers[0].servers.waitUntilLog('Run hook filter:api.search.video-channels.local.list.result', 1)
502 await servers[0].servers.waitUntilLog('Run hook filter:api.search.video-channels.index.list.params', 1)
503 await servers[0].servers.waitUntilLog('Run hook filter:api.search.video-channels.index.list.result', 1)
74a4d531 504 })
37a44fc9
C
505
506 it('Should run filter:api.search.video-playlists.local.list.{params,result}', async function () {
89d241a7 507 await servers[0].search.advancedPlaylistSearch({
af971e06
C
508 search: {
509 search: 'Sun Jian'
510 }
37a44fc9
C
511 })
512
89d241a7
C
513 await servers[0].servers.waitUntilLog('Run hook filter:api.search.video-playlists.local.list.params', 1)
514 await servers[0].servers.waitUntilLog('Run hook filter:api.search.video-playlists.local.list.result', 1)
37a44fc9
C
515 })
516
517 it('Should run filter:api.search.video-playlists.index.list.{params,result}', async function () {
89d241a7 518 await servers[0].search.advancedPlaylistSearch({
af971e06
C
519 search: {
520 search: 'Sun Jian',
521 searchTarget: 'search-index'
522 }
37a44fc9
C
523 })
524
89d241a7
C
525 await servers[0].servers.waitUntilLog('Run hook filter:api.search.video-playlists.local.list.params', 1)
526 await servers[0].servers.waitUntilLog('Run hook filter:api.search.video-playlists.local.list.result', 1)
527 await servers[0].servers.waitUntilLog('Run hook filter:api.search.video-playlists.index.list.params', 1)
528 await servers[0].servers.waitUntilLog('Run hook filter:api.search.video-playlists.index.list.result', 1)
37a44fc9 529 })
74a4d531
C
530 })
531
9b474844 532 after(async function () {
89cd1275 533 await cleanupTests(servers)
9b474844
C
534 })
535})