aboutsummaryrefslogtreecommitdiffhomepage
path: root/packages/tests/src/shared/generate.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2023-07-31 14:34:36 +0200
committerChocobozzz <me@florianbigard.com>2023-08-11 15:02:33 +0200
commit3a4992633ee62d5edfbb484d9c6bcb3cf158489d (patch)
treee4510b39bdac9c318fdb4b47018d08f15368b8f0 /packages/tests/src/shared/generate.ts
parent04d1da5621d25d59bd5fa1543b725c497bf5d9a8 (diff)
downloadPeerTube-3a4992633ee62d5edfbb484d9c6bcb3cf158489d.tar.gz
PeerTube-3a4992633ee62d5edfbb484d9c6bcb3cf158489d.tar.zst
PeerTube-3a4992633ee62d5edfbb484d9c6bcb3cf158489d.zip
Migrate server to ESM
Sorry for the very big commit that may lead to git log issues and merge conflicts, but it's a major step forward: * Server can be faster at startup because imports() are async and we can easily lazy import big modules * Angular doesn't seem to support ES import (with .js extension), so we had to correctly organize peertube into a monorepo: * Use yarn workspace feature * Use typescript reference projects for dependencies * Shared projects have been moved into "packages", each one is now a node module (with a dedicated package.json/tsconfig.json) * server/tools have been moved into apps/ and is now a dedicated app bundled and published on NPM so users don't have to build peertube cli tools manually * server/tests have been moved into packages/ so we don't compile them every time we want to run the server * Use isolatedModule option: * Had to move from const enum to const (https://www.typescriptlang.org/docs/handbook/enums.html#objects-vs-enums) * Had to explictely specify "type" imports when used in decorators * Prefer tsx (that uses esbuild under the hood) instead of ts-node to load typescript files (tests with mocha or scripts): * To reduce test complexity as esbuild doesn't support decorator metadata, we only test server files that do not import server models * We still build tests files into js files for a faster CI * Remove unmaintained peertube CLI import script * Removed some barrels to speed up execution (less imports)
Diffstat (limited to 'packages/tests/src/shared/generate.ts')
-rw-r--r--packages/tests/src/shared/generate.ts79
1 files changed, 79 insertions, 0 deletions
diff --git a/packages/tests/src/shared/generate.ts b/packages/tests/src/shared/generate.ts
new file mode 100644
index 000000000..ab2ecaf40
--- /dev/null
+++ b/packages/tests/src/shared/generate.ts
@@ -0,0 +1,79 @@
1import { expect } from 'chai'
2import { ensureDir, pathExists } from 'fs-extra/esm'
3import { dirname } from 'path'
4import { getMaxTheoreticalBitrate } from '@peertube/peertube-core-utils'
5import { buildAbsoluteFixturePath } from '@peertube/peertube-node-utils'
6import { getVideoStreamBitrate, getVideoStreamDimensionsInfo, getVideoStreamFPS } from '@peertube/peertube-ffmpeg'
7
8async function ensureHasTooBigBitrate (fixturePath: string) {
9 const bitrate = await getVideoStreamBitrate(fixturePath)
10 const dataResolution = await getVideoStreamDimensionsInfo(fixturePath)
11 const fps = await getVideoStreamFPS(fixturePath)
12
13 const maxBitrate = getMaxTheoreticalBitrate({ ...dataResolution, fps })
14 expect(bitrate).to.be.above(maxBitrate)
15}
16
17async function generateHighBitrateVideo () {
18 const tempFixturePath = buildAbsoluteFixturePath('video_high_bitrate_1080p.mp4', true)
19
20 await ensureDir(dirname(tempFixturePath))
21
22 const exists = await pathExists(tempFixturePath)
23
24 if (!exists) {
25 const ffmpeg = (await import('fluent-ffmpeg')).default
26
27 console.log('Generating high bitrate video.')
28
29 // Generate a random, high bitrate video on the fly, so we don't have to include
30 // a large file in the repo. The video needs to have a certain minimum length so
31 // that FFmpeg properly applies bitrate limits.
32 // https://stackoverflow.com/a/15795112
33 return new Promise<string>((res, rej) => {
34 ffmpeg()
35 .outputOptions([ '-f rawvideo', '-video_size 1920x1080', '-i /dev/urandom' ])
36 .outputOptions([ '-ac 2', '-f s16le', '-i /dev/urandom', '-t 10' ])
37 .outputOptions([ '-maxrate 10M', '-bufsize 10M' ])
38 .output(tempFixturePath)
39 .on('error', rej)
40 .on('end', () => res(tempFixturePath))
41 .run()
42 })
43 }
44
45 await ensureHasTooBigBitrate(tempFixturePath)
46
47 return tempFixturePath
48}
49
50async function generateVideoWithFramerate (fps = 60) {
51 const tempFixturePath = buildAbsoluteFixturePath(`video_${fps}fps.mp4`, true)
52
53 await ensureDir(dirname(tempFixturePath))
54
55 const exists = await pathExists(tempFixturePath)
56 if (!exists) {
57 const ffmpeg = (await import('fluent-ffmpeg')).default
58
59 console.log('Generating video with framerate %d.', fps)
60
61 return new Promise<string>((res, rej) => {
62 ffmpeg()
63 .outputOptions([ '-f rawvideo', '-video_size 1280x720', '-i /dev/urandom' ])
64 .outputOptions([ '-ac 2', '-f s16le', '-i /dev/urandom', '-t 10' ])
65 .outputOptions([ `-r ${fps}` ])
66 .output(tempFixturePath)
67 .on('error', rej)
68 .on('end', () => res(tempFixturePath))
69 .run()
70 })
71 }
72
73 return tempFixturePath
74}
75
76export {
77 generateHighBitrateVideo,
78 generateVideoWithFramerate
79}