aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/extra-utils/server
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2020-11-20 15:06:56 +0100
committerChocobozzz <me@florianbigard.com>2020-11-20 15:11:31 +0100
commitd218e7de9400938ae6ac593d9ae5842e23abd4f0 (patch)
treef73795a2e9bea35d53923c8ac6a12098357152b9 /shared/extra-utils/server
parentda2516fde1ad8f049c99ba5fd98c37425f379199 (diff)
downloadPeerTube-d218e7de9400938ae6ac593d9ae5842e23abd4f0.tar.gz
PeerTube-d218e7de9400938ae6ac593d9ae5842e23abd4f0.tar.zst
PeerTube-d218e7de9400938ae6ac593d9ae5842e23abd4f0.zip
Do not transcode to an higher bitrate
Thanks bkil https://github.com/bkil
Diffstat (limited to 'shared/extra-utils/server')
-rw-r--r--shared/extra-utils/server/servers.ts9
1 files changed, 8 insertions, 1 deletions
diff --git a/shared/extra-utils/server/servers.ts b/shared/extra-utils/server/servers.ts
index 6140cebb5..a647b0eb4 100644
--- a/shared/extra-utils/server/servers.ts
+++ b/shared/extra-utils/server/servers.ts
@@ -6,7 +6,7 @@ import { copy, pathExists, readdir, readFile, remove } from 'fs-extra'
6import { join } from 'path' 6import { join } from 'path'
7import { randomInt } from '../../core-utils/miscs/miscs' 7import { randomInt } from '../../core-utils/miscs/miscs'
8import { VideoChannel } from '../../models/videos' 8import { VideoChannel } from '../../models/videos'
9import { root, wait } from '../miscs/miscs' 9import { getFileSize, root, wait } from '../miscs/miscs'
10 10
11interface ServerInfo { 11interface ServerInfo {
12 app: ChildProcess 12 app: ChildProcess
@@ -318,11 +318,18 @@ async function waitUntilLog (server: ServerInfo, str: string, count = 1, strictC
318 } 318 }
319} 319}
320 320
321async function getServerFileSize (server: ServerInfo, subPath: string) {
322 const path = join(root(), 'test' + server.internalServerNumber, subPath)
323
324 return getFileSize(path)
325}
326
321// --------------------------------------------------------------------------- 327// ---------------------------------------------------------------------------
322 328
323export { 329export {
324 checkDirectoryIsEmpty, 330 checkDirectoryIsEmpty,
325 checkTmpIsEmpty, 331 checkTmpIsEmpty,
332 getServerFileSize,
326 ServerInfo, 333 ServerInfo,
327 parallelTests, 334 parallelTests,
328 cleanupTests, 335 cleanupTests,