aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/videos/video-playlists.ts
blob: 9285682999beac7c0d19e50f029a9f8311adf434 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
/* tslint:disable:no-unused-expression */

import * as chai from 'chai'
import 'mocha'
import {
  addVideoChannel,
  addVideoInPlaylist,
  checkPlaylistFilesWereRemoved, cleanupTests,
  createUser,
  createVideoPlaylist,
  deleteVideoChannel,
  deleteVideoPlaylist,
  doubleFollow, doVideosExistInMyPlaylist,
  flushAndRunMultipleServers,
  flushTests,
  getAccountPlaylistsList,
  getAccountPlaylistsListWithToken, getMyUserInformation,
  getPlaylistVideos,
  getVideoChannelPlaylistsList,
  getVideoPlaylist,
  getVideoPlaylistPrivacies,
  getVideoPlaylistsList,
  getVideoPlaylistWithToken,
  killallServers,
  removeUser,
  removeVideoFromPlaylist,
  reorderVideosPlaylist,
  ServerInfo,
  setAccessTokensToServers,
  setDefaultVideoChannel,
  testImage,
  unfollow,
  updateVideoPlaylist,
  updateVideoPlaylistElement,
  uploadVideo,
  uploadVideoAndGetId,
  userLogin,
  waitJobs
} from '../../../../shared/extra-utils'
import { VideoPlaylistPrivacy } from '../../../../shared/models/videos/playlist/video-playlist-privacy.model'
import { VideoPlaylist } from '../../../../shared/models/videos/playlist/video-playlist.model'
import { Video } from '../../../../shared/models/videos'
import { VideoPlaylistType } from '../../../../shared/models/videos/playlist/video-playlist-type.model'
import { VideoExistInPlaylist } from '../../../../shared/models/videos/playlist/video-exist-in-playlist.model'
import { User } from '../../../../shared/models/users'

const expect = chai.expect

