« get me outta code hell

generateCoverArtwork.js « snapshot « test - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/test/snapshot/generateCoverArtwork.js
blob: 025a6d0df48e2216a7fb47499eca2bfb367e4660 (plain)
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
import t from 'tap';
import {testContentFunctions} from '../lib/content-function.js';

testContentFunctions(t, 'generateCoverArtwork (snapshot)', async (t, evaluate) => {
  await evaluate.load();

  const extraDependencies = {
    getSizeOfImageFile: () => 0,
  };

  const artTags = [
    {name: 'Damara', directory: 'damara', isContentWarning: false},
    {name: 'Cronus', directory: 'cronus', isContentWarning: false},
    {name: 'Bees', directory: 'bees', isContentWarning: false},
    {name: 'creepy crawlies', isContentWarning: true},
  ];

  const path = ['media.albumCover', 'bee-forus-seatbelt-safebee', 'png'];

  evaluate.snapshot('display: primary', {
    name: 'generateCoverArtwork',
    args: [artTags],
    slots: {path, mode: 'primary'},
    extraDependencies,
  });

  evaluate.snapshot('display: thumbnail', {
    name: 'generateCoverArtwork',
    args: [artTags],
    slots: {path, mode: 'thumbnail'},
    extraDependencies,
  });
});