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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
import t from 'tap';
import {testContentFunctions} from '#test-lib';
testContentFunctions(t, 'generateAlbumTrackList (snapshot)', async (t, evaluate) => {
await evaluate.load({
mock: {
generateAlbumTrackListMissingDuration:
evaluate.stubContentFunction('generateAlbumTrackListMissingDuration'),
},
});
const contribs1 = [
{artist: {name: 'Apricot', directory: 'apricot', urls: null}},
];
const contribs2 = [
{artist: {name: 'Apricot', directory: 'apricot', urls: null}},
{artist: {name: 'Peach', directory: 'peach', urls: ['https://peach.bandcamp.com/']}},
{artist: {name: 'Cerise', directory: 'cerise', urls: null}},
];
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: 0, artistContribs: contribs1, color: color1},
{name: 'Track 3', directory: 't3', duration: 40, artistContribs: contribs1, color: color1},
{name: 'Track 4', directory: 't4', duration: 0, artistContribs: contribs2, color: color2},
];
const albumWithTrackSections = {
color: color1,
artistContribs: contribs1,
trackSections: [
{name: 'First section', tracks: tracks.slice(0, 3)},
{name: 'Second section', tracks: tracks.slice(3)},
],
tracks,
};
const albumWithoutTrackSections = {
color: color1,
artistContribs: contribs1,
trackSections: [{isDefaultTrackSection: true, tracks}],
tracks,
};
const albumWithNoDuration = {
color: color1,
artistContribs: contribs1,
trackSections: [{isDefaultTrackSection: true, tracks: [tracks[1], tracks[3]]}],
tracks: [tracks[1], tracks[3]],
};
evaluate.snapshot(`basic behavior, with track sections`, {
name: 'generateAlbumTrackList',
args: [albumWithTrackSections],
});
evaluate.snapshot(`basic behavior, default track section`, {
name: 'generateAlbumTrackList',
args: [albumWithoutTrackSections],
});
evaluate.snapshot(`collapseDurationScope: never`, {
name: 'generateAlbumTrackList',
slots: {collapseDurationScope: 'never'},
multiple: [
{args: [albumWithTrackSections]},
{args: [albumWithoutTrackSections]},
{args: [albumWithNoDuration]},
],
});
evaluate.snapshot(`collapseDurationScope: track`, {
name: 'generateAlbumTrackList',
slots: {collapseDurationScope: 'track'},
multiple: [
{args: [albumWithTrackSections]},
{args: [albumWithoutTrackSections]},
{args: [albumWithNoDuration]},
],
});
evaluate.snapshot(`collapseDurationScope: section`, {
name: 'generateAlbumTrackList',
slots: {collapseDurationScope: 'section'},
multiple: [
{args: [albumWithTrackSections]},
{args: [albumWithoutTrackSections]},
{args: [albumWithNoDuration]},
],
});
evaluate.snapshot(`collapseDurationScope: album`, {
name: 'generateAlbumTrackList',
slots: {collapseDurationScope: 'album'},
multiple: [
{args: [albumWithTrackSections]},
{args: [albumWithoutTrackSections]},
{args: [albumWithNoDuration]},
],
});
});
|