describe('Test video playlists', function () {
  let servers: ServerInfo[] = []

  let playlistServer2Id1: number
  let playlistServer2Id2: number
  let playlistServer2UUID2: number

  let playlistServer1Id: number
  let playlistServer1UUID: string

  let nsfwVideoServer1: number

  before(async function () {
    this.timeout(120000)

    servers = await flushAndRunMultipleServers(3, { transcoding: { enabled: false } })

    // Get the access tokens
    await setAccessTokensToServers(servers)
    await setDefaultVideoChannel(servers)

    // Server 1 and server 2 follow each other
    await doubleFollow(servers[0], servers[1])
    // Server 1 and server 3 follow each other
    await doubleFollow(servers[0], servers[2])

    {
      const serverPromises: Promise<any>[][] = []

      for (const server of servers) {
        const videoPromises: Promise<any>[] = []

        for (let i = 0; i < 7; i++) {
          videoPromises.push(
            uploadVideo(server.url, server.accessToken, { name: `video ${i} server ${server.serverNumber}`, nsfw: false })
              .then(res => res.body.video)
          )
        }

        serverPromises.push(videoPromises)
      }

      servers[0].videos = await Promise.all(serverPromises[0])
      servers[1].videos = await Promise.all(serverPromises[1])
      servers[2].videos = await Promise.all(serverPromises[2])
    }

    nsfwVideoServer1 = (await uploadVideoAndGetId({ server: servers[ 0 ], videoName: 'NSFW video', nsfw: true })).id

    await waitJobs(servers)
  })

  it('Should list video playlist privacies', async function () {
    const res = await getVideoPlaylistPrivacies(servers[0].url)

    const privacies = res.body
    expect(Object.keys(privacies)).to.have.length.at.least(3)

    expect(privacies[3]).to.equal('Private')
  })

  it('Should list watch later playlist', async function () {
    const url = servers[ 0 ].url
    const accessToken = servers[ 0 ].accessToken

    {
      const res = await getAccountPlaylistsListWithToken(url, accessToken, 'root', 0, 5, VideoPlaylistType.WATCH_LATER)

      expect(res.body.total).to.equal(1)
      expect(res.body.data).to.have.lengthOf(1)

      const playlist: VideoPlaylist = res.body.data[ 0 ]
      expect(playlist.displayName).to.equal('Watch later')
      expect(playlist.type.id).to.equal(VideoPlaylistType.WATCH_LATER)
      expect(playlist.type.label).to.equal('Watch later')
    }

    {
      const res = await getAccountPlaylistsListWithToken(url, accessToken, 'root', 0, 5, VideoPlaylistType.REGULAR)

      expect(res.body.total).to.equal(0)
      expect(res.body.data).to.have.lengthOf(0)
    }

    {
      const res = await getAccountPlaylistsList(url, 'root', 0, 5)
      expect(res.body.total).to.equal(0)
      expect(res.body.data).to.have.lengthOf(0)
    }
  })

  it('Should create a playlist on server 1 and have the playlist on server 2 and 3', async function () {
    this.timeout(30000)

    await createVideoPlaylist({
      url: servers[0].url,
      token: servers[0].accessToken,
      playlistAttrs: {
        displayName: 'my super playlist',
        privacy: VideoPlaylistPrivacy.PUBLIC,
        description: 'my super description',
        thumbnailfile: 'thumbnail.jpg',
        videoChannelId: servers[0].videoChannel.id
      }
    })

    await waitJobs(servers)

    for (const server of servers) {
      const res = await getVideoPlaylistsList(server.url, 0, 5)
      expect(res.body.total).to.equal(1)
      expect(res.body.data).to.have.lengthOf(1)

      const playlistFromList = res.body.data[0] as VideoPlaylist

      const res2 = await getVideoPlaylist(server.url, playlistFromList.uuid)
      const playlistFromGet = res2.body

      for (const playlist of [ playlistFromGet, playlistFromList ]) {
        expect(playlist.id).to.be.a('number')
        expect(playlist.uuid).to.be.a('string')

        expect(playlist.isLocal).to.equal(server.serverNumber === 1)

        expect(playlist.displayName).to.equal('my super playlist')
        expect(playlist.description).to.equal('my super description')
        expect(playlist.privacy.id).to.equal(VideoPlaylistPrivacy.PUBLIC)
        expect(playlist.privacy.label).to.equal('Public')
        expect(playlist.type.id).to.equal(VideoPlaylistType.REGULAR)
        expect(playlist.type.label).to.equal('Regular')

        expect(playlist.videosLength).to.equal(0)

        expect(playlist.ownerAccount.name).to.equal('root')
        expect(playlist.ownerAccount.displayName).to.equal('root')
        expect(playlist.videoChannel.name).to.equal('root_channel')
        expect(playlist.videoChannel.displayName).to.equal('Main root channel')
      }
    }
  })

  it('Should create a playlist on server 2 and have the playlist on server 1 but not on server 3', async function () {
    this.timeout(30000)

    {
      const res = await createVideoPlaylist({
        url: servers[1].url,
        token: servers[1].accessToken,
        playlistAttrs: {
          displayName: 'playlist 2',
          privacy: VideoPlaylistPrivacy.PUBLIC,
          videoChannelId: servers[1].videoChannel.id
        }
      })
      playlistServer2Id1 = res.body.videoPlaylist.id
    }

    {
      const res = await createVideoPlaylist({
        url: servers[ 1 ].url,
        token: servers[ 1 ].accessToken,
        playlistAttrs: {
          displayName: 'playlist 3',
          privacy: VideoPlaylistPrivacy.PUBLIC,
          thumbnailfile: 'thumbnail.jpg',
          videoChannelId: servers[1].videoChannel.id
        }
      })

      playlistServer2Id2 = res.body.videoPlaylist.id
      playlistServer2UUID2 = res.body.videoPlaylist.uuid
    }

    for (let id of [ playlistServer2Id1, playlistServer2Id2 ]) {
      await addVideoInPlaylist({
        url: servers[ 1 ].url,
        token: servers[ 1 ].accessToken,
        playlistId: id,
        elementAttrs: { videoId: servers[ 1 ].videos[ 0 ].id, startTimestamp: 1, stopTimestamp: 2 }
      })
      await addVideoInPlaylist({
        url: servers[ 1 ].url,
        token: servers[ 1 ].accessToken,
        playlistId: id,
        elementAttrs: { videoId: servers[ 1 ].videos[ 1 ].id }
      })
    }

    await waitJobs(servers)

    for (const server of [ servers[0], servers[1] ]) {
      const res = await getVideoPlaylistsList(server.url, 0, 5)

      const playlist2 = res.body.data.find(p => p.displayName === 'playlist 2')
      expect(playlist2).to.not.be.undefined
      await testImage(server.url, 'thumbnail-playlist', playlist2.thumbnailPath)

      const playlist3 = res.body.data.find(p => p.displayName === 'playlist 3')
      expect(playlist3).to.not.be.undefined
      await testImage(server.url, 'thumbnail', playlist3.thumbnailPath)
    }

    const res = await getVideoPlaylistsList(servers[2].url, 0, 5)
    expect(res.body.data.find(p => p.displayName === 'playlist 2')).to.be.undefined
    expect(res.body.data.find(p => p.displayName === 'playlist 3')).to.be.undefined
  })

  it('Should have the playlist on server 3 after a new follow', async function () {
    this.timeout(30000)

    // Server 2 and server 3 follow each other
    await doubleFollow(servers[1], servers[2])

    const res = await getVideoPlaylistsList(servers[2].url, 0, 5)

    const playlist2 = res.body.data.find(p => p.displayName === 'playlist 2')
    expect(playlist2).to.not.be.undefined
    await testImage(servers[2].url, 'thumbnail-playlist', playlist2.thumbnailPath)

    expect(res.body.data.find(p => p.displayName === 'playlist 3')).to.not.be.undefined
  })

  it('Should correctly list the playlists', async function () {
    this.timeout(30000)

    {
      const res = await getVideoPlaylistsList(servers[ 2 ].url, 1, 2, 'createdAt')

      expect(res.body.total).to.equal(3)

      const data: VideoPlaylist[] = res.body.data
      expect(data).to.have.lengthOf(2)
      expect(data[ 0 ].displayName).to.equal('playlist 2')
      expect(data[ 1 ].displayName).to.equal('playlist 3')
    }

    {
      const res = await getVideoPlaylistsList(servers[ 2 ].url, 1, 2, '-createdAt')

      expect(res.body.total).to.equal(3)

      const data: VideoPlaylist[] = res.body.data
      expect(data).to.have.lengthOf(2)
      expect(data[ 0 ].displayName).to.equal('playlist 2')
      expect(data[ 1 ].displayName).to.equal('my super playlist')
    }
  })

  it('Should list video channel playlists', async function () {
    this.timeout(30000)

    {
      const res = await getVideoChannelPlaylistsList(servers[ 0 ].url, 'root_channel', 0, 2, '-createdAt')

      expect(res.body.total).to.equal(1)

      const data: VideoPlaylist[] = res.body.data
      expect(data).to.have.lengthOf(1)
      expect(data[ 0 ].displayName).to.equal('my super playlist')
    }
  })

  it('Should list account playlists', async function () {
    this.timeout(30000)

    {
      const res = await getAccountPlaylistsList(servers[ 1 ].url, 'root', 1, 2, '-createdAt')

      expect(res.body.total).to.equal(2)

      const data: VideoPlaylist[] = res.body.data
      expect(data).to.have.lengthOf(1)
      expect(data[ 0 ].displayName).to.equal('playlist 2')
    }

    {
      const res = await getAccountPlaylistsList(servers[ 1 ].url, 'root', 1, 2, 'createdAt')

      expect(res.body.total).to.equal(2)

      const data: VideoPlaylist[] = res.body.data
      expect(data).to.have.lengthOf(1)
      expect(data[ 0 ].displayName).to.equal('playlist 3')
    }
  })

  it('Should not list unlisted or private playlists', async function () {
    this.timeout(30000)

    await createVideoPlaylist({
      url: servers[ 1 ].url,
      token: servers[ 1 ].accessToken,
      playlistAttrs: {
        displayName: 'playlist unlisted',
        privacy: VideoPlaylistPrivacy.UNLISTED
      }
    })

    await createVideoPlaylist({
      url: servers[ 1 ].url,
      token: servers[ 1 ].accessToken,
      playlistAttrs: {
        displayName: 'playlist private',
        privacy: VideoPlaylistPrivacy.PRIVATE
      }
    })

    await waitJobs(servers)

    for (const server of servers) {
      const results = [
        await getAccountPlaylistsList(server.url, 'root@localhost:9002', 0, 5, '-createdAt'),
        await getVideoPlaylistsList(server.url, 0, 2, '-createdAt')
      ]

      expect(results[0].body.total).to.equal(2)
      expect(results[1].body.total).to.equal(3)

      for (const res of results) {
        const data: VideoPlaylist[] = res.body.data
        expect(data).to.have.lengthOf(2)
        expect(data[ 0 ].displayName).to.equal('playlist 3')
        expect(data[ 1 ].displayName).to.equal('playlist 2')
      }
    }
  })

  it('Should update a playlist', async function () {
    this.timeout(30000)

    await updateVideoPlaylist({
      url: servers[1].url,
      token: servers[1].accessToken,
      playlistAttrs: {
        displayName: 'playlist 3 updated',
        description: 'description updated',
        privacy: VideoPlaylistPrivacy.UNLISTED,
        thumbnailfile: 'thumbnail.jpg',
        videoChannelId: servers[1].videoChannel.id
      },
      playlistId: playlistServer2Id2
    })

    await waitJobs(servers)

    for (const server of servers) {
      const res = await getVideoPlaylist(server.url, playlistServer2UUID2)
      const playlist: VideoPlaylist = res.body

      expect(playlist.displayName).to.equal('playlist 3 updated')
      expect(playlist.description).to.equal('description updated')

      expect(playlist.privacy.id).to.equal(VideoPlaylistPrivacy.UNLISTED)
      expect(playlist.privacy.label).to.equal('Unlisted')

      expect(playlist.type.id).to.equal(VideoPlaylistType.REGULAR)
      expect(playlist.type.label).to.equal('Regular')

      expect(playlist.videosLength).to.equal(2)

      expect(playlist.ownerAccount.name).to.equal('root')
      expect(playlist.ownerAccount.displayName).to.equal('root')
      expect(playlist.videoChannel.name).to.equal('root_channel')
      expect(playlist.videoChannel.displayName).to.equal('Main root channel')
    }
  })

  it('Should create a playlist containing different startTimestamp/endTimestamp videos', async function () {
    this.timeout(30000)

    const addVideo = (elementAttrs: any) => {
      return addVideoInPlaylist({ url: servers[0].url, token: servers[0].accessToken, playlistId: playlistServer1Id, elementAttrs })
    }

    const res = await createVideoPlaylist({
      url: servers[ 0 ].url,
      token: servers[ 0 ].accessToken,
      playlistAttrs: {
        displayName: 'playlist 4',
        privacy: VideoPlaylistPrivacy.PUBLIC,
        videoChannelId: servers[0].videoChannel.id
      }
    })

    playlistServer1Id = res.body.videoPlaylist.id
    playlistServer1UUID = res.body.videoPlaylist.uuid

    await addVideo({ videoId: servers[0].videos[0].uuid, startTimestamp: 15, stopTimestamp: 28 })
    await addVideo({ videoId: servers[2].videos[1].uuid, startTimestamp: 35 })
    await addVideo({ videoId: servers[2].videos[2].uuid })
    await addVideo({ videoId: servers[0].videos[3].uuid, stopTimestamp: 35 })
    await addVideo({ videoId: servers[0].videos[4].uuid, startTimestamp: 45, stopTimestamp: 60 })
    await addVideo({ videoId: nsfwVideoServer1, startTimestamp: 5 })

    await waitJobs(servers)
  })

  it('Should correctly list playlist videos', async function () {
    this.timeout(30000)

    for (const server of servers) {
      const res = await getPlaylistVideos(server.url, server.accessToken, playlistServer1UUID, 0, 10)

      expect(res.body.total).to.equal(6)

      const videos: Video[] = res.body.data
      expect(videos).to.have.lengthOf(6)

      expect(videos[0].name).to.equal('video 0 server 1')
      expect(videos[0].playlistElement.position).to.equal(1)
      expect(videos[0].playlistElement.startTimestamp).to.equal(15)
      expect(videos[0].playlistElement.stopTimestamp).to.equal(28)

      expect(videos[1].name).to.equal('video 1 server 3')
      expect(videos[1].playlistElement.position).to.equal(2)
      expect(videos[1].playlistElement.startTimestamp).to.equal(35)
      expect(videos[1].playlistElement.stopTimestamp).to.be.null

      expect(videos[2].name).to.equal('video 2 server 3')
      expect(videos[2].playlistElement.position).to.equal(3)
      expect(videos[2].playlistElement.startTimestamp).to.be.null
      expect(videos[2].playlistElement.stopTimestamp).to.be.null

      expect(videos[3].name).to.equal('video 3 server 1')
      expect(videos[3].playlistElement.position).to.equal(4)
      expect(videos[3].playlistElement.startTimestamp).to.be.null
      expect(videos[3].playlistElement.stopTimestamp).to.equal(35)

      expect(videos[4].name).to.equal('video 4 server 1')
      expect(videos[4].playlistElement.position).to.equal(5)
      expect(videos[4].playlistElement.startTimestamp).to.equal(45)
      expect(videos[4].playlistElement.stopTimestamp).to.equal(60)

      expect(videos[5].name).to.equal('NSFW video')
      expect(videos[5].playlistElement.position).to.equal(6)
      expect(videos[5].playlistElement.startTimestamp).to.equal(5)
      expect(videos[5].playlistElement.stopTimestamp).to.be.null

      const res2 = await getPlaylistVideos(server.url, server.accessToken, playlistServer1UUID, 0, 10, { nsfw: false })
      expect(res2.body.total).to.equal(5)
      expect(res2.body.data.find(v => v.name === 'NSFW video')).to.be.undefined

      const res3 = await getPlaylistVideos(server.url, server.accessToken, playlistServer1UUID, 0, 2)
      expect(res3.body.data).to.have.lengthOf(2)
    }
  })

  it('Should reorder the playlist', async function () {
    this.timeout(30000)

    {
      await reorderVideosPlaylist({
        url: servers[ 0 ].url,
        token: servers[ 0 ].accessToken,
        playlistId: playlistServer1Id,
        elementAttrs: {
          startPosition: 2,
          insertAfterPosition: 3
        }
      })

      await waitJobs(servers)

      for (const server of servers) {
        const res = await getPlaylistVideos(server.url, server.accessToken, playlistServer1UUID, 0, 10)
        const names = res.body.data.map(v => v.name)

        expect(names).to.deep.equal([
          'video 0 server 1',
          'video 2 server 3',
          'video 1 server 3',
          'video 3 server 1',
          'video 4 server 1',
          'NSFW video'
        ])
      }
    }

    {
      await reorderVideosPlaylist({
        url: servers[0].url,
        token: servers[0].accessToken,
        playlistId: playlistServer1Id,
        elementAttrs: {
          startPosition: 1,
          reorderLength: 3,
          insertAfterPosition: 4
        }
      })

      await waitJobs(servers)

      for (const server of servers) {
        const res = await getPlaylistVideos(server.url, server.accessToken, playlistServer1UUID, 0, 10)
        const names = res.body.data.map(v => v.name)

        expect(names).to.deep.equal([
          'video 3 server 1',
          'video 0 server 1',
          'video 2 server 3',
          'video 1 server 3',
          'video 4 server 1',
          'NSFW video'
        ])
      }
    }

    {
      await reorderVideosPlaylist({
        url: servers[0].url,
        token: servers[0].accessToken,
        playlistId: playlistServer1Id,
        elementAttrs: {
          startPosition: 6,
          insertAfterPosition: 3
        }
      })

      await waitJobs(servers)

      for (const server of servers) {
        const res = await getPlaylistVideos(server.url, server.accessToken, playlistServer1UUID, 0, 10)
        const videos: Video[] = res.body.data

        const names = videos.map(v => v.name)

        expect(names).to.deep.equal([
          'video 3 server 1',
          'video 0 server 1',
          'video 2 server 3',
          'NSFW video',
          'video 1 server 3',
          'video 4 server 1'
        ])

        for (let i = 1; i <= videos.length; i++) {
          expect(videos[i - 1].playlistElement.position).to.equal(i)
        }
      }
    }
  })

  it('Should update startTimestamp/endTimestamp of some elements', async function () {
    this.timeout(30000)

    await updateVideoPlaylistElement({
      url: servers[0].url,
      token: servers[0].accessToken,
      playlistId: playlistServer1Id,
      videoId: servers[0].videos[3].uuid,
      elementAttrs: {
        startTimestamp: 1
      }
    })

    await updateVideoPlaylistElement({
      url: servers[0].url,
      token: servers[0].accessToken,
      playlistId: playlistServer1Id,
      videoId: servers[0].videos[4].uuid,
      elementAttrs: {
        stopTimestamp: null
      }
    })

    await waitJobs(servers)

    for (const server of servers) {
      const res = await getPlaylistVideos(server.url, server.accessToken, playlistServer1UUID, 0, 10)
      const videos: Video[] = res.body.data

      expect(videos[0].name).to.equal('video 3 server 1')
      expect(videos[0].playlistElement.position).to.equal(1)
      expect(videos[0].playlistElement.startTimestamp).to.equal(1)
      expect(videos[0].playlistElement.stopTimestamp).to.equal(35)

      expect(videos[5].name).to.equal('video 4 server 1')
      expect(videos[5].playlistElement.position).to.equal(6)
      expect(videos[5].playlistElement.startTimestamp).to.equal(45)
      expect(videos[5].playlistElement.stopTimestamp).to.be.null
    }
  })

  it('Should check videos existence in my playlist', async function () {
    const videoIds = [
      servers[0].videos[0].id,
      42000,
      servers[0].videos[3].id,
      43000,
      servers[0].videos[4].id
    ]
    const res = await doVideosExistInMyPlaylist(servers[ 0 ].url, servers[ 0 ].accessToken, videoIds)
    const obj = res.body as VideoExistInPlaylist

    {
      const elem = obj[servers[0].videos[0].id]
      expect(elem).to.have.lengthOf(1)
      expect(elem[ 0 ].playlistId).to.equal(playlistServer1Id)
      expect(elem[ 0 ].startTimestamp).to.equal(15)
      expect(elem[ 0 ].stopTimestamp).to.equal(28)
    }

    {
      const elem = obj[servers[0].videos[3].id]
      expect(elem).to.have.lengthOf(1)
      expect(elem[ 0 ].playlistId).to.equal(playlistServer1Id)
      expect(elem[ 0 ].startTimestamp).to.equal(1)
      expect(elem[ 0 ].stopTimestamp).to.equal(35)
    }

    {
      const elem = obj[servers[0].videos[4].id]
      expect(elem).to.have.lengthOf(1)
      expect(elem[ 0 ].playlistId).to.equal(playlistServer1Id)
      expect(elem[ 0 ].startTimestamp).to.equal(45)
      expect(elem[ 0 ].stopTimestamp).to.equal(null)
    }

    expect(obj[42000]).to.have.lengthOf(0)
    expect(obj[43000]).to.have.lengthOf(0)
  })

  it('Should automatically update updatedAt field of playlists', async function () {
    const server = servers[1]
    const videoId = servers[1].videos[5].id

    async function getPlaylistNames () {
      const res = await getAccountPlaylistsListWithToken(server.url, server.accessToken, 'root', 0, 5, undefined, '-updatedAt')

      return (res.body.data as VideoPlaylist[]).map(p => p.displayName)
    }

    const elementAttrs = { videoId }
    await addVideoInPlaylist({ url: server.url, token: server.accessToken, playlistId: playlistServer2Id1, elementAttrs })
    await addVideoInPlaylist({ url: server.url, token: server.accessToken, playlistId: playlistServer2Id2, elementAttrs })

    const names1 = await getPlaylistNames()
    expect(names1[0]).to.equal('playlist 3 updated')
    expect(names1[1]).to.equal('playlist 2')

    await removeVideoFromPlaylist({ url: server.url, token: server.accessToken, playlistId: playlistServer2Id1, videoId })

    const names2 = await getPlaylistNames()
    expect(names2[0]).to.equal('playlist 2')
    expect(names2[1]).to.equal('playlist 3 updated')

    await removeVideoFromPlaylist({ url: server.url, token: server.accessToken, playlistId: playlistServer2Id2, videoId })

    const names3 = await getPlaylistNames()
    expect(names3[0]).to.equal('playlist 3 updated')
    expect(names3[1]).to.equal('playlist 2')
  })

  it('Should delete some elements', async function () {
    this.timeout(30000)

    await removeVideoFromPlaylist({
      url: servers[0].url,
      token: servers[0].accessToken,
      playlistId: playlistServer1Id,
      videoId: servers[0].videos[3].uuid
    })

    await removeVideoFromPlaylist({
      url: servers[0].url,
      token: servers[0].accessToken,
      playlistId: playlistServer1Id,
      videoId: nsfwVideoServer1
    })

    await waitJobs(servers)

    for (const server of servers) {
      const res = await getPlaylistVideos(server.url, server.accessToken, playlistServer1UUID, 0, 10)

      expect(res.body.total).to.equal(4)

      const videos: Video[] = res.body.data
      expect(videos).to.have.lengthOf(4)

      expect(videos[ 0 ].name).to.equal('video 0 server 1')
      expect(videos[ 0 ].playlistElement.position).to.equal(1)

      expect(videos[ 1 ].name).to.equal('video 2 server 3')
      expect(videos[ 1 ].playlistElement.position).to.equal(2)

      expect(videos[ 2 ].name).to.equal('video 1 server 3')
      expect(videos[ 2 ].playlistElement.position).to.equal(3)

      expect(videos[ 3 ].name).to.equal('video 4 server 1')
      expect(videos[ 3 ].playlistElement.position).to.equal(4)
    }
  })

  it('Should delete the playlist on server 1 and delete on server 2 and 3', async function () {
    this.timeout(30000)

    await deleteVideoPlaylist(servers[0].url, servers[0].accessToken, playlistServer1Id)

    await waitJobs(servers)

    for (const server of servers) {
      await getVideoPlaylist(server.url, playlistServer1UUID, 404)
    }
  })

  it('Should have deleted the thumbnail on server 1, 2 and 3', async function () {
    this.timeout(30000)

    for (const server of servers) {
      await checkPlaylistFilesWereRemoved(playlistServer1UUID, server.serverNumber)
    }
  })

  it('Should unfollow servers 1 and 2 and hide their playlists', async function () {
    this.timeout(30000)

    const finder = data => data.find(p => p.displayName === 'my super playlist')

    {
      const res = await getVideoPlaylistsList(servers[ 2 ].url, 0, 5)
      expect(res.body.total).to.equal(2)
      expect(finder(res.body.data)).to.not.be.undefined
    }

    await unfollow(servers[2].url, servers[2].accessToken, servers[0])

    {
      const res = await getVideoPlaylistsList(servers[ 2 ].url, 0, 5)
      expect(res.body.total).to.equal(1)

      expect(finder(res.body.data)).to.be.undefined
    }
  })

  it('Should delete a channel and put the associated playlist in private mode', async function () {
    this.timeout(30000)

    const res = await addVideoChannel(servers[0].url, servers[0].accessToken, { name: 'super_channel', displayName: 'super channel' })
    const videoChannelId = res.body.videoChannel.id

    const res2 = await createVideoPlaylist({
      url: servers[0].url,
      token: servers[0].accessToken,
      playlistAttrs: {
        displayName: 'channel playlist',
        privacy: VideoPlaylistPrivacy.PUBLIC,
        videoChannelId
      }
    })
    const videoPlaylistUUID = res2.body.videoPlaylist.uuid

    await waitJobs(servers)

    await deleteVideoChannel(servers[0].url, servers[0].accessToken, 'super_channel')

    await waitJobs(servers)

    const res3 = await getVideoPlaylistWithToken(servers[0].url, servers[0].accessToken, videoPlaylistUUID)
    expect(res3.body.displayName).to.equal('channel playlist')
    expect(res3.body.privacy.id).to.equal(VideoPlaylistPrivacy.PRIVATE)

    await getVideoPlaylist(servers[1].url, videoPlaylistUUID, 404)
  })

  it('Should delete an account and delete its playlists', async function () {
    this.timeout(30000)

    const user = { username: 'user_1', password: 'password' }
    const res = await createUser({
      url: servers[ 0 ].url,
      accessToken: servers[ 0 ].accessToken,
      username: user.username,
      password: user.password
    })

    const userId = res.body.user.id
    const userAccessToken = await userLogin(servers[0], user)

    const resChannel = await getMyUserInformation(servers[0].url, userAccessToken)
    const userChannel = (resChannel.body as User).videoChannels[0]

    await createVideoPlaylist({
      url: servers[0].url,
      token: userAccessToken,
      playlistAttrs: {
        displayName: 'playlist to be deleted',
        privacy: VideoPlaylistPrivacy.PUBLIC,
        videoChannelId: userChannel.id
      }
    })

    await waitJobs(servers)

    const finder = data => data.find(p => p.displayName === 'playlist to be deleted')

    {
      for (const server of [ servers[0], servers[1] ]) {
        const res = await getVideoPlaylistsList(server.url, 0, 15)
        expect(finder(res.body.data)).to.not.be.undefined
      }
    }

    await removeUser(servers[0].url, userId, servers[0].accessToken)
    await waitJobs(servers)

    {
      for (const server of [ servers[0], servers[1] ]) {
        const res = await getVideoPlaylistsList(server.url, 0, 15)
        expect(finder(res.body.data)).to.be.undefined
      }
    }
  })

  after(async function () {
    await cleanupTests(servers)
  })
})