diff options
author | Chocobozzz <me@florianbigard.com> | 2018-01-24 11:03:13 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-01-24 11:03:13 +0100 |
commit | 9ee83eb99e908c6038cbb6501bacfe18d092f0b6 (patch) | |
tree | 644a629298a1cee3aa0100d0562f7aa863a0f23b /server/tests/utils/miscs | |
parent | 1569a81894b75a8e4ec481ea94e6148b090882f5 (diff) | |
download | PeerTube-9ee83eb99e908c6038cbb6501bacfe18d092f0b6.tar.gz PeerTube-9ee83eb99e908c6038cbb6501bacfe18d092f0b6.tar.zst PeerTube-9ee83eb99e908c6038cbb6501bacfe18d092f0b6.zip |
Fix tests
Diffstat (limited to 'server/tests/utils/miscs')
-rw-r--r-- | server/tests/utils/miscs/miscs.ts | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/server/tests/utils/miscs/miscs.ts b/server/tests/utils/miscs/miscs.ts index e6666619b..f93e2372e 100644 --- a/server/tests/utils/miscs/miscs.ts +++ b/server/tests/utils/miscs/miscs.ts | |||
@@ -1,5 +1,10 @@ | |||
1 | /* tslint:disable:no-unused-expression */ | ||
2 | |||
3 | import { expect } from 'chai' | ||
1 | import { join } from 'path' | 4 | import { join } from 'path' |
5 | import * as request from 'supertest' | ||
2 | import * as WebTorrent from 'webtorrent' | 6 | import * as WebTorrent from 'webtorrent' |
7 | import { readFileBufferPromise } from '../../../helpers/core-utils' | ||
3 | 8 | ||
4 | let webtorrent = new WebTorrent() | 9 | let webtorrent = new WebTorrent() |
5 | 10 | ||
@@ -30,6 +35,27 @@ function root () { | |||
30 | return join(__dirname, '..', '..', '..', '..') | 35 | return join(__dirname, '..', '..', '..', '..') |
31 | } | 36 | } |
32 | 37 | ||
38 | async function testImage (url: string, imageName: string, imagePath: string, extension = '.jpg') { | ||
39 | // Don't test images if the node env is not set | ||
40 | // Because we need a special ffmpeg version for this test | ||
41 | if (process.env[ 'NODE_TEST_IMAGE' ]) { | ||
42 | const res = await request(url) | ||
43 | .get(imagePath) | ||
44 | .expect(200) | ||
45 | |||
46 | const body = res.body | ||
47 | |||
48 | const data = await readFileBufferPromise(join(__dirname, '..', '..', 'api', 'fixtures', imageName + extension)) | ||
49 | const minLength = body.length - ((50 * body.length) / 100) | ||
50 | const maxLength = body.length + ((50 * body.length) / 100) | ||
51 | |||
52 | return data.length > minLength && data.length < maxLength | ||
53 | } else { | ||
54 | console.log('Do not test images. Enable it by setting NODE_TEST_IMAGE env variable.') | ||
55 | return true | ||
56 | } | ||
57 | } | ||
58 | |||
33 | // --------------------------------------------------------------------------- | 59 | // --------------------------------------------------------------------------- |
34 | 60 | ||
35 | export { | 61 | export { |
@@ -37,5 +63,6 @@ export { | |||
37 | wait, | 63 | wait, |
38 | webtorrentAdd, | 64 | webtorrentAdd, |
39 | immutableAssign, | 65 | immutableAssign, |
66 | testImage, | ||
40 | root | 67 | root |
41 | } | 68 | } |