Merge branch 'develop' into pr/1217
[oweals/peertube.git] / server / tests / api / videos / videos-overview.ts
1 /* tslint:disable:no-unused-expression */
2
3 import * as chai from 'chai'
4 import 'mocha'
5 import { flushTests, killallServers, runServer, ServerInfo, setAccessTokensToServers, uploadVideo } from '../../../../shared/utils'
6 import { getVideosOverview } from '../../../../shared/utils/overviews/overviews'
7 import { VideosOverview } from '../../../../shared/models/overviews'
8
9 const expect = chai.expect
10
11 describe('Test a videos overview', function () {
12   let server: ServerInfo = null
13
14   before(async function () {
15     this.timeout(30000)
16
17     await flushTests()
18
19     server = await runServer(1)
20
21     await setAccessTokensToServers([ server ])
22   })
23
24   it('Should send empty overview', async function () {
25     const res = await getVideosOverview(server.url)
26
27     const overview: VideosOverview = res.body
28     expect(overview.tags).to.have.lengthOf(0)
29     expect(overview.categories).to.have.lengthOf(0)
30     expect(overview.channels).to.have.lengthOf(0)
31   })
32
33   it('Should upload 5 videos in a specific category, tag and channel but not include them in overview', async function () {
34     this.timeout(15000)
35
36     for (let i = 0; i < 5; i++) {
37       await uploadVideo(server.url, server.accessToken, {
38         name: 'video ' + i,
39         category: 3,
40         tags: [ 'coucou1', 'coucou2' ]
41       })
42     }
43
44     const res = await getVideosOverview(server.url)
45
46     const overview: VideosOverview = res.body
47     expect(overview.tags).to.have.lengthOf(0)
48     expect(overview.categories).to.have.lengthOf(0)
49     expect(overview.channels).to.have.lengthOf(0)
50   })
51
52   it('Should upload another video and include all videos in the overview', async function () {
53     await uploadVideo(server.url, server.accessToken, {
54       name: 'video 5',
55       category: 3,
56       tags: [ 'coucou1', 'coucou2' ]
57     })
58
59     const res = await getVideosOverview(server.url)
60
61     const overview: VideosOverview = res.body
62     expect(overview.tags).to.have.lengthOf(2)
63     expect(overview.categories).to.have.lengthOf(1)
64     expect(overview.channels).to.have.lengthOf(1)
65   })
66
67   it('Should have the correct overview', async function () {
68     const res = await getVideosOverview(server.url)
69
70     const overview: VideosOverview = res.body
71
72     for (const attr of [ 'tags', 'categories', 'channels' ]) {
73       const obj = overview[attr][0]
74
75       expect(obj.videos).to.have.lengthOf(6)
76       expect(obj.videos[0].name).to.equal('video 5')
77       expect(obj.videos[1].name).to.equal('video 4')
78       expect(obj.videos[2].name).to.equal('video 3')
79       expect(obj.videos[3].name).to.equal('video 2')
80       expect(obj.videos[4].name).to.equal('video 1')
81       expect(obj.videos[5].name).to.equal('video 0')
82     }
83
84     expect(overview.tags.find(t => t.tag === 'coucou1')).to.not.be.undefined
85     expect(overview.tags.find(t => t.tag === 'coucou2')).to.not.be.undefined
86
87     expect(overview.categories[0].category.id).to.equal(3)
88
89     expect(overview.channels[0].channel.name).to.equal('root_channel')
90   })
91
92   after(async function () {
93     killallServers([ server ])
94
95     // Keep the logs if the test failed
96     if (this['ok']) {
97       await flushTests()
98     }
99   })
100 })