aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/helpers/image.ts
blob: 330139ee4ebb7fc1aa5d6e71f51b57b37be8045b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */

import 'mocha'
import { expect } from 'chai'
import { readFile, remove } from 'fs-extra'
import { join } from 'path'
import { processImage } from '../../../server/helpers/image-utils'
import { buildAbsoluteFixturePath, root } from '../../../shared/server-commands'

async function checkBuffers (path1: string, path2: string, equals: boolean) {
  const [ buf1, buf2 ] = await Promise.all([
    readFile(path1),
    readFile(path2)
  ])

  if (equals) {
    expect(buf1.equals(buf2)).to.be.true
  } else {
    expect(buf1.equals(buf2)).to.be.false
  }
}

describe('Image helpers', function () {
  const imageDestDir = join(root(), 'test-images')
  const imageDest = join(imageDestDir, 'test.jpg')
  const thumbnailSize = { width: 223, height: 122 }

  it('Should skip processing if the source image is okay', async function () {
    const input = buildAbsoluteFixturePath('thumbnail.jpg')
    await processImage(input, imageDest, thumbnailSize, true)

    await checkBuffers(input, imageDest, true)
  })

  it('Should not skip processing if the source image does not have the appropriate extension', async function () {
    const input = buildAbsoluteFixturePath('thumbnail.png')
    await processImage(input, imageDest, thumbnailSize, true)

    await checkBuffers(input, imageDest, false)
  })

  it('Should not skip processing if the source image does not have the appropriate size', async function () {
    const input = buildAbsoluteFixturePath('preview.jpg')
    await processImage(input, imageDest, thumbnailSize, true)

    await checkBuffers(input, imageDest, false)
  })

  it('Should not skip processing if the source image does not have the appropriate size', async function () {
    const input = buildAbsoluteFixturePath('thumbnail-big.jpg')
    await processImage(input, imageDest, thumbnailSize, true)

    await checkBuffers(input, imageDest, false)
  })

  after(async function () {
    await remove(imageDest)
  })
})