]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/tests/utils/miscs/miscs.ts
Correctly migrate to fs-extra
[github/Chocobozzz/PeerTube.git] / server / tests / utils / miscs / miscs.ts
index e6666619bf2b0d1a98c04784cb42cc7656b0300d..b2f80e9b13fc9470b4d9ac3e7f2eba9ac1f71bfa 100644 (file)
@@ -1,6 +1,12 @@
-import { join } from 'path'
+/* tslint:disable:no-unused-expression */
+
+import * as chai from 'chai'
+import { isAbsolute, join } from 'path'
+import * as request from 'supertest'
 import * as WebTorrent from 'webtorrent'
+import { readFile } from 'fs-extra'
 
+const expect = chai.expect
 let webtorrent = new WebTorrent()
 
 function immutableAssign <T, U> (target: T, source: U) {
@@ -30,6 +36,29 @@ function root () {
   return join(__dirname, '..', '..', '..', '..')
 }
 
+async function testImage (url: string, imageName: string, imagePath: string, extension = '.jpg') {
+  const res = await request(url)
+    .get(imagePath)
+    .expect(200)
+
+  const body = res.body
+
+  const data = await readFile(join(__dirname, '..', '..', 'fixtures', imageName + extension))
+  const minLength = body.length - ((20 * body.length) / 100)
+  const maxLength = body.length + ((20 * body.length) / 100)
+
+  expect(data.length).to.be.above(minLength)
+  expect(data.length).to.be.below(maxLength)
+}
+
+function buildAbsoluteFixturePath (path: string) {
+  if (isAbsolute(path)) {
+    return path
+  }
+
+  return join(__dirname, '..', '..', 'fixtures', path)
+}
+
 // ---------------------------------------------------------------------------
 
 export {
@@ -37,5 +66,7 @@ export {
   wait,
   webtorrentAdd,
   immutableAssign,
+  testImage,
+  buildAbsoluteFixturePath,
   root
 }