]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/extra-utils/miscs/tests.ts
dd86041fef9c95d9566ed8d586766a4a073c0606
[github/Chocobozzz/PeerTube.git] / shared / extra-utils / miscs / tests.ts
1 import { stat } from 'fs-extra'
2 import { basename, isAbsolute, join, resolve } from 'path'
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 goodVideo720: 'https://download.cpy.re/peertube/good_video_720.mp4',
32
33 file4K: 'https://download.cpy.re/peertube/4k_file.txt'
34 }
35
36 function parallelTests () {
37 return process.env.MOCHA_PARALLEL === 'true'
38 }
39
40 function isGithubCI () {
41 return !!process.env.GITHUB_WORKSPACE
42 }
43
44 function areHttpImportTestsDisabled () {
45 const disabled = process.env.DISABLE_HTTP_IMPORT_TESTS === 'true'
46
47 if (disabled) console.log('DISABLE_HTTP_IMPORT_TESTS env set to "true" so import tests are disabled')
48
49 return disabled
50 }
51
52 function areObjectStorageTestsDisabled () {
53 const disabled = process.env.ENABLE_OBJECT_STORAGE_TESTS !== 'true'
54
55 if (disabled) console.log('ENABLE_OBJECT_STORAGE_TESTS env is not set to "true" so object storage tests are disabled')
56
57 return disabled
58 }
59
60 function buildAbsoluteFixturePath (path: string, customCIPath = false) {
61 if (isAbsolute(path)) return path
62
63 if (customCIPath && process.env.GITHUB_WORKSPACE) {
64 return join(process.env.GITHUB_WORKSPACE, 'fixtures', path)
65 }
66
67 return join(root(), 'server', 'tests', 'fixtures', path)
68 }
69
70 function root () {
71 // We are in /miscs
72 let root = join(__dirname, '..', '..', '..')
73
74 if (basename(root) === 'dist') root = resolve(root, '..')
75
76 return root
77 }
78
79 function wait (milliseconds: number) {
80 return new Promise(resolve => setTimeout(resolve, milliseconds))
81 }
82
83 async function getFileSize (path: string) {
84 const stats = await stat(path)
85
86 return stats.size
87 }
88
89 function buildRequestStub (): any {
90 return { }
91 }
92
93 export {
94 FIXTURE_URLS,
95
96 parallelTests,
97 isGithubCI,
98 areHttpImportTestsDisabled,
99 buildAbsoluteFixturePath,
100 getFileSize,
101 buildRequestStub,
102 areObjectStorageTestsDisabled,
103 wait,
104 root
105 }