]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/api/notifications/moderation-notifications.ts
Introduce config command
[github/Chocobozzz/PeerTube.git] / server / tests / api / notifications / moderation-notifications.ts
CommitLineData
8eb07b01
C
1/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2
3import 'mocha'
d4a8e7a6 4import { buildUUID } from '@server/helpers/uuid'
8eb07b01 5import {
0c1a77e9 6 addUserSubscription,
310b5219 7 addVideoCommentThread,
8eb07b01 8 addVideoToBlacklist,
0c1a77e9
C
9 checkAbuseStateChange,
10 checkAutoInstanceFollowing,
11 CheckerBaseParams,
12 checkNewAbuseMessage,
13 checkNewAccountAbuseForModerators,
14 checkNewBlacklistOnMyVideo,
15 checkNewCommentAbuseForModerators,
16 checkNewInstanceFollower,
17 checkNewVideoAbuseForModerators,
18 checkNewVideoFromSubscription,
19 checkUserRegistered,
20 checkVideoAutoBlacklistForModerators,
21 checkVideoIsPublished,
8eb07b01 22 cleanupTests,
310b5219 23 createUser,
310b5219
C
24 generateUserAccessToken,
25 getAccount,
310b5219
C
26 getVideoCommentThreads,
27 getVideoIdFromUUID,
8eb07b01
C
28 immutableAssign,
29 MockInstancesIndex,
0c1a77e9
C
30 MockSmtpServer,
31 prepareNotificationsTest,
8eb07b01 32 registerUser,
0c1a77e9 33 removeUserSubscription,
8eb07b01 34 removeVideoFromBlacklist,
0c1a77e9 35 ServerInfo,
0c1a77e9
C
36 uploadVideo,
37 wait,
38 waitJobs
39} from '@shared/extra-utils'
40import { AbuseState, CustomConfig, UserNotification, VideoPrivacy } from '@shared/models'
8eb07b01
C
41
42describe('Test moderation notifications', function () {
43 let servers: ServerInfo[] = []
44 let userAccessToken: string
45 let userNotifications: UserNotification[] = []
46 let adminNotifications: UserNotification[] = []
47 let adminNotificationsServer2: UserNotification[] = []
48 let emails: object[] = []
49
50 before(async function () {
51 this.timeout(120000)
52
53 const res = await prepareNotificationsTest(3)
54 emails = res.emails
55 userAccessToken = res.userAccessToken
56 servers = res.servers
57 userNotifications = res.userNotifications
58 adminNotifications = res.adminNotifications
59 adminNotificationsServer2 = res.adminNotificationsServer2
60 })
61
594d3e48 62 describe('Abuse for moderators notification', function () {
8eb07b01
C
63 let baseParams: CheckerBaseParams
64
65 before(() => {
66 baseParams = {
67 server: servers[0],
68 emails,
69 socketNotifications: adminNotifications,
70 token: servers[0].accessToken
71 }
72 })
73
74 it('Should send a notification to moderators on local video abuse', async function () {
20516920 75 this.timeout(20000)
8eb07b01 76
d4a8e7a6 77 const name = 'video for abuse ' + buildUUID()
8eb07b01 78 const resVideo = await uploadVideo(servers[0].url, userAccessToken, { name })
4f32032f 79 const video = resVideo.body.video
8eb07b01 80
0c1a77e9 81 await servers[0].abusesCommand.report({ videoId: video.id, reason: 'super reason' })
8eb07b01
C
82
83 await waitJobs(servers)
4f32032f 84 await checkNewVideoAbuseForModerators(baseParams, video.uuid, name, 'presence')
8eb07b01
C
85 })
86
87 it('Should send a notification to moderators on remote video abuse', async function () {
20516920 88 this.timeout(20000)
8eb07b01 89
d4a8e7a6 90 const name = 'video for abuse ' + buildUUID()
8eb07b01 91 const resVideo = await uploadVideo(servers[0].url, userAccessToken, { name })
4f32032f 92 const video = resVideo.body.video
8eb07b01
C
93
94 await waitJobs(servers)
95
310b5219 96 const videoId = await getVideoIdFromUUID(servers[1].url, video.uuid)
0c1a77e9 97 await servers[1].abusesCommand.report({ videoId, reason: 'super reason' })
8eb07b01
C
98
99 await waitJobs(servers)
4f32032f 100 await checkNewVideoAbuseForModerators(baseParams, video.uuid, name, 'presence')
8eb07b01 101 })
310b5219
C
102
103 it('Should send a notification to moderators on local comment abuse', async function () {
20516920 104 this.timeout(20000)
310b5219 105
d4a8e7a6 106 const name = 'video for abuse ' + buildUUID()
310b5219
C
107 const resVideo = await uploadVideo(servers[0].url, userAccessToken, { name })
108 const video = resVideo.body.video
d4a8e7a6 109 const resComment = await addVideoCommentThread(servers[0].url, userAccessToken, video.id, 'comment abuse ' + buildUUID())
310b5219
C
110 const comment = resComment.body.comment
111
15bedeeb
C
112 await waitJobs(servers)
113
0c1a77e9 114 await servers[0].abusesCommand.report({ commentId: comment.id, reason: 'super reason' })
310b5219
C
115
116 await waitJobs(servers)
117 await checkNewCommentAbuseForModerators(baseParams, video.uuid, name, 'presence')
118 })
119
120 it('Should send a notification to moderators on remote comment abuse', async function () {
20516920 121 this.timeout(20000)
310b5219 122
d4a8e7a6 123 const name = 'video for abuse ' + buildUUID()
310b5219
C
124 const resVideo = await uploadVideo(servers[0].url, userAccessToken, { name })
125 const video = resVideo.body.video
d4a8e7a6 126 await addVideoCommentThread(servers[0].url, userAccessToken, video.id, 'comment abuse ' + buildUUID())
310b5219
C
127
128 await waitJobs(servers)
129
130 const resComments = await getVideoCommentThreads(servers[1].url, video.uuid, 0, 5)
131 const commentId = resComments.body.data[0].id
0c1a77e9 132 await servers[1].abusesCommand.report({ commentId, reason: 'super reason' })
310b5219
C
133
134 await waitJobs(servers)
135 await checkNewCommentAbuseForModerators(baseParams, video.uuid, name, 'presence')
136 })
137
138 it('Should send a notification to moderators on local account abuse', async function () {
20516920 139 this.timeout(20000)
310b5219
C
140
141 const username = 'user' + new Date().getTime()
142 const resUser = await createUser({ url: servers[0].url, accessToken: servers[0].accessToken, username, password: 'donald' })
143 const accountId = resUser.body.user.account.id
144
0c1a77e9 145 await servers[0].abusesCommand.report({ accountId, reason: 'super reason' })
310b5219
C
146
147 await waitJobs(servers)
148 await checkNewAccountAbuseForModerators(baseParams, username, 'presence')
149 })
150
151 it('Should send a notification to moderators on remote account abuse', async function () {
20516920 152 this.timeout(20000)
310b5219
C
153
154 const username = 'user' + new Date().getTime()
155 const tmpToken = await generateUserAccessToken(servers[0], username)
156 await uploadVideo(servers[0].url, tmpToken, { name: 'super video' })
157
158 await waitJobs(servers)
159
160 const resAccount = await getAccount(servers[1].url, username + '@' + servers[0].host)
0c1a77e9 161 await servers[1].abusesCommand.report({ accountId: resAccount.body.id, reason: 'super reason' })
310b5219
C
162
163 await waitJobs(servers)
164 await checkNewAccountAbuseForModerators(baseParams, username, 'presence')
165 })
8eb07b01
C
166 })
167
594d3e48
C
168 describe('Abuse state change notification', function () {
169 let baseParams: CheckerBaseParams
170 let abuseId: number
171
172 before(async function () {
173 baseParams = {
174 server: servers[0],
175 emails,
176 socketNotifications: userNotifications,
177 token: userAccessToken
178 }
179
d4a8e7a6 180 const name = 'abuse ' + buildUUID()
594d3e48
C
181 const resVideo = await uploadVideo(servers[0].url, userAccessToken, { name })
182 const video = resVideo.body.video
183
0c1a77e9
C
184 const body = await servers[0].abusesCommand.report({ token: userAccessToken, videoId: video.id, reason: 'super reason' })
185 abuseId = body.abuse.id
594d3e48
C
186 })
187
188 it('Should send a notification to reporter if the abuse has been accepted', async function () {
189 this.timeout(10000)
190
0c1a77e9 191 await servers[0].abusesCommand.update({ abuseId, body: { state: AbuseState.ACCEPTED } })
594d3e48
C
192 await waitJobs(servers)
193
194 await checkAbuseStateChange(baseParams, abuseId, AbuseState.ACCEPTED, 'presence')
195 })
196
197 it('Should send a notification to reporter if the abuse has been rejected', async function () {
198 this.timeout(10000)
199
0c1a77e9 200 await servers[0].abusesCommand.update({ abuseId, body: { state: AbuseState.REJECTED } })
594d3e48
C
201 await waitJobs(servers)
202
203 await checkAbuseStateChange(baseParams, abuseId, AbuseState.REJECTED, 'presence')
204 })
205 })
206
207 describe('New abuse message notification', function () {
208 let baseParamsUser: CheckerBaseParams
209 let baseParamsAdmin: CheckerBaseParams
210 let abuseId: number
211 let abuseId2: number
212
213 before(async function () {
214 baseParamsUser = {
215 server: servers[0],
216 emails,
217 socketNotifications: userNotifications,
218 token: userAccessToken
219 }
220
221 baseParamsAdmin = {
222 server: servers[0],
223 emails,
224 socketNotifications: adminNotifications,
225 token: servers[0].accessToken
226 }
227
d4a8e7a6 228 const name = 'abuse ' + buildUUID()
594d3e48
C
229 const resVideo = await uploadVideo(servers[0].url, userAccessToken, { name })
230 const video = resVideo.body.video
231
232 {
2d1ad5b9 233 const body = await servers[0].abusesCommand.report({ token: userAccessToken, videoId: video.id, reason: 'super reason' })
0c1a77e9 234 abuseId = body.abuse.id
594d3e48
C
235 }
236
237 {
0c1a77e9
C
238 const body = await servers[0].abusesCommand.report({ token: userAccessToken, videoId: video.id, reason: 'super reason 2' })
239 abuseId2 = body.abuse.id
594d3e48
C
240 }
241 })
242
243 it('Should send a notification to reporter on new message', async function () {
244 this.timeout(10000)
245
246 const message = 'my super message to users'
0c1a77e9 247 await servers[0].abusesCommand.addMessage({ abuseId, message })
594d3e48
C
248 await waitJobs(servers)
249
250 await checkNewAbuseMessage(baseParamsUser, abuseId, message, 'user_1@example.com', 'presence')
251 })
252
253 it('Should not send a notification to the admin if sent by the admin', async function () {
254 this.timeout(10000)
255
256 const message = 'my super message that should not be sent to the admin'
0c1a77e9 257 await servers[0].abusesCommand.addMessage({ abuseId, message })
594d3e48
C
258 await waitJobs(servers)
259
41130b4c 260 await checkNewAbuseMessage(baseParamsAdmin, abuseId, message, 'admin' + servers[0].internalServerNumber + '@example.com', 'absence')
594d3e48
C
261 })
262
263 it('Should send a notification to moderators', async function () {
264 this.timeout(10000)
265
266 const message = 'my super message to moderators'
0c1a77e9 267 await servers[0].abusesCommand.addMessage({ token: userAccessToken, abuseId: abuseId2, message })
594d3e48
C
268 await waitJobs(servers)
269
41130b4c 270 await checkNewAbuseMessage(baseParamsAdmin, abuseId2, message, 'admin' + servers[0].internalServerNumber + '@example.com', 'presence')
594d3e48
C
271 })
272
273 it('Should not send a notification to reporter if sent by the reporter', async function () {
274 this.timeout(10000)
275
276 const message = 'my super message that should not be sent to reporter'
0c1a77e9 277 await servers[0].abusesCommand.addMessage({ token: userAccessToken, abuseId: abuseId2, message })
594d3e48
C
278 await waitJobs(servers)
279
280 await checkNewAbuseMessage(baseParamsUser, abuseId2, message, 'user_1@example.com', 'absence')
281 })
282 })
283
8eb07b01
C
284 describe('Video blacklist on my video', function () {
285 let baseParams: CheckerBaseParams
286
287 before(() => {
288 baseParams = {
289 server: servers[0],
290 emails,
291 socketNotifications: userNotifications,
292 token: userAccessToken
293 }
294 })
295
296 it('Should send a notification to video owner on blacklist', async function () {
297 this.timeout(10000)
298
d4a8e7a6 299 const name = 'video for abuse ' + buildUUID()
8eb07b01
C
300 const resVideo = await uploadVideo(servers[0].url, userAccessToken, { name })
301 const uuid = resVideo.body.video.uuid
302
303 await addVideoToBlacklist(servers[0].url, servers[0].accessToken, uuid)
304
305 await waitJobs(servers)
306 await checkNewBlacklistOnMyVideo(baseParams, uuid, name, 'blacklist')
307 })
308
309 it('Should send a notification to video owner on unblacklist', async function () {
310 this.timeout(10000)
311
d4a8e7a6 312 const name = 'video for abuse ' + buildUUID()
8eb07b01
C
313 const resVideo = await uploadVideo(servers[0].url, userAccessToken, { name })
314 const uuid = resVideo.body.video.uuid
315
316 await addVideoToBlacklist(servers[0].url, servers[0].accessToken, uuid)
317
318 await waitJobs(servers)
319 await removeVideoFromBlacklist(servers[0].url, servers[0].accessToken, uuid)
320 await waitJobs(servers)
321
322 await wait(500)
323 await checkNewBlacklistOnMyVideo(baseParams, uuid, name, 'unblacklist')
324 })
325 })
326
327 describe('New registration', function () {
328 let baseParams: CheckerBaseParams
329
330 before(() => {
331 baseParams = {
332 server: servers[0],
333 emails,
334 socketNotifications: adminNotifications,
335 token: servers[0].accessToken
336 }
337 })
338
339 it('Should send a notification only to moderators when a user registers on the instance', async function () {
340 this.timeout(10000)
341
342 await registerUser(servers[0].url, 'user_45', 'password')
343
344 await waitJobs(servers)
345
346 await checkUserRegistered(baseParams, 'user_45', 'presence')
347
348 const userOverride = { socketNotifications: userNotifications, token: userAccessToken, check: { web: true, mail: false } }
349 await checkUserRegistered(immutableAssign(baseParams, userOverride), 'user_45', 'absence')
350 })
351 })
352
353 describe('New instance follows', function () {
354 const instanceIndexServer = new MockInstancesIndex()
f6500729 355 let config: any
8eb07b01
C
356 let baseParams: CheckerBaseParams
357
358 before(async () => {
359 baseParams = {
360 server: servers[0],
361 emails,
362 socketNotifications: adminNotifications,
363 token: servers[0].accessToken
364 }
365
f6500729 366 const port = await instanceIndexServer.initialize()
8eb07b01 367 instanceIndexServer.addInstance(servers[1].host)
f6500729
C
368
369 config = {
370 followings: {
371 instance: {
372 autoFollowIndex: {
373 indexUrl: `http://localhost:${port}/api/v1/instances/hosts`,
374 enabled: true
375 }
376 }
377 }
378 }
8eb07b01
C
379 })
380
381 it('Should send a notification only to admin when there is a new instance follower', async function () {
382 this.timeout(20000)
383
c3d29f69 384 await servers[2].followsCommand.follow({ targets: [ servers[0].url ] })
8eb07b01
C
385
386 await waitJobs(servers)
387
388 await checkNewInstanceFollower(baseParams, 'localhost:' + servers[2].port, 'presence')
389
390 const userOverride = { socketNotifications: userNotifications, token: userAccessToken, check: { web: true, mail: false } }
391 await checkNewInstanceFollower(immutableAssign(baseParams, userOverride), 'localhost:' + servers[2].port, 'absence')
392 })
393
394 it('Should send a notification on auto follow back', async function () {
395 this.timeout(40000)
396
c3d29f69 397 await servers[2].followsCommand.unfollow({ target: servers[0] })
8eb07b01
C
398 await waitJobs(servers)
399
400 const config = {
401 followings: {
402 instance: {
403 autoFollowBack: { enabled: true }
404 }
405 }
406 }
65e6e260 407 await servers[0].configCommand.updateCustomSubConfig({ newConfig: config })
8eb07b01 408
c3d29f69 409 await servers[2].followsCommand.follow({ targets: [ servers[0].url ] })
8eb07b01
C
410
411 await waitJobs(servers)
412
413 const followerHost = servers[0].host
414 const followingHost = servers[2].host
415 await checkAutoInstanceFollowing(baseParams, followerHost, followingHost, 'presence')
416
417 const userOverride = { socketNotifications: userNotifications, token: userAccessToken, check: { web: true, mail: false } }
418 await checkAutoInstanceFollowing(immutableAssign(baseParams, userOverride), followerHost, followingHost, 'absence')
419
420 config.followings.instance.autoFollowBack.enabled = false
65e6e260 421 await servers[0].configCommand.updateCustomSubConfig({ newConfig: config })
c3d29f69
C
422 await servers[0].followsCommand.unfollow({ target: servers[2] })
423 await servers[2].followsCommand.unfollow({ target: servers[0] })
8eb07b01
C
424 })
425
426 it('Should send a notification on auto instances index follow', async function () {
427 this.timeout(30000)
c3d29f69 428 await servers[0].followsCommand.unfollow({ target: servers[1] })
8eb07b01 429
65e6e260 430 await servers[0].configCommand.updateCustomSubConfig({ newConfig: config })
8eb07b01
C
431
432 await wait(5000)
433 await waitJobs(servers)
434
435 const followerHost = servers[0].host
436 const followingHost = servers[1].host
437 await checkAutoInstanceFollowing(baseParams, followerHost, followingHost, 'presence')
438
439 config.followings.instance.autoFollowIndex.enabled = false
65e6e260 440 await servers[0].configCommand.updateCustomSubConfig({ newConfig: config })
c3d29f69 441 await servers[0].followsCommand.unfollow({ target: servers[1] })
8eb07b01
C
442 })
443 })
444
445 describe('Video-related notifications when video auto-blacklist is enabled', function () {
446 let userBaseParams: CheckerBaseParams
447 let adminBaseParamsServer1: CheckerBaseParams
448 let adminBaseParamsServer2: CheckerBaseParams
449 let videoUUID: string
450 let videoName: string
451 let currentCustomConfig: CustomConfig
452
453 before(async () => {
454
455 adminBaseParamsServer1 = {
456 server: servers[0],
457 emails,
458 socketNotifications: adminNotifications,
459 token: servers[0].accessToken
460 }
461
462 adminBaseParamsServer2 = {
463 server: servers[1],
464 emails,
465 socketNotifications: adminNotificationsServer2,
466 token: servers[1].accessToken
467 }
468
469 userBaseParams = {
470 server: servers[0],
471 emails,
472 socketNotifications: userNotifications,
473 token: userAccessToken
474 }
475
65e6e260
C
476 currentCustomConfig = await servers[0].configCommand.getCustomConfig()
477
8eb07b01
C
478 const autoBlacklistTestsCustomConfig = immutableAssign(currentCustomConfig, {
479 autoBlacklist: {
480 videos: {
481 ofUsers: {
482 enabled: true
483 }
484 }
485 }
486 })
65e6e260 487
8eb07b01
C
488 // enable transcoding otherwise own publish notification after transcoding not expected
489 autoBlacklistTestsCustomConfig.transcoding.enabled = true
65e6e260 490 await servers[0].configCommand.updateCustomConfig({ newCustomConfig: autoBlacklistTestsCustomConfig })
8eb07b01
C
491
492 await addUserSubscription(servers[0].url, servers[0].accessToken, 'user_1_channel@localhost:' + servers[0].port)
493 await addUserSubscription(servers[1].url, servers[1].accessToken, 'user_1_channel@localhost:' + servers[0].port)
494
495 })
496
497 it('Should send notification to moderators on new video with auto-blacklist', async function () {
34caef7f 498 this.timeout(40000)
8eb07b01 499
d4a8e7a6 500 videoName = 'video with auto-blacklist ' + buildUUID()
8eb07b01
C
501 const resVideo = await uploadVideo(servers[0].url, userAccessToken, { name: videoName })
502 videoUUID = resVideo.body.video.uuid
503
504 await waitJobs(servers)
505 await checkVideoAutoBlacklistForModerators(adminBaseParamsServer1, videoUUID, videoName, 'presence')
506 })
507
508 it('Should not send video publish notification if auto-blacklisted', async function () {
509 await checkVideoIsPublished(userBaseParams, videoName, videoUUID, 'absence')
510 })
511
512 it('Should not send a local user subscription notification if auto-blacklisted', async function () {
513 await checkNewVideoFromSubscription(adminBaseParamsServer1, videoName, videoUUID, 'absence')
514 })
515
516 it('Should not send a remote user subscription notification if auto-blacklisted', async function () {
517 await checkNewVideoFromSubscription(adminBaseParamsServer2, videoName, videoUUID, 'absence')
518 })
519
520 it('Should send video published and unblacklist after video unblacklisted', async function () {
34caef7f 521 this.timeout(40000)
8eb07b01
C
522
523 await removeVideoFromBlacklist(servers[0].url, servers[0].accessToken, videoUUID)
524
525 await waitJobs(servers)
526
527 // FIXME: Can't test as two notifications sent to same user and util only checks last one
528 // One notification might be better anyways
529 // await checkNewBlacklistOnMyVideo(userBaseParams, videoUUID, videoName, 'unblacklist')
530 // await checkVideoIsPublished(userBaseParams, videoName, videoUUID, 'presence')
531 })
532
533 it('Should send a local user subscription notification after removed from blacklist', async function () {
534 await checkNewVideoFromSubscription(adminBaseParamsServer1, videoName, videoUUID, 'presence')
535 })
536
537 it('Should send a remote user subscription notification after removed from blacklist', async function () {
538 await checkNewVideoFromSubscription(adminBaseParamsServer2, videoName, videoUUID, 'presence')
539 })
540
541 it('Should send unblacklist but not published/subscription notes after unblacklisted if scheduled update pending', async function () {
59fd824c 542 this.timeout(40000)
8eb07b01
C
543
544 const updateAt = new Date(new Date().getTime() + 1000000)
545
d4a8e7a6 546 const name = 'video with auto-blacklist and future schedule ' + buildUUID()
8eb07b01
C
547
548 const data = {
549 name,
550 privacy: VideoPrivacy.PRIVATE,
551 scheduleUpdate: {
552 updateAt: updateAt.toISOString(),
553 privacy: VideoPrivacy.PUBLIC
554 }
555 }
556
557 const resVideo = await uploadVideo(servers[0].url, userAccessToken, data)
558 const uuid = resVideo.body.video.uuid
559
560 await removeVideoFromBlacklist(servers[0].url, servers[0].accessToken, uuid)
561
562 await waitJobs(servers)
563 await checkNewBlacklistOnMyVideo(userBaseParams, uuid, name, 'unblacklist')
564
565 // FIXME: Can't test absence as two notifications sent to same user and util only checks last one
566 // One notification might be better anyways
567 // await checkVideoIsPublished(userBaseParams, name, uuid, 'absence')
568
569 await checkNewVideoFromSubscription(adminBaseParamsServer1, name, uuid, 'absence')
570 await checkNewVideoFromSubscription(adminBaseParamsServer2, name, uuid, 'absence')
571 })
572
573 it('Should not send publish/subscription notifications after scheduled update if video still auto-blacklisted', async function () {
59fd824c 574 this.timeout(40000)
8eb07b01
C
575
576 // In 2 seconds
577 const updateAt = new Date(new Date().getTime() + 2000)
578
d4a8e7a6 579 const name = 'video with schedule done and still auto-blacklisted ' + buildUUID()
8eb07b01
C
580
581 const data = {
582 name,
583 privacy: VideoPrivacy.PRIVATE,
584 scheduleUpdate: {
585 updateAt: updateAt.toISOString(),
586 privacy: VideoPrivacy.PUBLIC
587 }
588 }
589
590 const resVideo = await uploadVideo(servers[0].url, userAccessToken, data)
591 const uuid = resVideo.body.video.uuid
592
593 await wait(6000)
594 await checkVideoIsPublished(userBaseParams, name, uuid, 'absence')
595 await checkNewVideoFromSubscription(adminBaseParamsServer1, name, uuid, 'absence')
596 await checkNewVideoFromSubscription(adminBaseParamsServer2, name, uuid, 'absence')
597 })
598
599 it('Should not send a notification to moderators on new video without auto-blacklist', async function () {
26171379 600 this.timeout(60000)
8eb07b01 601
d4a8e7a6 602 const name = 'video without auto-blacklist ' + buildUUID()
8eb07b01
C
603
604 // admin with blacklist right will not be auto-blacklisted
605 const resVideo = await uploadVideo(servers[0].url, servers[0].accessToken, { name })
606 const uuid = resVideo.body.video.uuid
607
608 await waitJobs(servers)
609 await checkVideoAutoBlacklistForModerators(adminBaseParamsServer1, uuid, name, 'absence')
610 })
611
612 after(async () => {
65e6e260 613 await servers[0].configCommand.updateCustomConfig({ newCustomConfig: currentCustomConfig })
8eb07b01
C
614
615 await removeUserSubscription(servers[0].url, servers[0].accessToken, 'user_1_channel@localhost:' + servers[0].port)
616 await removeUserSubscription(servers[1].url, servers[1].accessToken, 'user_1_channel@localhost:' + servers[0].port)
617 })
618 })
619
620 after(async function () {
621 MockSmtpServer.Instance.kill()
622
623 await cleanupTests(servers)
624 })
625})