« get me outta code hell

generateAlbumCoverArtwork.js « snapshot « test - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/test/snapshot/generateAlbumCoverArtwork.js
blob: 939c6e19806e2b6305159de8d5323b67454531ab (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
34
35
36
37
import t from 'tap';

import contentFunction from '#content-function';
import {testContentFunctions} from '#test-lib';

testContentFunctions(t, 'generateAlbumCoverArtwork (snapshot)', async (t, evaluate) => {
  await evaluate.load({
    mock: {
      image: evaluate.stubContentFunction('image'),
    },
  });

  const album = {
    directory: 'bee-forus-seatbelt-safebee',
    coverArtFileExtension: 'png',
    coverArtDimensions: [400, 300],
    color: '#f28514',
    artTags: [
      {name: 'Damara', directory: 'damara', isContentWarning: false},
      {name: 'Cronus', directory: 'cronus', isContentWarning: false},
      {name: 'Bees', directory: 'bees', isContentWarning: false},
      {name: 'creepy crawlies', isContentWarning: true},
    ],
  };

  evaluate.snapshot('display: primary', {
    name: 'generateAlbumCoverArtwork',
    args: [album],
    slots: {mode: 'primary'},
  });

  evaluate.snapshot('display: thumbnail', {
    name: 'generateAlbumCoverArtwork',
    args: [album],
    slots: {mode: 'thumbnail'},
  });
});