2018-01-24 05:03:13 -05:00
|
|
|
/* tslint:disable:no-unused-expression */
|
|
|
|
|
|
|
|
import { expect } from 'chai'
|
2018-01-18 04:53:54 -05:00
|
|
|
import { join } from 'path'
|
2018-01-24 05:03:13 -05:00
|
|
|
import * as request from 'supertest'
|
2017-09-04 15:21:47 -04:00
|
|
|
import * as WebTorrent from 'webtorrent'
|
2018-01-24 05:03:13 -05:00
|
|
|
import { readFileBufferPromise } from '../../../helpers/core-utils'
|
2017-09-04 15:21:47 -04:00
|
|
|
|
|
|
|
let webtorrent = new WebTorrent()
|
|
|
|
|
2017-12-28 09:25:31 -05:00
|
|
|
function immutableAssign <T, U> (target: T, source: U) {
|
|
|
|
return Object.assign<{}, T, U>({}, target, source)
|
|
|
|
}
|
|
|
|
|
2017-12-29 05:51:55 -05:00
|
|
|
// Default interval -> 5 minutes
|
|
|
|
function dateIsValid (dateString: string, interval = 300000) {
|
2017-09-04 15:21:47 -04: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) {
|
|
|
|
if (refreshWebTorrent === true) webtorrent = new WebTorrent()
|
|
|
|
|
|
|
|
return new Promise<WebTorrent.Torrent>(res => webtorrent.add(torrent, res))
|
|
|
|
}
|
|
|
|
|
2018-01-18 04:53:54 -05:00
|
|
|
function root () {
|
|
|
|
// We are in server/tests/utils/miscs
|
|
|
|
return join(__dirname, '..', '..', '..', '..')
|
|
|
|
}
|
|
|
|
|
2018-01-24 05:03:13 -05:00
|
|
|
async function testImage (url: string, imageName: string, imagePath: string, extension = '.jpg') {
|
|
|
|
// Don't test images if the node env is not set
|
|
|
|
// Because we need a special ffmpeg version for this test
|
|
|
|
if (process.env[ 'NODE_TEST_IMAGE' ]) {
|
|
|
|
const res = await request(url)
|
|
|
|
.get(imagePath)
|
|
|
|
.expect(200)
|
|
|
|
|
|
|
|
const body = res.body
|
|
|
|
|
|
|
|
const data = await readFileBufferPromise(join(__dirname, '..', '..', 'api', 'fixtures', imageName + extension))
|
|
|
|
const minLength = body.length - ((50 * body.length) / 100)
|
|
|
|
const maxLength = body.length + ((50 * body.length) / 100)
|
|
|
|
|
|
|
|
return data.length > minLength && data.length < maxLength
|
|
|
|
} else {
|
|
|
|
console.log('Do not test images. Enable it by setting NODE_TEST_IMAGE env variable.')
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-04 15:21:47 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
dateIsValid,
|
|
|
|
wait,
|
2017-12-28 09:25:31 -05:00
|
|
|
webtorrentAdd,
|
2018-01-18 04:53:54 -05:00
|
|
|
immutableAssign,
|
2018-01-24 05:03:13 -05:00
|
|
|
testImage,
|
2018-01-18 04:53:54 -05:00
|
|
|
root
|
2017-09-04 15:21:47 -04:00
|
|
|
}
|