aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/videos/video-playlist-thumbnails.ts
blob: 73ab02c17bbfb606a3145a9200843f49967c935f (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
/* tslint:disable:no-unused-expression */

import * as chai from 'chai'
import 'mocha'
import {
  addVideoInPlaylist,
  cleanupTests,
  createVideoPlaylist,
  doubleFollow,
  flushAndRunMultipleServers,
  getVideoPlaylistsList, removeVideoFromPlaylist,
  ServerInfo,
  setAccessTokensToServers,
  setDefaultVideoChannel,
  testImage,
  uploadVideoAndGetId,
  waitJobs,
  reorderVideosPlaylist
} from '../../../../shared/extra-utils'
import { VideoPlaylistPrivacy } from '../../../../shared/models/videos/playlist/video-playlist-privacy.model'

const expect = chai.expect

describe('Playlist thumbnail', function () {
  let servers: ServerInfo[] = []

  let playlistWithoutThumbnail: number
  let playlistWithThumbnail: number

  let withThumbnailE1: number
  let withThumbnailE2: number
  let withoutThumbnailE1: number
  let withoutThumbnailE2: number

  let video1: number
  let video2: number

  async function getPlaylistWithoutThumbnail (server: ServerInfo) {
    const res = await getVideoPlaylistsList(server.url, 0, 10)

    return res.body.data.find(p => p.displayName === 'playlist without thumbnail')
  }

  async function getPlaylistWithThumbnail (server: ServerInfo) {
    const res = await getVideoPlaylistsList(server.url, 0, 10)

    return res.body.data.find(p => p.displayName === 'playlist with thumbnail')
  }

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

    servers = await flushAndRunMultipleServers(2, { 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])

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

    await waitJobs(servers)
  })

  it('Should automatically update the thumbnail when adding an element', async function () {
    this.timeout(30000)

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

    const res2 = await addVideoInPlaylist({
      url: servers[ 1 ].url,
      token: servers[ 1 ].accessToken,
      playlistId: playlistWithoutThumbnail,
      elementAttrs: { videoId: video1 }
    })
    withoutThumbnailE1 = res2.body.videoPlaylistElement.id

    await waitJobs(servers)

    for (const server of servers) {
      const p = await getPlaylistWithoutThumbnail(server)
      await testImage(server.url, 'thumbnail-playlist', p.thumbnailPath)
    }
  })

  it('Should not update the thumbnail if we explicitly uploaded a thumbnail', async function () {
    this.timeout(30000)

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

    const res2 = await addVideoInPlaylist({
      url: servers[ 1 ].url,
      token: servers[ 1 ].accessToken,
      playlistId: playlistWithThumbnail,
      elementAttrs: { videoId: video1 }
    })
    withThumbnailE1 = res2.body.videoPlaylistElement.id

    await waitJobs(servers)

    for (const server of servers) {
      const p = await getPlaylistWithThumbnail(server)
      await testImage(server.url, 'thumbnail', p.thumbnailPath)
    }
  })

  it('Should automatically update the thumbnail when moving the first element', async function () {
    this.timeout(30000)

    const res = await addVideoInPlaylist({
      url: servers[ 1 ].url,
      token: servers[ 1 ].accessToken,
      playlistId: playlistWithoutThumbnail,
      elementAttrs: { videoId: video2 }
    })
    withoutThumbnailE2 = res.body.videoPlaylistElement.id

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

    await waitJobs(servers)

    for (const server of servers) {
      const p = await getPlaylistWithoutThumbnail(server)
      await testImage(server.url, 'thumbnail-playlist', p.thumbnailPath)
    }
  })

  it('Should not update the thumbnail when moving the first element if we explicitly uploaded a thumbnail', async function () {
    this.timeout(30000)

    const res = await addVideoInPlaylist({
      url: servers[ 1 ].url,
      token: servers[ 1 ].accessToken,
      playlistId: playlistWithThumbnail,
      elementAttrs: { videoId: video2 }
    })
    withThumbnailE2 = res.body.videoPlaylistElement.id

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

    await waitJobs(servers)

    for (const server of servers) {
      const p = await getPlaylistWithThumbnail(server)
      await testImage(server.url, 'thumbnail', p.thumbnailPath)
    }
  })

  it('Should automatically update the thumbnail when deleting the first element', async function () {
    this.timeout(30000)

    await removeVideoFromPlaylist({
      url: servers[ 1 ].url,
      token: servers[ 1 ].accessToken,
      playlistId: playlistWithoutThumbnail,
      playlistElementId: withoutThumbnailE1
    })

    await waitJobs(servers)

    for (const server of servers) {
      const p = await getPlaylistWithoutThumbnail(server)
      await testImage(server.url, 'thumbnail-playlist', p.thumbnailPath)
    }
  })

  it('Should not update the thumbnail when deleting the first element if we explicitly uploaded a thumbnail', async function () {
    this.timeout(30000)

    await removeVideoFromPlaylist({
      url: servers[ 1 ].url,
      token: servers[ 1 ].accessToken,
      playlistId: playlistWithThumbnail,
      playlistElementId: withThumbnailE1
    })

    await waitJobs(servers)

    for (const server of servers) {
      const p = await getPlaylistWithThumbnail(server)
      await testImage(server.url, 'thumbnail', p.thumbnailPath)
    }
  })

  it('Should the thumbnail when we delete the last element', async function () {
    this.timeout(30000)

    await removeVideoFromPlaylist({
      url: servers[ 1 ].url,
      token: servers[ 1 ].accessToken,
      playlistId: playlistWithoutThumbnail,
      playlistElementId: withoutThumbnailE2
    })

    await waitJobs(servers)

    for (const server of servers) {
      const p = await getPlaylistWithoutThumbnail(server)
      expect(p.thumbnailPath).to.be.null
    }
  })

  it('Should not update the thumbnail when we delete the last element if we explicitly uploaded a thumbnail', async function () {
    this.timeout(30000)

    await removeVideoFromPlaylist({
      url: servers[ 1 ].url,
      token: servers[ 1 ].accessToken,
      playlistId: playlistWithThumbnail,
      playlistElementId: withThumbnailE2
    })

    await waitJobs(servers)

    for (const server of servers) {
      const p = await getPlaylistWithThumbnail(server)
      await testImage(server.url, 'thumbnail', p.thumbnailPath)
    }
  })

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