aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--server/tests/api/videos/video-imports.ts6
-rw-r--r--shared/extra-utils/miscs/tests.ts15
2 files changed, 7 insertions, 14 deletions
diff --git a/server/tests/api/videos/video-imports.ts b/server/tests/api/videos/video-imports.ts
index 2f49bfc56..4686d5800 100644
--- a/server/tests/api/videos/video-imports.ts
+++ b/server/tests/api/videos/video-imports.ts
@@ -294,11 +294,11 @@ Ajouter un sous-titre est vraiment facile`)
294 transcoding: { 294 transcoding: {
295 enabled: true, 295 enabled: true,
296 resolutions: { 296 resolutions: {
297 '240p': false, 297 '240p': true,
298 '360p': false, 298 '360p': false,
299 '480p': false, 299 '480p': false,
300 '720p': false, 300 '720p': false,
301 '1080p': true, // the resulting resolution shouldn't be higher than this, and not vp9.2/av01 301 '1080p': false, // the resulting resolution shouldn't be higher than this, and not vp9.2/av01
302 '1440p': false, 302 '1440p': false,
303 '2160p': false 303 '2160p': false
304 }, 304 },
@@ -333,7 +333,7 @@ Ajouter un sous-titre est vraiment facile`)
333 const video = await servers[0].videos.get({ id: videoUUID }) 333 const video = await servers[0].videos.get({ id: videoUUID })
334 expect(video.name).to.equal('hdr video') 334 expect(video.name).to.equal('hdr video')
335 const maxResolution = Math.max.apply(Math, video.files.map(function (o) { return o.resolution.id })) 335 const maxResolution = Math.max.apply(Math, video.files.map(function (o) { return o.resolution.id }))
336 expect(maxResolution, 'expected max resolution not met').to.equals(VideoResolution.H_1080P) 336 expect(maxResolution, 'expected max resolution not met').to.equals(VideoResolution.H_240P)
337 }) 337 })
338 338
339 it('Should import a peertube video', async function () { 339 it('Should import a peertube video', async function () {
diff --git a/shared/extra-utils/miscs/tests.ts b/shared/extra-utils/miscs/tests.ts
index 5b5430278..6299a48f5 100644
--- a/shared/extra-utils/miscs/tests.ts
+++ b/shared/extra-utils/miscs/tests.ts
@@ -10,21 +10,14 @@ const FIXTURE_URLS = {
10 /** 10 /**
11 * The video is used to check format-selection correctness wrt. HDR, 11 * The video is used to check format-selection correctness wrt. HDR,
12 * which brings its own set of oddities outside of a MediaSource. 12 * which brings its own set of oddities outside of a MediaSource.
13 * FIXME: refactor once HDR is supported at playback
14 * 13 *
15 * The video needs to have the following format_ids: 14 * The video needs to have the following format_ids:
16 * (which you can check by using `youtube-dl <url> -F`): 15 * (which you can check by using `youtube-dl <url> -F`):
17 * - 303 (1080p webm vp9) 16 * - (webm vp9)
18 * - 299 (1080p mp4 avc1) 17 * - (mp4 avc1)
19 * - 335 (1080p webm vp9.2 HDR) 18 * - (webm vp9.2 HDR)
20 *
21 * 15 jan. 2021: TEST VIDEO NOT CURRENTLY PROVIDING
22 * - 400 (1080p mp4 av01)
23 * - 315 (2160p webm vp9 HDR)
24 * - 337 (2160p webm vp9.2 HDR)
25 * - 401 (2160p mp4 av01 HDR)
26 */ 19 */
27 youtubeHDR: 'https://www.youtube.com/watch?v=qR5vOXbZsI4', 20 youtubeHDR: 'https://www.youtube.com/watch?v=RQgnBB9z_N4',
28 21
29 // eslint-disable-next-line max-len 22 // eslint-disable-next-line max-len
30 magnet: 'magnet:?xs=https%3A%2F%2Fpeertube2.cpy.re%2Fstatic%2Ftorrents%2Fb209ca00-c8bb-4b2b-b421-1ede169f3dbc-720.torrent&xt=urn:btih:0f498834733e8057ed5c6f2ee2b4efd8d84a76ee&dn=super+peertube2+video&tr=wss%3A%2F%2Fpeertube2.cpy.re%3A443%2Ftracker%2Fsocket&tr=https%3A%2F%2Fpeertube2.cpy.re%2Ftracker%2Fannounce&ws=https%3A%2F%2Fpeertube2.cpy.re%2Fstatic%2Fwebseed%2Fb209ca00-c8bb-4b2b-b421-1ede169f3dbc-720.mp4', 23 magnet: 'magnet:?xs=https%3A%2F%2Fpeertube2.cpy.re%2Fstatic%2Ftorrents%2Fb209ca00-c8bb-4b2b-b421-1ede169f3dbc-720.torrent&xt=urn:btih:0f498834733e8057ed5c6f2ee2b4efd8d84a76ee&dn=super+peertube2+video&tr=wss%3A%2F%2Fpeertube2.cpy.re%3A443%2Ftracker%2Fsocket&tr=https%3A%2F%2Fpeertube2.cpy.re%2Ftracker%2Fannounce&ws=https%3A%2F%2Fpeertube2.cpy.re%2Fstatic%2Fwebseed%2Fb209ca00-c8bb-4b2b-b421-1ede169f3dbc-720.mp4',