]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/utils/videos/videos.ts
Update video-channel routes (again)
[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 '../'
c5d31dba 18import { 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
0e1dc3e7 388
ac81d1a0
C
389 // Upload request
390 if (attributes.thumbnailfile || attributes.previewfile) {
391 const attaches: any = {}
392 if (attributes.thumbnailfile) attaches.thumbnailfile = attributes.thumbnailfile
393 if (attributes.previewfile) attaches.previewfile = attributes.previewfile
394
395 return makeUploadRequest({
396 url,
397 method: 'PUT',
398 path,
399 token: accessToken,
400 fields: body,
401 attaches,
402 statusCodeExpected
403 })
404 }
405
406 return makePutBodyRequest({
407 url,
408 path,
409 fields: body,
410 token: accessToken,
411 statusCodeExpected
412 })
0e1dc3e7
C
413}
414
415function rateVideo (url: string, accessToken: string, id: number, rating: string, specialStatus = 204) {
416 const path = '/api/v1/videos/' + id + '/rate'
417
418 return request(url)
419 .put(path)
420 .set('Accept', 'application/json')
421 .set('Authorization', 'Bearer ' + accessToken)
422 .send({ rating })
423 .expect(specialStatus)
424}
425
14d3270f 426function parseTorrentVideo (server: ServerInfo, videoUUID: string, resolution: number) {
fdbda9e3 427 return new Promise<any>((res, rej) => {
14d3270f 428 const torrentName = videoUUID + '-' + resolution + '.torrent'
331128ed 429 const torrentPath = join(__dirname, '..', '..', '..', '..', 'test' + server.serverNumber, 'torrents', torrentName)
fdbda9e3
C
430 readFile(torrentPath, (err, data) => {
431 if (err) return rej(err)
432
433 return res(parseTorrent(data))
434 })
435 })
436}
437
a20399c9
C
438async function completeVideoCheck (
439 url: string,
440 video: any,
441 attributes: {
442 name: string
443 category: number
444 licence: number
9d3ef9fe 445 language: string
a20399c9 446 nsfw: boolean
47564bbe 447 commentsEnabled: boolean
a20399c9 448 description: string
2422c46b 449 support: string
b64c950a
C
450 account: {
451 name: string
452 host: string
453 }
a20399c9
C
454 isLocal: boolean,
455 tags: string[],
456 privacy: number,
b1f5b93e
C
457 likes?: number,
458 dislikes?: number,
459 duration: number,
a20399c9
C
460 channel: {
461 name: string,
b1f5b93e 462 description
a20399c9
C
463 isLocal: boolean
464 }
465 fixture: string,
466 files: {
467 resolution: number
468 size: number
ac81d1a0
C
469 }[],
470 thumbnailfile?: string
471 previewfile?: string
a20399c9
C
472 }
473) {
b1f5b93e
C
474 if (!attributes.likes) attributes.likes = 0
475 if (!attributes.dislikes) attributes.dislikes = 0
476
a20399c9 477 expect(video.name).to.equal(attributes.name)
09700934 478 expect(video.category.id).to.equal(attributes.category)
9d3ef9fe 479 expect(video.category.label).to.equal(attributes.category !== null ? VIDEO_CATEGORIES[attributes.category] : 'Misc')
09700934 480 expect(video.licence.id).to.equal(attributes.licence)
9d3ef9fe 481 expect(video.licence.label).to.equal(attributes.licence !== null ? VIDEO_LICENCES[attributes.licence] : 'Unknown')
09700934 482 expect(video.language.id).to.equal(attributes.language)
9d3ef9fe 483 expect(video.language.label).to.equal(attributes.language !== null ? VIDEO_LANGUAGES[attributes.language] : 'Unknown')
2243730c
C
484 expect(video.privacy.id).to.deep.equal(attributes.privacy)
485 expect(video.privacy.label).to.deep.equal(VIDEO_PRIVACIES[attributes.privacy])
a20399c9
C
486 expect(video.nsfw).to.equal(attributes.nsfw)
487 expect(video.description).to.equal(attributes.description)
03e12d7c
C
488 expect(video.account.id).to.be.a('number')
489 expect(video.account.uuid).to.be.a('string')
b64c950a
C
490 expect(video.account.host).to.equal(attributes.account.host)
491 expect(video.account.name).to.equal(attributes.account.name)
b1f5b93e
C
492 expect(video.likes).to.equal(attributes.likes)
493 expect(video.dislikes).to.equal(attributes.dislikes)
a20399c9 494 expect(video.isLocal).to.equal(attributes.isLocal)
b1f5b93e 495 expect(video.duration).to.equal(attributes.duration)
a20399c9 496 expect(dateIsValid(video.createdAt)).to.be.true
c49db162 497 expect(dateIsValid(video.publishedAt)).to.be.true
a20399c9
C
498 expect(dateIsValid(video.updatedAt)).to.be.true
499
66b16caf 500 const res = await getVideo(url, video.uuid)
a20399c9
C
501 const videoDetails = res.body
502
503 expect(videoDetails.files).to.have.lengthOf(attributes.files.length)
504 expect(videoDetails.tags).to.deep.equal(attributes.tags)
19a3b914
C
505 expect(videoDetails.account.name).to.equal(attributes.account.name)
506 expect(videoDetails.account.host).to.equal(attributes.account.host)
47564bbe 507 expect(videoDetails.commentsEnabled).to.equal(attributes.commentsEnabled)
a20399c9 508
7bc29171
C
509 expect(videoDetails.channel.displayName).to.equal(attributes.channel.name)
510 expect(videoDetails.channel.name).to.have.lengthOf(36)
a20399c9
C
511 expect(videoDetails.channel.isLocal).to.equal(attributes.channel.isLocal)
512 expect(dateIsValid(videoDetails.channel.createdAt)).to.be.true
513 expect(dateIsValid(videoDetails.channel.updatedAt)).to.be.true
514
515 for (const attributeFile of attributes.files) {
5d00a3d7 516 const file = videoDetails.files.find(f => f.resolution.id === attributeFile.resolution)
a20399c9
C
517 expect(file).not.to.be.undefined
518
b1f5b93e
C
519 let extension = extname(attributes.fixture)
520 // Transcoding enabled on server 2, extension will always be .mp4
b64c950a 521 if (attributes.account.host === 'localhost:9002') extension = '.mp4'
b1f5b93e 522
a20399c9
C
523 const magnetUri = file.magnetUri
524 expect(file.magnetUri).to.have.lengthOf.above(2)
5d00a3d7
C
525 expect(file.torrentUrl).to.equal(`http://${attributes.account.host}/static/torrents/${videoDetails.uuid}-${file.resolution.id}.torrent`)
526 expect(file.fileUrl).to.equal(`http://${attributes.account.host}/static/webseed/${videoDetails.uuid}-${file.resolution.id}${extension}`)
09700934
C
527 expect(file.resolution.id).to.equal(attributeFile.resolution)
528 expect(file.resolution.label).to.equal(attributeFile.resolution + 'p')
b1f5b93e
C
529
530 const minSize = attributeFile.size - ((10 * attributeFile.size) / 100)
531 const maxSize = attributeFile.size + ((10 * attributeFile.size) / 100)
532 expect(file.size).to.be.above(minSize).and.below(maxSize)
a20399c9 533
ac81d1a0 534 {
7b0956ec 535 await testImage(url, attributes.thumbnailfile || attributes.fixture, videoDetails.thumbnailPath)
ac81d1a0
C
536 }
537
538 if (attributes.previewfile) {
7b0956ec 539 await testImage(url, attributes.previewfile, videoDetails.previewPath)
ac81d1a0 540 }
a20399c9
C
541
542 const torrent = await webtorrentAdd(magnetUri, true)
543 expect(torrent.files).to.be.an('array')
544 expect(torrent.files.length).to.equal(1)
545 expect(torrent.files[0].path).to.exist.and.to.not.equal('')
546 }
547}
548
0e1dc3e7
C
549// ---------------------------------------------------------------------------
550
551export {
9567011b 552 getVideoDescription,
0e1dc3e7
C
553 getVideoCategories,
554 getVideoLicences,
11474c3c 555 getVideoPrivacies,
0e1dc3e7 556 getVideoLanguages,
11474c3c 557 getMyVideos,
6b738c7a
C
558 getAccountVideos,
559 getVideoChannelVideos,
0883b324 560 searchVideoWithToken,
0e1dc3e7 561 getVideo,
11474c3c 562 getVideoWithToken,
0e1dc3e7
C
563 getVideosList,
564 getVideosListPagination,
565 getVideosListSort,
566 removeVideo,
567 searchVideo,
568 searchVideoWithPagination,
569 searchVideoWithSort,
0883b324 570 getVideosListWithToken,
0e1dc3e7
C
571 uploadVideo,
572 updateVideo,
fdbda9e3 573 rateVideo,
1f3e9fec 574 viewVideo,
a20399c9 575 parseTorrentVideo,
066e94c5 576 getLocalVideos,
f05a1c30
C
577 completeVideoCheck,
578 checkVideoFilesWereRemoved
0e1dc3e7 579}