]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/api/videos/video-privacy.ts
Introduce captions command
[github/Chocobozzz/PeerTube.git] / server / tests / api / videos / video-privacy.ts
CommitLineData
a1587156 1/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
11474c3c 2
975e6e0e 3import 'mocha'
d4a8e7a6
C
4import * as chai from 'chai'
5import { HttpStatusCode } from '@shared/core-utils/miscs/http-error-codes'
6import { Video, VideoCreateResult } from '@shared/models'
11474c3c 7import {
7c3b7976 8 cleanupTests,
3092e9bb 9 flushAndRunServer,
a1587156
C
10 getVideosList,
11 getVideosListWithToken,
975e6e0e 12 ServerInfo,
11474c3c 13 setAccessTokensToServers,
3cd0734f 14 uploadVideo
94565d52
C
15} from '../../../../shared/extra-utils/index'
16import { doubleFollow } from '../../../../shared/extra-utils/server/follows'
d4a8e7a6 17import { waitJobs } from '../../../../shared/extra-utils/server/jobs'
94565d52
C
18import { userLogin } from '../../../../shared/extra-utils/users/login'
19import { createUser } from '../../../../shared/extra-utils/users/users'
20import { getMyVideos, getVideo, getVideoWithToken, updateVideo } from '../../../../shared/extra-utils/videos/videos'
d4a8e7a6 21import { VideoPrivacy } from '../../../../shared/models/videos/video-privacy.enum'
975e6e0e
C
22
23const expect = chai.expect
11474c3c
C
24
25describe('Test video privacy', function () {
3092e9bb 26 const servers: ServerInfo[] = []
22a73cb8
C
27 let anotherUserToken: string
28
c49db162
C
29 let privateVideoId: number
30 let privateVideoUUID: string
22a73cb8
C
31
32 let internalVideoId: number
33 let internalVideoUUID: string
34
d4a8e7a6 35 let unlistedVideo: VideoCreateResult
3092e9bb 36 let nonFederatedUnlistedVideoUUID: string
22a73cb8 37
c49db162 38 let now: number
11474c3c 39
3092e9bb
LB
40 const dontFederateUnlistedConfig = {
41 federation: {
42 videos: {
43 federate_unlisted: false
44 }
45 }
46 }
47
11474c3c 48 before(async function () {
572f8d3d 49 this.timeout(50000)
11474c3c
C
50
51 // Run servers
3092e9bb
LB
52 servers.push(await flushAndRunServer(1, dontFederateUnlistedConfig))
53 servers.push(await flushAndRunServer(2))
11474c3c
C
54
55 // Get the access tokens
56 await setAccessTokensToServers(servers)
57
975e6e0e
C
58 // Server 1 and server 2 follow each other
59 await doubleFollow(servers[0], servers[1])
11474c3c
C
60 })
61
d4a8e7a6 62 describe('Private and internal videos', function () {
11474c3c 63
d4a8e7a6
C
64 it('Should upload a private and internal videos on server 1', async function () {
65 this.timeout(10000)
11474c3c 66
d4a8e7a6
C
67 for (const privacy of [ VideoPrivacy.PRIVATE, VideoPrivacy.INTERNAL ]) {
68 const attributes = { privacy }
69 await uploadVideo(servers[0].url, servers[0].accessToken, attributes)
70 }
11474c3c 71
d4a8e7a6
C
72 await waitJobs(servers)
73 })
11474c3c 74
d4a8e7a6
C
75 it('Should not have these private and internal videos on server 2', async function () {
76 const res = await getVideosList(servers[1].url)
11474c3c 77
d4a8e7a6
C
78 expect(res.body.total).to.equal(0)
79 expect(res.body.data).to.have.lengthOf(0)
80 })
22a73cb8 81
d4a8e7a6
C
82 it('Should not list the private and internal videos for an unauthenticated user on server 1', async function () {
83 const res = await getVideosList(servers[0].url)
84
85 expect(res.body.total).to.equal(0)
86 expect(res.body.data).to.have.lengthOf(0)
87 })
22a73cb8 88
d4a8e7a6
C
89 it('Should not list the private video and list the internal video for an authenticated user on server 1', async function () {
90 const res = await getVideosListWithToken(servers[0].url, servers[0].accessToken)
11474c3c 91
d4a8e7a6
C
92 expect(res.body.total).to.equal(1)
93 expect(res.body.data).to.have.lengthOf(1)
11474c3c 94
d4a8e7a6
C
95 expect(res.body.data[0].privacy.id).to.equal(VideoPrivacy.INTERNAL)
96 })
22a73cb8 97
d4a8e7a6
C
98 it('Should list my (private and internal) videos', async function () {
99 const res = await getMyVideos(servers[0].url, servers[0].accessToken, 0, 10)
22a73cb8 100
d4a8e7a6
C
101 expect(res.body.total).to.equal(2)
102 expect(res.body.data).to.have.lengthOf(2)
22a73cb8 103
d4a8e7a6 104 const videos: Video[] = res.body.data
22a73cb8 105
d4a8e7a6
C
106 const privateVideo = videos.find(v => v.privacy.id === VideoPrivacy.PRIVATE)
107 privateVideoId = privateVideo.id
108 privateVideoUUID = privateVideo.uuid
22a73cb8 109
d4a8e7a6
C
110 const internalVideo = videos.find(v => v.privacy.id === VideoPrivacy.INTERNAL)
111 internalVideoId = internalVideo.id
112 internalVideoUUID = internalVideo.uuid
113 })
11474c3c 114
d4a8e7a6
C
115 it('Should not be able to watch the private/internal video with non authenticated user', async function () {
116 await getVideo(servers[0].url, privateVideoUUID, HttpStatusCode.UNAUTHORIZED_401)
117 await getVideo(servers[0].url, internalVideoUUID, HttpStatusCode.UNAUTHORIZED_401)
118 })
11474c3c 119
d4a8e7a6
C
120 it('Should not be able to watch the private video with another user', async function () {
121 this.timeout(10000)
77a87fec 122
d4a8e7a6
C
123 const user = {
124 username: 'hello',
125 password: 'super password'
126 }
127 await createUser({ url: servers[0].url, accessToken: servers[0].accessToken, username: user.username, password: user.password })
11474c3c 128
d4a8e7a6
C
129 anotherUserToken = await userLogin(servers[0], user)
130 await getVideoWithToken(servers[0].url, anotherUserToken, privateVideoUUID, HttpStatusCode.FORBIDDEN_403)
131 })
11474c3c 132
d4a8e7a6
C
133 it('Should be able to watch the internal video with another user', async function () {
134 await getVideoWithToken(servers[0].url, anotherUserToken, internalVideoUUID, HttpStatusCode.OK_200)
135 })
22a73cb8 136
d4a8e7a6
C
137 it('Should be able to watch the private video with the correct user', async function () {
138 await getVideoWithToken(servers[0].url, servers[0].accessToken, privateVideoUUID, HttpStatusCode.OK_200)
139 })
11474c3c
C
140 })
141
d4a8e7a6 142 describe('Unlisted videos', function () {
11474c3c 143
d4a8e7a6
C
144 it('Should upload an unlisted video on server 2', async function () {
145 this.timeout(60000)
11474c3c 146
d4a8e7a6
C
147 const attributes = {
148 name: 'unlisted video',
149 privacy: VideoPrivacy.UNLISTED
150 }
151 await uploadVideo(servers[1].url, servers[1].accessToken, attributes)
11474c3c 152
d4a8e7a6
C
153 // Server 2 has transcoding enabled
154 await waitJobs(servers)
155 })
11474c3c 156
d4a8e7a6
C
157 it('Should not have this unlisted video listed on server 1 and 2', async function () {
158 for (const server of servers) {
159 const res = await getVideosList(server.url)
11474c3c 160
d4a8e7a6
C
161 expect(res.body.total).to.equal(0)
162 expect(res.body.data).to.have.lengthOf(0)
163 }
164 })
11474c3c 165
d4a8e7a6
C
166 it('Should list my (unlisted) videos', async function () {
167 const res = await getMyVideos(servers[1].url, servers[1].accessToken, 0, 1)
11474c3c 168
d4a8e7a6
C
169 expect(res.body.total).to.equal(1)
170 expect(res.body.data).to.have.lengthOf(1)
11474c3c 171
d4a8e7a6
C
172 unlistedVideo = res.body.data[0]
173 })
11474c3c 174
d4a8e7a6
C
175 it('Should not be able to get this unlisted video using its id', async function () {
176 await getVideo(servers[1].url, unlistedVideo.id, 404)
177 })
11474c3c 178
d4a8e7a6
C
179 it('Should be able to get this unlisted video using its uuid/shortUUID', async function () {
180 for (const server of servers) {
181 for (const id of [ unlistedVideo.uuid, unlistedVideo.shortUUID ]) {
182 const res = await getVideo(server.url, id)
3092e9bb 183
d4a8e7a6
C
184 expect(res.body.name).to.equal('unlisted video')
185 }
186 }
187 })
3092e9bb 188
d4a8e7a6
C
189 it('Should upload a non-federating unlisted video to server 1', async function () {
190 this.timeout(30000)
191
192 const attributes = {
193 name: 'unlisted video',
194 privacy: VideoPrivacy.UNLISTED
195 }
196 await uploadVideo(servers[0].url, servers[0].accessToken, attributes)
3092e9bb 197
d4a8e7a6
C
198 await waitJobs(servers)
199 })
3092e9bb 200
d4a8e7a6
C
201 it('Should list my new unlisted video', async function () {
202 const res = await getMyVideos(servers[0].url, servers[0].accessToken, 0, 3)
3092e9bb 203
d4a8e7a6
C
204 expect(res.body.total).to.equal(3)
205 expect(res.body.data).to.have.lengthOf(3)
3092e9bb 206
d4a8e7a6
C
207 nonFederatedUnlistedVideoUUID = res.body.data[0].uuid
208 })
3092e9bb 209
d4a8e7a6
C
210 it('Should be able to get non-federated unlisted video from origin', async function () {
211 const res = await getVideo(servers[0].url, nonFederatedUnlistedVideoUUID)
3092e9bb 212
d4a8e7a6
C
213 expect(res.body.name).to.equal('unlisted video')
214 })
215
216 it('Should not be able to get non-federated unlisted video from federated server', async function () {
217 await getVideo(servers[1].url, nonFederatedUnlistedVideoUUID, HttpStatusCode.NOT_FOUND_404)
218 })
3092e9bb
LB
219 })
220
d4a8e7a6 221 describe('Privacy update', function () {
11474c3c 222
d4a8e7a6
C
223 it('Should update the private and internal videos to public on server 1', async function () {
224 this.timeout(10000)
22a73cb8 225
d4a8e7a6 226 now = Date.now()
22a73cb8 227
d4a8e7a6
C
228 {
229 const attribute = {
230 name: 'private video becomes public',
231 privacy: VideoPrivacy.PUBLIC
232 }
11474c3c 233
d4a8e7a6 234 await updateVideo(servers[0].url, servers[0].accessToken, privateVideoId, attribute)
22a73cb8 235 }
11474c3c 236
d4a8e7a6
C
237 {
238 const attribute = {
239 name: 'internal video becomes public',
240 privacy: VideoPrivacy.PUBLIC
241 }
242 await updateVideo(servers[0].url, servers[0].accessToken, internalVideoId, attribute)
243 }
11474c3c 244
d4a8e7a6
C
245 await waitJobs(servers)
246 })
22a73cb8 247
d4a8e7a6
C
248 it('Should have this new public video listed on server 1 and 2', async function () {
249 for (const server of servers) {
250 const res = await getVideosList(server.url)
251 expect(res.body.total).to.equal(2)
252 expect(res.body.data).to.have.lengthOf(2)
22a73cb8 253
d4a8e7a6
C
254 const videos: Video[] = res.body.data
255 const privateVideo = videos.find(v => v.name === 'private video becomes public')
256 const internalVideo = videos.find(v => v.name === 'internal video becomes public')
22a73cb8 257
d4a8e7a6
C
258 expect(privateVideo).to.not.be.undefined
259 expect(internalVideo).to.not.be.undefined
11474c3c 260
d4a8e7a6
C
261 expect(new Date(privateVideo.publishedAt).getTime()).to.be.at.least(now)
262 // We don't change the publish date of internal videos
263 expect(new Date(internalVideo.publishedAt).getTime()).to.be.below(now)
11474c3c 264
d4a8e7a6
C
265 expect(privateVideo.privacy.id).to.equal(VideoPrivacy.PUBLIC)
266 expect(internalVideo.privacy.id).to.equal(VideoPrivacy.PUBLIC)
267 }
268 })
46a6db24 269
d4a8e7a6
C
270 it('Should set these videos as private and internal', async function () {
271 this.timeout(10000)
46a6db24 272
d4a8e7a6
C
273 await updateVideo(servers[0].url, servers[0].accessToken, internalVideoId, { privacy: VideoPrivacy.PRIVATE })
274 await updateVideo(servers[0].url, servers[0].accessToken, privateVideoId, { privacy: VideoPrivacy.INTERNAL })
46a6db24 275
d4a8e7a6 276 await waitJobs(servers)
46a6db24 277
d4a8e7a6
C
278 for (const server of servers) {
279 const res = await getVideosList(server.url)
280
281 expect(res.body.total).to.equal(0)
282 expect(res.body.data).to.have.lengthOf(0)
283 }
46a6db24 284
d4a8e7a6
C
285 {
286 const res = await getMyVideos(servers[0].url, servers[0].accessToken, 0, 5)
287 const videos = res.body.data
22a73cb8 288
d4a8e7a6
C
289 expect(res.body.total).to.equal(3)
290 expect(videos).to.have.lengthOf(3)
22a73cb8 291
d4a8e7a6
C
292 const privateVideo = videos.find(v => v.name === 'private video becomes public')
293 const internalVideo = videos.find(v => v.name === 'internal video becomes public')
22a73cb8 294
d4a8e7a6
C
295 expect(privateVideo).to.not.be.undefined
296 expect(internalVideo).to.not.be.undefined
46a6db24 297
d4a8e7a6
C
298 expect(privateVideo.privacy.id).to.equal(VideoPrivacy.INTERNAL)
299 expect(internalVideo.privacy.id).to.equal(VideoPrivacy.PRIVATE)
300 }
301 })
46a6db24
C
302 })
303
7c3b7976
C
304 after(async function () {
305 await cleanupTests(servers)
11474c3c
C
306 })
307})