« get me outta code hell

generateAlbumTrackList.js « snapshot « test - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/test/snapshot/generateAlbumTrackList.js
blob: 904ba98f4a62793a15a843c5494196fae7e33822 (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
38
39
40
41
42
43
44
45
46
47
48
import t from 'tap';
import {testContentFunctions} from '#test-lib';

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

  const contribs1 = [
    {who: {name: 'Apricot', directory: 'apricot', urls: null}},
  ];

  const contribs2 = [
    {who: {name: 'Apricot', directory: 'apricot', urls: null}},
    {who: {name: 'Peach', directory: 'peach', urls: ['https://peach.bandcamp.com/']}},
  ];

  const color1 = '#fb07ff';
  const color2 = '#ea2e83';

  const tracks = [
    {name: 'Track 1', directory: 't1', duration: 20, artistContribs: contribs1, color: color1},
    {name: 'Track 2', directory: 't2', duration: 30, artistContribs: contribs1, color: color1},
    {name: 'Track 3', directory: 't3', duration: 40, artistContribs: contribs1, color: color1},
    {name: 'Track 4', directory: 't4', duration: 5, artistContribs: contribs2, color: color2},
  ];

  evaluate.snapshot('basic behavior, with track sections', {
    name: 'generateAlbumTrackList',
    args: [{
      color: color1,
      artistContribs: contribs1,
      trackSections: [
        {name: 'First section', tracks: tracks.slice(0, 3)},
        {name: 'Second section', tracks: tracks.slice(3)},
      ],
      tracks,
    }],
  });

  evaluate.snapshot('basic behavior, default track section', {
    name: 'generateAlbumTrackList',
    args: [{
      color: color1,
      artistContribs: contribs1,
      trackSections: [{isDefaultTrackSection: true, tracks}],
      tracks,
    }],
  });
});