« get me outta code hell

test: generateAlbumTrackList: collapseDurationScope snapshots - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/test/snapshot
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2024-02-06 22:04:13 -0400
committer(quasar) nebula <qznebula@protonmail.com>2024-02-10 13:31:06 -0400
commit5920fa888dd50ce577c1f9d8864b23231f84a34b (patch)
tree2687f1b51073b168f218dd3c7f99971f44746f17 /test/snapshot
parent9155600700ef306715f4df6bc5f8afd57f707fb9 (diff)
test: generateAlbumTrackList: collapseDurationScope snapshots
Diffstat (limited to 'test/snapshot')
-rw-r--r--test/snapshot/generateAlbumTrackList.js96
1 files changed, 76 insertions, 20 deletions
diff --git a/test/snapshot/generateAlbumTrackList.js b/test/snapshot/generateAlbumTrackList.js
index 904ba98..181cc1d 100644
--- a/test/snapshot/generateAlbumTrackList.js
+++ b/test/snapshot/generateAlbumTrackList.js
@@ -2,7 +2,12 @@ import t from 'tap';
 import {testContentFunctions} from '#test-lib';
 
 testContentFunctions(t, 'generateAlbumTrackList (snapshot)', async (t, evaluate) => {
-  await evaluate.load();
+  await evaluate.load({
+    mock: {
+      generateAlbumTrackListMissingDuration:
+        evaluate.stubContentFunction('generateAlbumTrackListMissingDuration'),
+    },
+  });
 
   const contribs1 = [
     {who: {name: 'Apricot', directory: 'apricot', urls: null}},
@@ -18,31 +23,82 @@ testContentFunctions(t, 'generateAlbumTrackList (snapshot)', async (t, evaluate)
 
   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 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: 5, artistContribs: contribs2, color: color2},
+    {name: 'Track 4', directory: 't4', duration: 0, artistContribs: contribs2, color: color2},
   ];
 
-  evaluate.snapshot('basic behavior, with track sections', {
+  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',
-    args: [{
-      color: color1,
-      artistContribs: contribs1,
-      trackSections: [
-        {name: 'First section', tracks: tracks.slice(0, 3)},
-        {name: 'Second section', tracks: tracks.slice(3)},
-      ],
-      tracks,
-    }],
+    slots: {collapseDurationScope: 'section'},
+    multiple: [
+      {args: [albumWithTrackSections]},
+      {args: [albumWithoutTrackSections]},
+      {args: [albumWithNoDuration]},
+    ],
   });
 
-  evaluate.snapshot('basic behavior, default track section', {
+  evaluate.snapshot(`collapseDurationScope: album`, {
     name: 'generateAlbumTrackList',
-    args: [{
-      color: color1,
-      artistContribs: contribs1,
-      trackSections: [{isDefaultTrackSection: true, tracks}],
-      tracks,
-    }],
+    slots: {collapseDurationScope: 'album'},
+    multiple: [
+      {args: [albumWithTrackSections]},
+      {args: [albumWithoutTrackSections]},
+      {args: [albumWithNoDuration]},
+    ],
   });
 });