1
0
Fork 0
peertube/shared/extra-utils/miscs/miscs.ts

164 lines
4.9 KiB
TypeScript
Raw Normal View History

2020-01-31 15:56:52 +00:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2018-01-24 10:03:13 +00:00
2018-02-14 17:21:14 +00:00
import * as chai from 'chai'
2020-11-24 14:22:56 +00:00
import * as ffmpeg from 'fluent-ffmpeg'
import { ensureDir, pathExists, readFile, stat } from 'fs-extra'
2019-07-29 09:59:29 +00:00
import { basename, dirname, isAbsolute, join, resolve } from 'path'
2018-01-24 10:03:13 +00:00
import * as request from 'supertest'
2017-09-04 19:21:47 +00:00
import * as WebTorrent from 'webtorrent'
import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes'
2017-09-04 19:21:47 +00:00
2018-02-14 17:21:14 +00:00
const expect = chai.expect
let webtorrent: WebTorrent.Instance
2017-09-04 19:21:47 +00:00
2020-01-31 15:56:52 +00:00
function immutableAssign<T, U> (target: T, source: U) {
2017-12-28 14:25:31 +00:00
return Object.assign<{}, T, U>({}, target, source)
}
2020-01-31 15:56:52 +00:00
// Default interval -> 5 minutes
2017-12-29 10:51:55 +00:00
function dateIsValid (dateString: string, interval = 300000) {
2017-09-04 19:21:47 +00:00
const dateToCheck = new Date(dateString)
const now = new Date()
return Math.abs(now.getTime() - dateToCheck.getTime()) <= interval
}
function wait (milliseconds: number) {
return new Promise(resolve => setTimeout(resolve, milliseconds))
}
function webtorrentAdd (torrent: string, refreshWebTorrent = false) {
const WebTorrent = require('webtorrent')
if (!webtorrent) webtorrent = new WebTorrent()
2017-09-04 19:21:47 +00:00
if (refreshWebTorrent === true) webtorrent = new WebTorrent()
return new Promise<WebTorrent.Torrent>(res => webtorrent.add(torrent, res))
}
function root () {
// We are in /miscs
2019-06-13 09:09:38 +00:00
let root = join(__dirname, '..', '..', '..')
if (basename(root) === 'dist') root = resolve(root, '..')
return root
}
2020-11-24 14:22:56 +00:00
function buildServerDirectory (server: { internalServerNumber: number }, directory: string) {
return join(root(), 'test' + server.internalServerNumber, directory)
2019-08-09 13:04:36 +00:00
}
2018-01-24 10:03:13 +00:00
async function testImage (url: string, imageName: string, imagePath: string, extension = '.jpg') {
2018-08-10 15:49:12 +00:00
const res = await request(url)
.get(imagePath)
.expect(HttpStatusCode.OK_200)
2018-08-10 15:49:12 +00:00
const body = res.body
const data = await readFile(join(root(), 'server', 'tests', 'fixtures', imageName + extension))
const minLength = body.length - ((30 * body.length) / 100)
const maxLength = body.length + ((30 * body.length) / 100)
2018-08-10 15:49:12 +00:00
expect(data.length).to.be.above(minLength, "the generated image is way smaller than the recorded fixture")
expect(data.length).to.be.below(maxLength, "the generated image is way larger than the recorded fixture")
2018-01-24 10:03:13 +00:00
}
2020-12-10 10:24:17 +00:00
function isGithubCI () {
return !!process.env.GITHUB_WORKSPACE
}
2019-07-29 09:59:29 +00:00
function buildAbsoluteFixturePath (path: string, customCIPath = false) {
if (isAbsolute(path)) return path
2020-08-24 14:37:47 +00:00
if (customCIPath && process.env.GITHUB_WORKSPACE) {
return join(process.env.GITHUB_WORKSPACE, 'fixtures', path)
2019-07-29 12:58:41 +00:00
}
return join(root(), 'server', 'tests', 'fixtures', path)
}
function areHttpImportTestsDisabled () {
const disabled = process.env.DISABLE_HTTP_IMPORT_TESTS === 'true'
if (disabled) console.log('Import tests are disabled')
return disabled
}
2018-10-18 14:53:52 +00:00
async function generateHighBitrateVideo () {
const tempFixturePath = buildAbsoluteFixturePath('video_high_bitrate_1080p.mp4', true)
2019-07-29 09:59:29 +00:00
await ensureDir(dirname(tempFixturePath))
2018-10-18 14:53:52 +00:00
const exists = await pathExists(tempFixturePath)
if (!exists) {
2020-12-01 08:31:45 +00:00
console.log('Generating high bitrate video.')
2018-10-18 14:53:52 +00:00
// Generate a random, high bitrate video on the fly, so we don't have to include
// a large file in the repo. The video needs to have a certain minimum length so
// that FFmpeg properly applies bitrate limits.
// https://stackoverflow.com/a/15795112
2020-01-31 15:56:52 +00:00
return new Promise<string>((res, rej) => {
2018-10-18 14:53:52 +00:00
ffmpeg()
.outputOptions([ '-f rawvideo', '-video_size 1920x1080', '-i /dev/urandom' ])
.outputOptions([ '-ac 2', '-f s16le', '-i /dev/urandom', '-t 10' ])
.outputOptions([ '-maxrate 10M', '-bufsize 10M' ])
.output(tempFixturePath)
.on('error', rej)
.on('end', () => res(tempFixturePath))
.run()
})
}
return tempFixturePath
}
async function generateVideoWithFramerate (fps = 60) {
const tempFixturePath = buildAbsoluteFixturePath(`video_${fps}fps.mp4`, true)
await ensureDir(dirname(tempFixturePath))
const exists = await pathExists(tempFixturePath)
if (!exists) {
2020-12-01 08:31:45 +00:00
console.log('Generating video with framerate %d.', fps)
2020-01-31 15:56:52 +00:00
return new Promise<string>((res, rej) => {
ffmpeg()
2020-01-29 15:54:03 +00:00
.outputOptions([ '-f rawvideo', '-video_size 1280x720', '-i /dev/urandom' ])
.outputOptions([ '-ac 2', '-f s16le', '-i /dev/urandom', '-t 10' ])
.outputOptions([ `-r ${fps}` ])
.output(tempFixturePath)
.on('error', rej)
.on('end', () => res(tempFixturePath))
.run()
})
}
return tempFixturePath
}
async function getFileSize (path: string) {
const stats = await stat(path)
return stats.size
}
2017-09-04 19:21:47 +00:00
// ---------------------------------------------------------------------------
export {
dateIsValid,
wait,
areHttpImportTestsDisabled,
2019-08-09 13:04:36 +00:00
buildServerDirectory,
2017-12-28 14:25:31 +00:00
webtorrentAdd,
getFileSize,
immutableAssign,
2018-01-24 10:03:13 +00:00
testImage,
2020-12-10 10:24:17 +00:00
isGithubCI,
buildAbsoluteFixturePath,
2018-10-18 14:53:52 +00:00
root,
generateHighBitrateVideo,
generateVideoWithFramerate
2017-09-04 19:21:47 +00:00
}