]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/utils/videos/videos.ts
Add ability to update a video channel
[github/Chocobozzz/PeerTube.git] / server / tests / utils / videos / videos.ts
CommitLineData
a20399c9
C
1/* tslint:disable:no-unused-expression */
2
3import { expect } from 'chai'
f05a1c30 4import { existsSync, readFile } from 'fs'
fdbda9e3 5import * as parseTorrent from 'parse-torrent'
1d791a26 6import { extname, join } from 'path'
c5d31dba 7import * as request from 'supertest'
ac81d1a0
C
8import {
9 buildAbsoluteFixturePath,
10 getMyUserInformation,
11 makeGetRequest,
12 makePutBodyRequest,
13 makeUploadRequest,
14 root,
15 ServerInfo,
16 testImage
17} from '../'
0f320037 18import { VideoDetails, VideoPrivacy } from '../../../../shared/models/videos'
5e1c08eb 19import { readdirPromise } from '../../../helpers/core-utils'
a20399c9
C
20import { VIDEO_CATEGORIES, VIDEO_LANGUAGES, VIDEO_LICENCES, VIDEO_PRIVACIES } from '../../../initializers'
21import { dateIsValid, webtorrentAdd } from '../index'
0e1dc3e7
C
22
23type VideoAttributes = {
24 name?: string
25 category?: number
26 licence?: number
9d3ef9fe 27 language?: string
0e1dc3e7 28 nsfw?: boolean
47564bbe 29 commentsEnabled?: boolean
0e1dc3e7
C
30 description?: string
31 tags?: string[]
5f04dd2f 32 channelId?: number
11474c3c 33 privacy?: VideoPrivacy
0e1dc3e7 34 fixture?: string
ac81d1a0
C
35 thumbnailfile?: string
36 previewfile?: string
0e1dc3e7
C
37}
38
39function getVideoCategories (url: string) {
40 const path = '/api/v1/videos/categories'
41
eec63bbc
C
42 return makeGetRequest({
43 url,
59651eee
C
44 path,
45 statusCodeExpected: 200
eec63bbc 46 })
0e1dc3e7
C
47}
48
49function getVideoLicences (url: string) {
50 const path = '/api/v1/videos/licences'
51
eec63bbc
C
52 return makeGetRequest({
53 url,
59651eee
C
54 path,
55 statusCodeExpected: 200
eec63bbc 56 })
0e1dc3e7
C
57}
58
59function getVideoLanguages (url: string) {
60 const path = '/api/v1/videos/languages'
61
eec63bbc
C
62 return makeGetRequest({
63 url,
59651eee
C
64 path,
65 statusCodeExpected: 200
eec63bbc 66 })
0e1dc3e7
C
67}
68
11474c3c
C
69function getVideoPrivacies (url: string) {
70 const path = '/api/v1/videos/privacies'
71
eec63bbc
C
72 return makeGetRequest({
73 url,
59651eee
C
74 path,
75 statusCodeExpected: 200
eec63bbc 76 })
11474c3c
C
77}
78
11474c3c 79function getVideo (url: string, id: number | string, expectedStatus = 200) {
0e1dc3e7
C
80 const path = '/api/v1/videos/' + id
81
82 return request(url)
83 .get(path)
84 .set('Accept', 'application/json')
11474c3c
C
85 .expect(expectedStatus)
86}
87
490b595a 88function viewVideo (url: string, id: number | string, expectedStatus = 204, xForwardedFor?: string) {
1f3e9fec
C
89 const path = '/api/v1/videos/' + id + '/views'
90
490b595a 91 const req = request(url)
1f3e9fec
C
92 .post(path)
93 .set('Accept', 'application/json')
490b595a
C
94
95 if (xForwardedFor) {
96 req.set('X-Forwarded-For', xForwardedFor)
97 }
98
99 return req.expect(expectedStatus)
1f3e9fec
C
100}
101
11474c3c
C
102function getVideoWithToken (url: string, token: string, id: number | string, expectedStatus = 200) {
103 const path = '/api/v1/videos/' + id
104
105 return request(url)
106 .get(path)
107 .set('Authorization', 'Bearer ' + token)
108 .set('Accept', 'application/json')
109 .expect(expectedStatus)
0e1dc3e7
C
110}
111
9567011b
C
112function getVideoDescription (url: string, descriptionPath: string) {
113 return request(url)
114 .get(descriptionPath)
115 .set('Accept', 'application/json')
116 .expect(200)
117 .expect('Content-Type', /json/)
118}
119
0e1dc3e7
C
120function getVideosList (url: string) {
121 const path = '/api/v1/videos'
122
123 return request(url)
124 .get(path)
125 .query({ sort: 'name' })
126 .set('Accept', 'application/json')
127 .expect(200)
128 .expect('Content-Type', /json/)
129}
130
0883b324
C
131function getVideosListWithToken (url: string, token: string) {
132 const path = '/api/v1/videos'
133
134 return request(url)
135 .get(path)
136 .set('Authorization', 'Bearer ' + token)
137 .query({ sort: 'name' })
138 .set('Accept', 'application/json')
139 .expect(200)
140 .expect('Content-Type', /json/)
141}
142
066e94c5
C
143function getLocalVideos (url: string) {
144 const path = '/api/v1/videos'
145
146 return request(url)
147 .get(path)
148 .query({ sort: 'name', filter: 'local' })
149 .set('Accept', 'application/json')
150 .expect(200)
151 .expect('Content-Type', /json/)
152}
153
11474c3c
C
154function getMyVideos (url: string, accessToken: string, start: number, count: number, sort?: string) {
155 const path = '/api/v1/users/me/videos'
156
157 const req = request(url)
158 .get(path)
159 .query({ start: start })
160 .query({ count: count })
161
162 if (sort) req.query({ sort })
163
164 return req.set('Accept', 'application/json')
165 .set('Authorization', 'Bearer ' + accessToken)
166 .expect(200)
167 .expect('Content-Type', /json/)
168}
169
6b738c7a
C
170function getAccountVideos (url: string, accessToken: string, accountId: number | string, start: number, count: number, sort?: string) {
171 const path = '/api/v1/accounts/' + accountId + '/videos'
172
173 return makeGetRequest({
174 url,
175 path,
176 query: {
177 start,
178 count,
179 sort
180 },
181 token: accessToken,
182 statusCodeExpected: 200
183 })
184}
185
186function getVideoChannelVideos (
187 url: string,
188 accessToken: string,
6b738c7a
C
189 videoChannelId: number | string,
190 start: number,
191 count: number,
192 sort?: string
193) {
cc918ac3 194 const path = '/api/v1/video-channels/' + videoChannelId + '/videos'
6b738c7a
C
195
196 return makeGetRequest({
197 url,
198 path,
199 query: {
200 start,
201 count,
202 sort
203 },
204 token: accessToken,
205 statusCodeExpected: 200
206 })
207}
208
0e1dc3e7
C
209function getVideosListPagination (url: string, start: number, count: number, sort?: string) {
210 const path = '/api/v1/videos'
211
212 const req = request(url)
213 .get(path)
214 .query({ start: start })
215 .query({ count: count })
216
217 if (sort) req.query({ sort })
218
219 return req.set('Accept', 'application/json')
220 .expect(200)
221 .expect('Content-Type', /json/)
222}
223
224function getVideosListSort (url: string, sort: string) {
225 const path = '/api/v1/videos'
226
227 return request(url)
228 .get(path)
229 .query({ sort: sort })
230 .set('Accept', 'application/json')
231 .expect(200)
232 .expect('Content-Type', /json/)
233}
234
11ba2ab3 235function removeVideo (url: string, token: string, id: number | string, expectedStatus = 204) {
0e1dc3e7
C
236 const path = '/api/v1/videos'
237
238 return request(url)
239 .delete(path + '/' + id)
240 .set('Accept', 'application/json')
241 .set('Authorization', 'Bearer ' + token)
242 .expect(expectedStatus)
243}
244
f3aaa9a9 245function searchVideo (url: string, search: string) {
0e1dc3e7
C
246 const path = '/api/v1/videos'
247 const req = request(url)
f3aaa9a9
C
248 .get(path + '/search')
249 .query({ search })
250 .set('Accept', 'application/json')
0e1dc3e7
C
251
252 return req.expect(200)
f3aaa9a9 253 .expect('Content-Type', /json/)
0e1dc3e7
C
254}
255
0883b324
C
256function searchVideoWithToken (url: string, search: string, token: string) {
257 const path = '/api/v1/videos'
258 const req = request(url)
259 .get(path + '/search')
260 .set('Authorization', 'Bearer ' + token)
261 .query({ search })
262 .set('Accept', 'application/json')
263
264 return req.expect(200)
265 .expect('Content-Type', /json/)
266}
267
f3aaa9a9 268function searchVideoWithPagination (url: string, search: string, start: number, count: number, sort?: string) {
0e1dc3e7
C
269 const path = '/api/v1/videos'
270
271 const req = request(url)
f3aaa9a9 272 .get(path + '/search')
0e1dc3e7 273 .query({ start })
f3aaa9a9 274 .query({ search })
0e1dc3e7 275 .query({ count })
0e1dc3e7
C
276
277 if (sort) req.query({ sort })
278
279 return req.set('Accept', 'application/json')
280 .expect(200)
281 .expect('Content-Type', /json/)
282}
283
284function searchVideoWithSort (url: string, search: string, sort: string) {
285 const path = '/api/v1/videos'
286
287 return request(url)
f3aaa9a9
C
288 .get(path + '/search')
289 .query({ search })
0e1dc3e7
C
290 .query({ sort })
291 .set('Accept', 'application/json')
292 .expect(200)
293 .expect('Content-Type', /json/)
294}
295
f05a1c30
C
296async function checkVideoFilesWereRemoved (videoUUID: string, serverNumber: number) {
297 const testDirectory = 'test' + serverNumber
298
299 for (const directory of [ 'videos', 'thumbnails', 'torrents', 'previews' ]) {
300 const directoryPath = join(root(), testDirectory, directory)
301
302 const directoryExists = existsSync(directoryPath)
303 expect(directoryExists).to.be.true
304
305 const files = await readdirPromise(directoryPath)
306 for (const file of files) {
307 expect(file).to.not.contain(videoUUID)
308 }
309 }
310}
311
e11f68a3 312async function uploadVideo (url: string, accessToken: string, videoAttributesArg: VideoAttributes, specialStatus = 200) {
e95561cd 313 const path = '/api/v1/videos/upload'
5f04dd2f
C
314 let defaultChannelId = '1'
315
316 try {
317 const res = await getMyUserInformation(url, accessToken)
318 defaultChannelId = res.body.videoChannels[0].id
319 } catch (e) { /* empty */ }
0e1dc3e7 320
ac81d1a0
C
321 // Override default attributes
322 const attributes = Object.assign({
0e1dc3e7
C
323 name: 'my super video',
324 category: 5,
325 licence: 4,
9d3ef9fe 326 language: 'zh',
5f04dd2f 327 channelId: defaultChannelId,
0e1dc3e7
C
328 nsfw: true,
329 description: 'my super description',
2422c46b 330 support: 'my super support text',
0e1dc3e7 331 tags: [ 'tag' ],
11474c3c 332 privacy: VideoPrivacy.PUBLIC,
47564bbe 333 commentsEnabled: true,
0e1dc3e7 334 fixture: 'video_short.webm'
ac81d1a0 335 }, videoAttributesArg)
0e1dc3e7
C
336
337 const req = request(url)
338 .post(path)
339 .set('Accept', 'application/json')
340 .set('Authorization', 'Bearer ' + accessToken)
341 .field('name', attributes.name)
0e1dc3e7 342 .field('nsfw', JSON.stringify(attributes.nsfw))
47564bbe 343 .field('commentsEnabled', JSON.stringify(attributes.commentsEnabled))
11474c3c 344 .field('privacy', attributes.privacy.toString())
5f04dd2f 345 .field('channelId', attributes.channelId)
0e1dc3e7 346
a87d467a
C
347 if (attributes.description !== undefined) {
348 req.field('description', attributes.description)
349 }
8df87ce7
C
350 if (attributes.language !== undefined) {
351 req.field('language', attributes.language.toString())
352 }
a7fea183
C
353 if (attributes.category !== undefined) {
354 req.field('category', attributes.category.toString())
355 }
356 if (attributes.licence !== undefined) {
357 req.field('licence', attributes.licence.toString())
358 }
8df87ce7 359
2422c46b
C
360 for (let i = 0; i < attributes.tags.length; i++) {
361 req.field('tags[' + i + ']', attributes.tags[i])
362 }
363
ac81d1a0
C
364 if (attributes.thumbnailfile !== undefined) {
365 req.attach('thumbnailfile', buildAbsoluteFixturePath(attributes.thumbnailfile))
366 }
367 if (attributes.previewfile !== undefined) {
368 req.attach('previewfile', buildAbsoluteFixturePath(attributes.previewfile))
0e1dc3e7
C
369 }
370
ac81d1a0 371 return req.attach('videofile', buildAbsoluteFixturePath(attributes.fixture))
0e1dc3e7
C
372 .expect(specialStatus)
373}
374
ac81d1a0 375function updateVideo (url: string, accessToken: string, id: number | string, attributes: VideoAttributes, statusCodeExpected = 204) {
0e1dc3e7
C
376 const path = '/api/v1/videos/' + id
377 const body = {}
378
379 if (attributes.name) body['name'] = attributes.name
380 if (attributes.category) body['category'] = attributes.category
381 if (attributes.licence) body['licence'] = attributes.licence
382 if (attributes.language) body['language'] = attributes.language
47564bbe
C
383 if (attributes.nsfw !== undefined) body['nsfw'] = JSON.stringify(attributes.nsfw)
384 if (attributes.commentsEnabled !== undefined) body['commentsEnabled'] = JSON.stringify(attributes.commentsEnabled)
0e1dc3e7
C
385 if (attributes.description) body['description'] = attributes.description
386 if (attributes.tags) body['tags'] = attributes.tags
11474c3c 387 if (attributes.privacy) body['privacy'] = attributes.privacy
0f320037 388 if (attributes.channelId) body['channelId'] = attributes.channelId
0e1dc3e7 389
ac81d1a0
C
390 // Upload request
391 if (attributes.thumbnailfile || attributes.previewfile) {
392 const attaches: any = {}
393 if (attributes.thumbnailfile) attaches.thumbnailfile = attributes.thumbnailfile
394 if (attributes.previewfile) attaches.previewfile = attributes.previewfile
395
396 return makeUploadRequest({
397 url,
398 method: 'PUT',
399 path,
400 token: accessToken,
401 fields: body,
402 attaches,
403 statusCodeExpected
404 })
405 }
406
407 return makePutBodyRequest({
408 url,
409 path,
410 fields: body,
411 token: accessToken,
412 statusCodeExpected
413 })
0e1dc3e7
C
414}
415
416function rateVideo (url: string, accessToken: string, id: number, rating: string, specialStatus = 204) {
417 const path = '/api/v1/videos/' + id + '/rate'
418
419 return request(url)
420 .put(path)
421 .set('Accept', 'application/json')
422 .set('Authorization', 'Bearer ' + accessToken)
423 .send({ rating })
424 .expect(specialStatus)
425}
426
14d3270f 427function parseTorrentVideo (server: ServerInfo, videoUUID: string, resolution: number) {
fdbda9e3 428 return new Promise<any>((res, rej) => {
14d3270f 429 const torrentName = videoUUID + '-' + resolution + '.torrent'
331128ed 430 const torrentPath = join(__dirname, '..', '..', '..', '..', 'test' + server.serverNumber, 'torrents', torrentName)
fdbda9e3
C
431 readFile(torrentPath, (err, data) => {
432 if (err) return rej(err)
433
434 return res(parseTorrent(data))
435 })
436 })
437}
438
a20399c9
C
439async function completeVideoCheck (
440 url: string,
441 video: any,
442 attributes: {
443 name: string
444 category: number
445 licence: number
9d3ef9fe 446 language: string
a20399c9 447 nsfw: boolean
47564bbe 448 commentsEnabled: boolean
a20399c9 449 description: string
2422c46b 450 support: string
b64c950a
C
451 account: {
452 name: string
453 host: string
454 }
a20399c9
C
455 isLocal: boolean,
456 tags: string[],
457 privacy: number,
b1f5b93e
C
458 likes?: number,
459 dislikes?: number,
460 duration: number,
a20399c9
C
461 channel: {
462 name: string,
b1f5b93e 463 description
a20399c9
C
464 isLocal: boolean
465 }
466 fixture: string,
467 files: {
468 resolution: number
469 size: number
ac81d1a0
C
470 }[],
471 thumbnailfile?: string
472 previewfile?: string
a20399c9
C
473 }
474) {
b1f5b93e
C
475 if (!attributes.likes) attributes.likes = 0
476 if (!attributes.dislikes) attributes.dislikes = 0
477
a20399c9 478 expect(video.name).to.equal(attributes.name)
09700934 479 expect(video.category.id).to.equal(attributes.category)
9d3ef9fe 480 expect(video.category.label).to.equal(attributes.category !== null ? VIDEO_CATEGORIES[attributes.category] : 'Misc')
09700934 481 expect(video.licence.id).to.equal(attributes.licence)
9d3ef9fe 482 expect(video.licence.label).to.equal(attributes.licence !== null ? VIDEO_LICENCES[attributes.licence] : 'Unknown')
09700934 483 expect(video.language.id).to.equal(attributes.language)
9d3ef9fe 484 expect(video.language.label).to.equal(attributes.language !== null ? VIDEO_LANGUAGES[attributes.language] : 'Unknown')
2243730c
C
485 expect(video.privacy.id).to.deep.equal(attributes.privacy)
486 expect(video.privacy.label).to.deep.equal(VIDEO_PRIVACIES[attributes.privacy])
a20399c9
C
487 expect(video.nsfw).to.equal(attributes.nsfw)
488 expect(video.description).to.equal(attributes.description)
03e12d7c
C
489 expect(video.account.id).to.be.a('number')
490 expect(video.account.uuid).to.be.a('string')
b64c950a
C
491 expect(video.account.host).to.equal(attributes.account.host)
492 expect(video.account.name).to.equal(attributes.account.name)
0f320037
C
493 expect(video.channel.displayName).to.equal(attributes.channel.name)
494 expect(video.channel.name).to.have.lengthOf(36)
b1f5b93e
C
495 expect(video.likes).to.equal(attributes.likes)
496 expect(video.dislikes).to.equal(attributes.dislikes)
a20399c9 497 expect(video.isLocal).to.equal(attributes.isLocal)
b1f5b93e 498 expect(video.duration).to.equal(attributes.duration)
a20399c9 499 expect(dateIsValid(video.createdAt)).to.be.true
c49db162 500 expect(dateIsValid(video.publishedAt)).to.be.true
a20399c9
C
501 expect(dateIsValid(video.updatedAt)).to.be.true
502
66b16caf 503 const res = await getVideo(url, video.uuid)
0f320037 504 const videoDetails: VideoDetails = res.body
a20399c9
C
505
506 expect(videoDetails.files).to.have.lengthOf(attributes.files.length)
507 expect(videoDetails.tags).to.deep.equal(attributes.tags)
19a3b914
C
508 expect(videoDetails.account.name).to.equal(attributes.account.name)
509 expect(videoDetails.account.host).to.equal(attributes.account.host)
7bc29171
C
510 expect(videoDetails.channel.displayName).to.equal(attributes.channel.name)
511 expect(videoDetails.channel.name).to.have.lengthOf(36)
0f320037 512 expect(videoDetails.channel.host).to.equal(attributes.account.host)
a20399c9 513 expect(videoDetails.channel.isLocal).to.equal(attributes.channel.isLocal)
0f320037
C
514 expect(dateIsValid(videoDetails.channel.createdAt.toString())).to.be.true
515 expect(dateIsValid(videoDetails.channel.updatedAt.toString())).to.be.true
516 expect(videoDetails.commentsEnabled).to.equal(attributes.commentsEnabled)
a20399c9
C
517
518 for (const attributeFile of attributes.files) {
5d00a3d7 519 const file = videoDetails.files.find(f => f.resolution.id === attributeFile.resolution)
a20399c9
C
520 expect(file).not.to.be.undefined
521
b1f5b93e
C
522 let extension = extname(attributes.fixture)
523 // Transcoding enabled on server 2, extension will always be .mp4
b64c950a 524 if (attributes.account.host === 'localhost:9002') extension = '.mp4'
b1f5b93e 525
a20399c9
C
526 const magnetUri = file.magnetUri
527 expect(file.magnetUri).to.have.lengthOf.above(2)
5d00a3d7
C
528 expect(file.torrentUrl).to.equal(`http://${attributes.account.host}/static/torrents/${videoDetails.uuid}-${file.resolution.id}.torrent`)
529 expect(file.fileUrl).to.equal(`http://${attributes.account.host}/static/webseed/${videoDetails.uuid}-${file.resolution.id}${extension}`)
09700934
C
530 expect(file.resolution.id).to.equal(attributeFile.resolution)
531 expect(file.resolution.label).to.equal(attributeFile.resolution + 'p')
b1f5b93e
C
532
533 const minSize = attributeFile.size - ((10 * attributeFile.size) / 100)
534 const maxSize = attributeFile.size + ((10 * attributeFile.size) / 100)
535 expect(file.size).to.be.above(minSize).and.below(maxSize)
a20399c9 536
ac81d1a0 537 {
7b0956ec 538 await testImage(url, attributes.thumbnailfile || attributes.fixture, videoDetails.thumbnailPath)
ac81d1a0
C
539 }
540
541 if (attributes.previewfile) {
7b0956ec 542 await testImage(url, attributes.previewfile, videoDetails.previewPath)
ac81d1a0 543 }
a20399c9
C
544
545 const torrent = await webtorrentAdd(magnetUri, true)
546 expect(torrent.files).to.be.an('array')
547 expect(torrent.files.length).to.equal(1)
548 expect(torrent.files[0].path).to.exist.and.to.not.equal('')
549 }
550}
551
0e1dc3e7
C
552// ---------------------------------------------------------------------------
553
554export {
9567011b 555 getVideoDescription,
0e1dc3e7
C
556 getVideoCategories,
557 getVideoLicences,
11474c3c 558 getVideoPrivacies,
0e1dc3e7 559 getVideoLanguages,
11474c3c 560 getMyVideos,
6b738c7a
C
561 getAccountVideos,
562 getVideoChannelVideos,
0883b324 563 searchVideoWithToken,
0e1dc3e7 564 getVideo,
11474c3c 565 getVideoWithToken,
0e1dc3e7
C
566 getVideosList,
567 getVideosListPagination,
568 getVideosListSort,
569 removeVideo,
570 searchVideo,
571 searchVideoWithPagination,
572 searchVideoWithSort,
0883b324 573 getVideosListWithToken,
0e1dc3e7
C
574 uploadVideo,
575 updateVideo,
fdbda9e3 576 rateVideo,
1f3e9fec 577 viewVideo,
a20399c9 578 parseTorrentVideo,
066e94c5 579 getLocalVideos,
f05a1c30
C
580 completeVideoCheck,
581 checkVideoFilesWereRemoved
0e1dc3e7 582}