aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/search/search-activitypub-video-playlists.ts
blob: 4c08e9548c04cf7b081baed4e8f2564d6a9863d8 (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
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */

import 'mocha'
import * as chai from 'chai'
import {
  addVideoInPlaylist,
  cleanupTests,
  createVideoPlaylist,
  deleteVideoPlaylist,
  flushAndRunMultipleServers,
  getVideoPlaylistsList,
  searchVideoPlaylists,
  ServerInfo,
  setAccessTokensToServers,
  setDefaultVideoChannel,
  uploadVideoAndGetId,
  wait
} from '../../../../shared/extra-utils'
import { waitJobs } from '../../../../shared/extra-utils/server/jobs'
import { VideoPlaylist, VideoPlaylistPrivacy } from '../../../../shared/models/videos'

const expect = chai.expect

describe('Test ActivityPub playlists search', function () {
  let servers: ServerInfo[]
  let playlistServer1UUID: string
  let playlistServer2UUID: string
  let video2Server2: string

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

    servers = await flushAndRunMultipleServers(2)

    await setAccessTokensToServers(servers)
    await setDefaultVideoChannel(servers)

    {
      const video1 = (await uploadVideoAndGetId({ server: servers[0], videoName: 'video 1' })).uuid
      const video2 = (await uploadVideoAndGetId({ server: servers[0], videoName: 'video 2' })).uuid

      const attributes = {
        displayName: 'playlist 1 on server 1',
        privacy: VideoPlaylistPrivacy.PUBLIC,
        videoChannelId: servers[0].videoChannel.id
      }
      const res = await createVideoPlaylist({ url: servers[0].url, token: servers[0].accessToken, playlistAttrs: attributes })
      playlistServer1UUID = res.body.videoPlaylist.uuid

      for (const videoId of [ video1, video2 ]) {
        await addVideoInPlaylist({
          url: servers[0].url,
          token: servers[0].accessToken,
          playlistId: playlistServer1UUID,
          elementAttrs: { videoId }
        })
      }
    }

    {
      const videoId = (await uploadVideoAndGetId({ server: servers[1], videoName: 'video 1' })).uuid
      video2Server2 = (await uploadVideoAndGetId({ server: servers[1], videoName: 'video 2' })).uuid

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

      await addVideoInPlaylist({
        url: servers[1].url,
        token: servers[1].accessToken,
        playlistId: playlistServer2UUID,
        elementAttrs: { videoId }
      })
    }

    await waitJobs(servers)
  })

  it('Should not find a remote playlist', async function () {
    {
      const search = 'http://localhost:' + servers[1].port + '/video-playlists/43'
      const res = await searchVideoPlaylists(servers[0].url, search, servers[0].accessToken)

      expect(res.body.total).to.equal(0)
      expect(res.body.data).to.be.an('array')
      expect(res.body.data).to.have.lengthOf(0)
    }

    {
      // Without token
      const search = 'http://localhost:' + servers[1].port + '/video-playlists/' + playlistServer2UUID
      const res = await searchVideoPlaylists(servers[0].url, search)

      expect(res.body.total).to.equal(0)
      expect(res.body.data).to.be.an('array')
      expect(res.body.data).to.have.lengthOf(0)
    }
  })

  it('Should search a local playlist', async function () {
    const search = 'http://localhost:' + servers[0].port + '/video-playlists/' + playlistServer1UUID
    const res = await searchVideoPlaylists(servers[0].url, search)

    expect(res.body.total).to.equal(1)
    expect(res.body.data).to.be.an('array')
    expect(res.body.data).to.have.lengthOf(1)
    expect(res.body.data[0].displayName).to.equal('playlist 1 on server 1')
    expect(res.body.data[0].videosLength).to.equal(2)
  })

  it('Should search a local playlist with an alternative URL', async function () {
    const searches = [
      'http://localhost:' + servers[0].port + '/videos/watch/playlist/' + playlistServer1UUID,
      'http://localhost:' + servers[0].port + '/w/p/' + playlistServer1UUID
    ]

    for (const search of searches) {
      for (const token of [ undefined, servers[0].accessToken ]) {
        const res = await searchVideoPlaylists(servers[0].url, search, token)

        expect(res.body.total).to.equal(1)
        expect(res.body.data).to.be.an('array')
        expect(res.body.data).to.have.lengthOf(1)
        expect(res.body.data[0].displayName).to.equal('playlist 1 on server 1')
        expect(res.body.data[0].videosLength).to.equal(2)
      }
    }
  })

  it('Should search a remote playlist', async function () {
    const searches = [
      'http://localhost:' + servers[1].port + '/video-playlists/' + playlistServer2UUID,
      'http://localhost:' + servers[1].port + '/videos/watch/playlist/' + playlistServer2UUID,
      'http://localhost:' + servers[1].port + '/w/p/' + playlistServer2UUID
    ]

    for (const search of searches) {
      const res = await searchVideoPlaylists(servers[0].url, search, servers[0].accessToken)

      expect(res.body.total).to.equal(1)
      expect(res.body.data).to.be.an('array')
      expect(res.body.data).to.have.lengthOf(1)
      expect(res.body.data[0].displayName).to.equal('playlist 1 on server 2')
      expect(res.body.data[0].videosLength).to.equal(1)
    }
  })

  it('Should not list this remote playlist', async function () {
    const res = await getVideoPlaylistsList(servers[0].url, 0, 10)
    expect(res.body.total).to.equal(1)
    expect(res.body.data).to.have.lengthOf(1)
    expect(res.body.data[0].displayName).to.equal('playlist 1 on server 1')
  })

  it('Should update the playlist of server 2, and refresh it on server 1', async function () {
    this.timeout(60000)

    await addVideoInPlaylist({
      url: servers[1].url,
      token: servers[1].accessToken,
      playlistId: playlistServer2UUID,
      elementAttrs: { videoId: video2Server2 }
    })

    await waitJobs(servers)
    // Expire playlist
    await wait(10000)

    // Will run refresh async
    const search = 'http://localhost:' + servers[1].port + '/video-playlists/' + playlistServer2UUID
    await searchVideoPlaylists(servers[0].url, search, servers[0].accessToken)

    // Wait refresh
    await wait(5000)

    const res = await searchVideoPlaylists(servers[0].url, search, servers[0].accessToken)
    expect(res.body.total).to.equal(1)
    expect(res.body.data).to.have.lengthOf(1)

    const playlist: VideoPlaylist = res.body.data[0]
    expect(playlist.videosLength).to.equal(2)
  })

  it('Should delete playlist of server 2, and delete it on server 1', async function () {
    this.timeout(60000)

    await deleteVideoPlaylist(servers[1].url, servers[1].accessToken, playlistServer2UUID)

    await waitJobs(servers)
    // Expiration
    await wait(10000)

    // Will run refresh async
    const search = 'http://localhost:' + servers[1].port + '/video-playlists/' + playlistServer2UUID
    await searchVideoPlaylists(servers[0].url, search, servers[0].accessToken)

    // Wait refresh
    await wait(5000)

    const res = await searchVideoPlaylists(servers[0].url, search, servers[0].accessToken)
    expect(res.body.total).to.equal(0)
    expect(res.body.data).to.have.lengthOf(0)
  })

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