« 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: 055f189ee73dcaa061b15b2f08c513ba1e59e6c2 (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
import t from 'tap';
import {testContentFunctions} from '../lib/content-function.js';

testContentFunctions(t, 'generateAlbumTrackList (snapshot)', async (t, evaluate) => {
  await evaluate.load({
    mock: {
      generateAlbumTrackListItem: {
        extraDependencies: ['html'],
        data: track => track.name,
        generate: (name, {html}) =>
          html.tag('li', `Item: ${name}`),
      },
    },
  });

  const tracks = [
    {name: 'Track 1', duration: 20},
    {name: 'Track 2', duration: 30},
    {name: 'Track 3', duration: 40},
    {name: 'Track 4', duration: 5},
  ];

  evaluate.snapshot('basic behavior, with track sections', {
    name: 'generateAlbumTrackList',
    args: [{
      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: [{
      trackSections: [{isDefaultTrackSection: true, tracks}],
      tracks,
    }],
  });
});