aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/videos/single-server.ts
blob: 9fd52933f7cc9cfa7e2084d29a508fe4635967a4 (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
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */

import { expect } from 'chai'
import { checkVideoFilesWereRemoved, completeVideoCheck, testImage } from '@server/tests/shared'
import { wait } from '@shared/core-utils'
import { Video, VideoPrivacy } from '@shared/models'
import {
  cleanupTests,
  createSingleServer,
  PeerTubeServer,
  setAccessTokensToServers,
  setDefaultAccountAvatar,
  setDefaultChannelAvatar,
  waitJobs
} from '@shared/server-commands'

describe('Test a single server', function () {

  function runSuite (mode: 'legacy' | 'resumable') {
    let server: PeerTubeServer = null
    let videoId: number | string
    let videoId2: string
    let videoUUID = ''
    let videosListBase: any[] = null

    const getCheckAttributes = () => ({
      name: 'my super name',
      category: 2,
      licence: 6,
      language: 'zh',
      nsfw: true,
      description: 'my super description',
      support: 'my super support text',
      account: {
        name: 'root',
        host: server.host
      },
      isLocal: true,
      duration: 5,
      tags: [ 'tag1', 'tag2', 'tag3' ],
      privacy: VideoPrivacy.PUBLIC,
      commentsEnabled: true,
      downloadEnabled: true,
      channel: {
        displayName: 'Main root channel',
        name: 'root_channel',
        description: '',
        isLocal: true
      },
      fixture: 'video_short.webm',
      files: [
        {
          resolution: 720,
          size: 218910
        }
      ]
    })

    const updateCheckAttributes = () => ({
      name: 'my super video updated',
      category: 4,
      licence: 2,
      language: 'ar',
      nsfw: false,
      description: 'my super description updated',
      support: 'my super support text updated',
      account: {
        name: 'root',
        host: server.host
      },
      isLocal: true,
      tags: [ 'tagup1', 'tagup2' ],
      privacy: VideoPrivacy.PUBLIC,
      duration: 5,
      commentsEnabled: false,
      downloadEnabled: false,
      channel: {
        name: 'root_channel',
        displayName: 'Main root channel',
        description: '',
        isLocal: true
      },
      fixture: 'video_short3.webm',
      files: [
        {
          resolution: 720,
          size: 292677
        }
      ]
    })

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

      server = await createSingleServer(1)

      await setAccessTokensToServers([ server ])
      await setDefaultChannelAvatar(server)
      await setDefaultAccountAvatar(server)
    })

    it('Should list video categories', async function () {
      const categories = await server.videos.getCategories()
      expect(Object.keys(categories)).to.have.length.above(10)

      expect(categories[11]).to.equal('News & Politics')
    })

    it('Should list video licences', async function () {
      const licences = await server.videos.getLicences()
      expect(Object.keys(licences)).to.have.length.above(5)

      expect(licences[3]).to.equal('Attribution - No Derivatives')
    })

    it('Should list video languages', async function () {
      const languages = await server.videos.getLanguages()
      expect(Object.keys(languages)).to.have.length.above(5)

      expect(languages['ru']).to.equal('Russian')
    })

    it('Should list video privacies', async function () {
      const privacies = await server.videos.getPrivacies()
      expect(Object.keys(privacies)).to.have.length.at.least(3)

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

    it('Should not have videos', async function () {
      const { data, total } = await server.videos.list()

      expect(total).to.equal(0)
      expect(data).to.be.an('array')
      expect(data.length).to.equal(0)
    })

    it('Should upload the video', async function () {
      this.timeout(10000)

      const attributes = {
        name: 'my super name',
        category: 2,
        nsfw: true,
        licence: 6,
        tags: [ 'tag1', 'tag2', 'tag3' ]
      }
      const video = await server.videos.upload({ attributes, mode })
      expect(video).to.not.be.undefined
      expect(video.id).to.equal(1)
      expect(video.uuid).to.have.length.above(5)

      videoId = video.id
      videoUUID = video.uuid
    })

    it('Should get and seed the uploaded video', async function () {
      this.timeout(5000)

      const { data, total } = await server.videos.list()

      expect(total).to.equal(1)
      expect(data).to.be.an('array')
      expect(data.length).to.equal(1)

      const video = data[0]
      await completeVideoCheck({ server, originServer: server, videoUUID: video.uuid, attributes: getCheckAttributes() })
    })

    it('Should get the video by UUID', async function () {
      this.timeout(5000)

      const video = await server.videos.get({ id: videoUUID })
      await completeVideoCheck({ server, originServer: server, videoUUID: video.uuid, attributes: getCheckAttributes() })
    })

    it('Should have the views updated', async function () {
      this.timeout(20000)

      await server.views.simulateView({ id: videoId })
      await server.views.simulateView({ id: videoId })
      await server.views.simulateView({ id: videoId })

      await wait(1500)

      await server.views.simulateView({ id: videoId })
      await server.views.simulateView({ id: videoId })

      await wait(1500)

      await server.views.simulateView({ id: videoId })
      await server.views.simulateView({ id: videoId })

      await server.debug.sendCommand({ body: { command: 'process-video-views-buffer' } })

      const video = await server.videos.get({ id: videoId })
      expect(video.views).to.equal(3)
    })

    it('Should remove the video', async function () {
      const video = await server.videos.get({ id: videoId })
      await server.videos.remove({ id: videoId })

      await checkVideoFilesWereRemoved({ video, server })
    })

    it('Should not have videos', async function () {
      const { total, data } = await server.videos.list()

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

    it('Should upload 6 videos', async function () {
      this.timeout(50000)

      const videos = new Set([
        'video_short.mp4', 'video_short.ogv', 'video_short.webm',
        'video_short1.webm', 'video_short2.webm', 'video_short3.webm'
      ])

      for (const video of videos) {
        const attributes = {
          name: video + ' name',
          description: video + ' description',
          category: 2,
          licence: 1,
          language: 'en',
          nsfw: true,
          tags: [ 'tag1', 'tag2', 'tag3' ],
          fixture: video
        }

        await server.videos.upload({ attributes, mode })
      }
    })

    it('Should have the correct durations', async function () {
      const { total, data } = await server.videos.list()

      expect(total).to.equal(6)
      expect(data).to.be.an('array')
      expect(data).to.have.lengthOf(6)

      const videosByName: { [ name: string ]: Video } = {}
      data.forEach(v => { videosByName[v.name] = v })

      expect(videosByName['video_short.mp4 name'].duration).to.equal(5)
      expect(videosByName['video_short.ogv name'].duration).to.equal(5)
      expect(videosByName['video_short.webm name'].duration).to.equal(5)
      expect(videosByName['video_short1.webm name'].duration).to.equal(10)
      expect(videosByName['video_short2.webm name'].duration).to.equal(5)
      expect(videosByName['video_short3.webm name'].duration).to.equal(5)
    })

    it('Should have the correct thumbnails', async function () {
      const { data } = await server.videos.list()

      // For the next test
      videosListBase = data

      for (const video of data) {
        const videoName = video.name.replace(' name', '')
        await testImage(server.url, videoName, video.thumbnailPath)
      }
    })

    it('Should list only the two first videos', async function () {
      const { total, data } = await server.videos.list({ start: 0, count: 2, sort: 'name' })

      expect(total).to.equal(6)
      expect(data.length).to.equal(2)
      expect(data[0].name).to.equal(videosListBase[0].name)
      expect(data[1].name).to.equal(videosListBase[1].name)
    })

    it('Should list only the next three videos', async function () {
      const { total, data } = await server.videos.list({ start: 2, count: 3, sort: 'name' })

      expect(total).to.equal(6)
      expect(data.length).to.equal(3)
      expect(data[0].name).to.equal(videosListBase[2].name)
      expect(data[1].name).to.equal(videosListBase[3].name)
      expect(data[2].name).to.equal(videosListBase[4].name)
    })

    it('Should list the last video', async function () {
      const { total, data } = await server.videos.list({ start: 5, count: 6, sort: 'name' })

      expect(total).to.equal(6)
      expect(data.length).to.equal(1)
      expect(data[0].name).to.equal(videosListBase[5].name)
    })

    it('Should not have the total field', async function () {
      const { total, data } = await server.videos.list({ start: 5, count: 6, sort: 'name', skipCount: true })

      expect(total).to.not.exist
      expect(data.length).to.equal(1)
      expect(data[0].name).to.equal(videosListBase[5].name)
    })

    it('Should list and sort by name in descending order', async function () {
      const { total, data } = await server.videos.list({ sort: '-name' })

      expect(total).to.equal(6)
      expect(data.length).to.equal(6)
      expect(data[0].name).to.equal('video_short.webm name')
      expect(data[1].name).to.equal('video_short.ogv name')
      expect(data[2].name).to.equal('video_short.mp4 name')
      expect(data[3].name).to.equal('video_short3.webm name')
      expect(data[4].name).to.equal('video_short2.webm name')
      expect(data[5].name).to.equal('video_short1.webm name')

      videoId = data[3].uuid
      videoId2 = data[5].uuid
    })

    it('Should list and sort by trending in descending order', async function () {
      const { total, data } = await server.videos.list({ start: 0, count: 2, sort: '-trending' })

      expect(total).to.equal(6)
      expect(data.length).to.equal(2)
    })

    it('Should list and sort by hotness in descending order', async function () {
      const { total, data } = await server.videos.list({ start: 0, count: 2, sort: '-hot' })

      expect(total).to.equal(6)
      expect(data.length).to.equal(2)
    })

    it('Should list and sort by best in descending order', async function () {
      const { total, data } = await server.videos.list({ start: 0, count: 2, sort: '-best' })

      expect(total).to.equal(6)
      expect(data.length).to.equal(2)
    })

    it('Should update a video', async function () {
      const attributes = {
        name: 'my super video updated',
        category: 4,
        licence: 2,
        language: 'ar',
        nsfw: false,
        description: 'my super description updated',
        commentsEnabled: false,
        downloadEnabled: false,
        tags: [ 'tagup1', 'tagup2' ]
      }
      await server.videos.update({ id: videoId, attributes })
    })

    it('Should have the video updated', async function () {
      this.timeout(60000)

      await waitJobs([ server ])

      const video = await server.videos.get({ id: videoId })

      await completeVideoCheck({ server, originServer: server, videoUUID: video.uuid, attributes: updateCheckAttributes() })
    })

    it('Should update only the tags of a video', async function () {
      const attributes = {
        tags: [ 'supertag', 'tag1', 'tag2' ]
      }
      await server.videos.update({ id: videoId, attributes })

      const video = await server.videos.get({ id: videoId })

      await completeVideoCheck({
        server,
        originServer: server,
        videoUUID: video.uuid,
        attributes: Object.assign(updateCheckAttributes(), attributes)
      })
    })

    it('Should update only the description of a video', async function () {
      const attributes = {
        description: 'hello everybody'
      }
      await server.videos.update({ id: videoId, attributes })

      const video = await server.videos.get({ id: videoId })

      await completeVideoCheck({
        server,
        originServer: server,
        videoUUID: video.uuid,
        attributes: Object.assign(updateCheckAttributes(), { tags: [ 'supertag', 'tag1', 'tag2' ] }, attributes)
      })
    })

    it('Should like a video', async function () {
      await server.videos.rate({ id: videoId, rating: 'like' })

      const video = await server.videos.get({ id: videoId })

      expect(video.likes).to.equal(1)
      expect(video.dislikes).to.equal(0)
    })

    it('Should dislike the same video', async function () {
      await server.videos.rate({ id: videoId, rating: 'dislike' })

      const video = await server.videos.get({ id: videoId })

      expect(video.likes).to.equal(0)
      expect(video.dislikes).to.equal(1)
    })

    it('Should sort by originallyPublishedAt', async function () {
      {
        const now = new Date()
        const attributes = { originallyPublishedAt: now.toISOString() }
        await server.videos.update({ id: videoId, attributes })

        const { data } = await server.videos.list({ sort: '-originallyPublishedAt' })
        const names = data.map(v => v.name)

        expect(names[0]).to.equal('my super video updated')
        expect(names[1]).to.equal('video_short2.webm name')
        expect(names[2]).to.equal('video_short1.webm name')
        expect(names[3]).to.equal('video_short.webm name')
        expect(names[4]).to.equal('video_short.ogv name')
        expect(names[5]).to.equal('video_short.mp4 name')
      }

      {
        const now = new Date()
        const attributes = { originallyPublishedAt: now.toISOString() }
        await server.videos.update({ id: videoId2, attributes })

        const { data } = await server.videos.list({ sort: '-originallyPublishedAt' })
        const names = data.map(v => v.name)

        expect(names[0]).to.equal('video_short1.webm name')
        expect(names[1]).to.equal('my super video updated')
        expect(names[2]).to.equal('video_short2.webm name')
        expect(names[3]).to.equal('video_short.webm name')
        expect(names[4]).to.equal('video_short.ogv name')
        expect(names[5]).to.equal('video_short.mp4 name')
      }
    })

    after(async function () {
      await cleanupTests([ server ])
    })
  }

  describe('Legacy upload', function () {
    runSuite('legacy')
  })

  describe('Resumable upload', function () {
    runSuite('resumable')
  })
})