Add concept of video state, and add ability to wait transcoding before
[oweals/peertube.git] / server / tests / api / videos / video-privacy.ts
1 /* tslint:disable:no-unused-expression */
2
3 import * as chai from 'chai'
4 import 'mocha'
5 import { VideoPrivacy } from '../../../../shared/models/videos/video-privacy.enum'
6 import {
7   flushAndRunMultipleServers,
8   flushTests,
9   getVideosList,
10   killallServers,
11   ServerInfo,
12   setAccessTokensToServers,
13   uploadVideo,
14   wait
15 } from '../../utils/index'
16 import { doubleFollow } from '../../utils/server/follows'
17 import { userLogin } from '../../utils/users/login'
18 import { createUser } from '../../utils/users/users'
19 import { getMyVideos, getVideo, getVideoWithToken, updateVideo } from '../../utils/videos/videos'
20
21 const expect = chai.expect
22
23 describe('Test video privacy', function () {
24   let servers: ServerInfo[] = []
25   let privateVideoId: number
26   let privateVideoUUID: string
27   let unlistedVideoUUID: string
28   let now: number
29
30   before(async function () {
31     this.timeout(50000)
32
33     // Run servers
34     servers = await flushAndRunMultipleServers(2)
35
36     // Get the access tokens
37     await setAccessTokensToServers(servers)
38
39     // Server 1 and server 2 follow each other
40     await doubleFollow(servers[0], servers[1])
41   })
42
43   it('Should upload a private video on server 1', async function () {
44     this.timeout(10000)
45
46     const attributes = {
47       privacy: VideoPrivacy.PRIVATE
48     }
49     await uploadVideo(servers[0].url, servers[0].accessToken, attributes)
50
51     await wait(5000)
52   })
53
54   it('Should not have this private video on server 2', async function () {
55     const res = await getVideosList(servers[1].url)
56
57     expect(res.body.total).to.equal(0)
58     expect(res.body.data).to.have.lengthOf(0)
59   })
60
61   it('Should list my (private) videos', async function () {
62     const res = await getMyVideos(servers[0].url, servers[0].accessToken, 0, 1)
63
64     expect(res.body.total).to.equal(1)
65     expect(res.body.data).to.have.lengthOf(1)
66
67     privateVideoId = res.body.data[0].id
68     privateVideoUUID = res.body.data[0].uuid
69   })
70
71   it('Should not be able to watch this video with non authenticated user', async function () {
72     await getVideo(servers[0].url, privateVideoUUID, 401)
73   })
74
75   it('Should not be able to watch this private video with another user', async function () {
76     this.timeout(10000)
77
78     const user = {
79       username: 'hello',
80       password: 'super password'
81     }
82     await createUser(servers[0].url, servers[0].accessToken, user.username, user.password)
83
84     const token = await userLogin(servers[0], user)
85     await getVideoWithToken(servers[0].url, token, privateVideoUUID, 403)
86   })
87
88   it('Should be able to watch this video with the correct user', async function () {
89     await getVideoWithToken(servers[0].url, servers[0].accessToken, privateVideoUUID)
90   })
91
92   it('Should upload an unlisted video on server 2', async function () {
93     this.timeout(30000)
94
95     const attributes = {
96       name: 'unlisted video',
97       privacy: VideoPrivacy.UNLISTED
98     }
99     await uploadVideo(servers[1].url, servers[1].accessToken, attributes)
100
101     // Server 2 has transcoding enabled
102     await wait(10000)
103   })
104
105   it('Should not have this unlisted video listed on server 1 and 2', async function () {
106     for (const server of servers) {
107       const res = await getVideosList(server.url)
108
109       expect(res.body.total).to.equal(0)
110       expect(res.body.data).to.have.lengthOf(0)
111     }
112   })
113
114   it('Should list my (unlisted) videos', async function () {
115     const res = await getMyVideos(servers[1].url, servers[1].accessToken, 0, 1)
116
117     expect(res.body.total).to.equal(1)
118     expect(res.body.data).to.have.lengthOf(1)
119
120     unlistedVideoUUID = res.body.data[0].uuid
121   })
122
123   it('Should be able to get this unlisted video', async function () {
124     for (const server of servers) {
125       const res = await getVideo(server.url, unlistedVideoUUID)
126
127       expect(res.body.name).to.equal('unlisted video')
128     }
129   })
130
131   it('Should update the private video to public on server 1', async function () {
132     this.timeout(10000)
133
134     const attribute = {
135       name: 'super video public',
136       privacy: VideoPrivacy.PUBLIC
137     }
138
139     now = Date.now()
140     await updateVideo(servers[0].url, servers[0].accessToken, privateVideoId, attribute)
141
142     await wait(5000)
143   })
144
145   it('Should have this new public video listed on server 1 and 2', async function () {
146     for (const server of servers) {
147       const res = await getVideosList(server.url)
148
149       expect(res.body.total).to.equal(1)
150       expect(res.body.data).to.have.lengthOf(1)
151       expect(res.body.data[0].name).to.equal('super video public')
152       expect(new Date(res.body.data[0].publishedAt).getTime()).to.be.at.least(now)
153     }
154   })
155
156   after(async function () {
157     killallServers(servers)
158
159     // Keep the logs if the test failed
160     if (this['ok']) {
161       await flushTests()
162     }
163   })
164 })