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
|
import t from 'tap';
import {testContentFunctions} from '#test-lib';
import {showAggregate} from '#sugar';
testContentFunctions(t, 'generateTrackCoverArtwork (snapshot)', async (t, evaluate) => {
await evaluate.load({
mock: {
image: evaluate.stubContentFunction('image'),
},
});
const album = {
directory: 'bee-forus-seatbelt-safebee',
coverArtFileExtension: 'png',
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 track1 = {
directory: 'beesmp3',
hasUniqueCoverArt: true,
coverArtFileExtension: 'jpg',
color: '#f28514',
artTags: [{name: 'Bees', directory: 'bees', isContentWarning: false}],
album,
};
const track2 = {
directory: 'fake-bonus-track',
hasUniqueCoverArt: false,
color: '#abcdef',
album,
};
try {
evaluate.snapshot('display: primary - unique art', {
name: 'generateTrackCoverArtwork',
args: [track1],
slots: {mode: 'primary'},
});
} catch (error) {
showAggregate(error);
}
evaluate.snapshot('display: thumbnail - unique art', {
name: 'generateTrackCoverArtwork',
args: [track1],
slots: {mode: 'thumbnail'},
});
evaluate.snapshot('display: primary - no unique art', {
name: 'generateTrackCoverArtwork',
args: [track2],
slots: {mode: 'primary'},
});
evaluate.snapshot('display: thumbnail - no unique art', {
name: 'generateTrackCoverArtwork',
args: [track2],
slots: {mode: 'thumbnail'},
});
});
|