diff options
Diffstat (limited to 'shared/extra-utils')
-rw-r--r-- | shared/extra-utils/miscs/tests.ts | 32 | ||||
-rw-r--r-- | shared/extra-utils/requests/requests.ts | 5 | ||||
-rw-r--r-- | shared/extra-utils/videos/imports-command.ts | 38 |
3 files changed, 32 insertions, 43 deletions
diff --git a/shared/extra-utils/miscs/tests.ts b/shared/extra-utils/miscs/tests.ts index 8f7a2f92b..3dfb2487e 100644 --- a/shared/extra-utils/miscs/tests.ts +++ b/shared/extra-utils/miscs/tests.ts | |||
@@ -1,6 +1,36 @@ | |||
1 | import { stat } from 'fs-extra' | 1 | import { stat } from 'fs-extra' |
2 | import { basename, isAbsolute, join, resolve } from 'path' | 2 | import { basename, isAbsolute, join, resolve } from 'path' |
3 | 3 | ||
4 | const FIXTURE_URLS = { | ||
5 | youtube: 'https://www.youtube.com/watch?v=msX3jv1XdvM', | ||
6 | |||
7 | /** | ||
8 | * The video is used to check format-selection correctness wrt. HDR, | ||
9 | * which brings its own set of oddities outside of a MediaSource. | ||
10 | * FIXME: refactor once HDR is supported at playback | ||
11 | * | ||
12 | * The video needs to have the following format_ids: | ||
13 | * (which you can check by using `youtube-dl <url> -F`): | ||
14 | * - 303 (1080p webm vp9) | ||
15 | * - 299 (1080p mp4 avc1) | ||
16 | * - 335 (1080p webm vp9.2 HDR) | ||
17 | * | ||
18 | * 15 jan. 2021: TEST VIDEO NOT CURRENTLY PROVIDING | ||
19 | * - 400 (1080p mp4 av01) | ||
20 | * - 315 (2160p webm vp9 HDR) | ||
21 | * - 337 (2160p webm vp9.2 HDR) | ||
22 | * - 401 (2160p mp4 av01 HDR) | ||
23 | */ | ||
24 | youtubeHDR: 'https://www.youtube.com/watch?v=qR5vOXbZsI4', | ||
25 | |||
26 | // eslint-disable-next-line max-len | ||
27 | 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', | ||
28 | |||
29 | badVideo: 'https://download.cpy.re/peertube/bad_video.mp4', | ||
30 | goodVideo: 'https://download.cpy.re/peertube/good_video.mp4', | ||
31 | video4K: 'https://download.cpy.re/peertube/4k_file.txt' | ||
32 | } | ||
33 | |||
4 | function parallelTests () { | 34 | function parallelTests () { |
5 | return process.env.MOCHA_PARALLEL === 'true' | 35 | return process.env.MOCHA_PARALLEL === 'true' |
6 | } | 36 | } |
@@ -51,6 +81,8 @@ function buildRequestStub (): any { | |||
51 | } | 81 | } |
52 | 82 | ||
53 | export { | 83 | export { |
84 | FIXTURE_URLS, | ||
85 | |||
54 | parallelTests, | 86 | parallelTests, |
55 | isGithubCI, | 87 | isGithubCI, |
56 | areHttpImportTestsDisabled, | 88 | areHttpImportTestsDisabled, |
diff --git a/shared/extra-utils/requests/requests.ts b/shared/extra-utils/requests/requests.ts index 3f1ac6650..60c9b938b 100644 --- a/shared/extra-utils/requests/requests.ts +++ b/shared/extra-utils/requests/requests.ts | |||
@@ -7,10 +7,6 @@ import { URL } from 'url' | |||
7 | import { HttpStatusCode } from '@shared/core-utils' | 7 | import { HttpStatusCode } from '@shared/core-utils' |
8 | import { buildAbsoluteFixturePath, root } from '../miscs/tests' | 8 | import { buildAbsoluteFixturePath, root } from '../miscs/tests' |
9 | 9 | ||
10 | function get4KFileUrl () { | ||
11 | return 'https://download.cpy.re/peertube/4k_file.txt' | ||
12 | } | ||
13 | |||
14 | function makeRawRequest (url: string, statusCodeExpected?: HttpStatusCode, range?: string) { | 10 | function makeRawRequest (url: string, statusCodeExpected?: HttpStatusCode, range?: string) { |
15 | const { host, protocol, pathname } = new URL(url) | 11 | const { host, protocol, pathname } = new URL(url) |
16 | 12 | ||
@@ -227,7 +223,6 @@ function unwrapText (test: request.Test): Promise<string> { | |||
227 | // --------------------------------------------------------------------------- | 223 | // --------------------------------------------------------------------------- |
228 | 224 | ||
229 | export { | 225 | export { |
230 | get4KFileUrl, | ||
231 | makeHTMLRequest, | 226 | makeHTMLRequest, |
232 | makeGetRequest, | 227 | makeGetRequest, |
233 | decodeQueryString, | 228 | decodeQueryString, |
diff --git a/shared/extra-utils/videos/imports-command.ts b/shared/extra-utils/videos/imports-command.ts index 024aa363f..de8b65829 100644 --- a/shared/extra-utils/videos/imports-command.ts +++ b/shared/extra-utils/videos/imports-command.ts | |||
@@ -7,44 +7,6 @@ import { AbstractCommand, OverrideCommandOptions } from '../shared' | |||
7 | 7 | ||
8 | export class ImportsCommand extends AbstractCommand { | 8 | export class ImportsCommand extends AbstractCommand { |
9 | 9 | ||
10 | static getYoutubeVideoUrl () { | ||
11 | return 'https://www.youtube.com/watch?v=msX3jv1XdvM' | ||
12 | } | ||
13 | |||
14 | static getYoutubeHDRVideoUrl () { | ||
15 | /** | ||
16 | * The video is used to check format-selection correctness wrt. HDR, | ||
17 | * which brings its own set of oddities outside of a MediaSource. | ||
18 | * FIXME: refactor once HDR is supported at playback | ||
19 | * | ||
20 | * The video needs to have the following format_ids: | ||
21 | * (which you can check by using `youtube-dl <url> -F`): | ||
22 | * - 303 (1080p webm vp9) | ||
23 | * - 299 (1080p mp4 avc1) | ||
24 | * - 335 (1080p webm vp9.2 HDR) | ||
25 | * | ||
26 | * 15 jan. 2021: TEST VIDEO NOT CURRENTLY PROVIDING | ||
27 | * - 400 (1080p mp4 av01) | ||
28 | * - 315 (2160p webm vp9 HDR) | ||
29 | * - 337 (2160p webm vp9.2 HDR) | ||
30 | * - 401 (2160p mp4 av01 HDR) | ||
31 | */ | ||
32 | return 'https://www.youtube.com/watch?v=qR5vOXbZsI4' | ||
33 | } | ||
34 | |||
35 | static getMagnetURI () { | ||
36 | // eslint-disable-next-line max-len | ||
37 | return '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' | ||
38 | } | ||
39 | |||
40 | static getBadVideoUrl () { | ||
41 | return 'https://download.cpy.re/peertube/bad_video.mp4' | ||
42 | } | ||
43 | |||
44 | static getGoodVideoUrl () { | ||
45 | return 'https://download.cpy.re/peertube/good_video.mp4' | ||
46 | } | ||
47 | |||
48 | importVideo (options: OverrideCommandOptions & { | 10 | importVideo (options: OverrideCommandOptions & { |
49 | attributes: VideoImportCreate & { torrentfile?: string } | 11 | attributes: VideoImportCreate & { torrentfile?: string } |
50 | }) { | 12 | }) { |