« get me outta code hell

data, test: withParsedCommentaryEntries - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/test/unit
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2023-11-14 22:20:45 -0400
committer(quasar) nebula <qznebula@protonmail.com>2023-11-14 22:26:19 -0400
commit6deea0629a3f3b9985d205d2f3a048893ea938c9 (patch)
tree5bed06c9f8616e1f07e73051b33e94cc16768335 /test/unit
parent764b6a3a2c89d0e4d948862bfeb546d33bbf45e6 (diff)
data, test: withParsedCommentaryEntries
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/data/composite/wiki-data/withParsedCommentaryEntries.js102
1 files changed, 102 insertions, 0 deletions
diff --git a/test/unit/data/composite/wiki-data/withParsedCommentaryEntries.js b/test/unit/data/composite/wiki-data/withParsedCommentaryEntries.js
new file mode 100644
index 0000000..7b45644
--- /dev/null
+++ b/test/unit/data/composite/wiki-data/withParsedCommentaryEntries.js
@@ -0,0 +1,102 @@
+import t from 'tap';
+
+import {compositeFrom, input} from '#composite';
+import thingConstructors from '#things';
+
+import {exposeDependency} from '#composite/control-flow';
+import {withParsedCommentaryEntries} from '#composite/wiki-data';
+
+const {Artist} = thingConstructors;
+
+const composite = compositeFrom({
+  compose: false,
+
+  steps: [
+    withParsedCommentaryEntries({
+      from: 'from',
+    }),
+
+    exposeDependency({dependency: '#parsedCommentaryEntries'}),
+  ],
+});
+
+function stubArtist(artistName = `Test Artist`) {
+  const artist = new Artist();
+  artist.name = artistName;
+
+  return artist;
+}
+
+t.test(`withParsedCommentaryEntries: basic behavior`, t => {
+  t.plan(3);
+
+  const artist1 = stubArtist(`Mobius Trip`);
+  const artist2 = stubArtist(`Hadron Kaleido`);
+
+  const artistData = [artist1, artist2];
+
+  t.match(composite, {
+    expose: {
+      dependencies: ['from', 'artistData'],
+    },
+  });
+
+  t.match(composite.expose.compute({
+    artistData,
+    from:
+      `<i>Mobius Trip:</i>\n` +
+      `Some commentary.\n` +
+      `Very cool.\n`,
+  }), [
+    {
+      artist: artist1,
+      boldfaceArtist: false,
+      annotation: null,
+      date: null,
+      body: `Some commentary.\nVery cool.`,
+    },
+  ]);
+
+  t.match(composite.expose.compute({
+    artistData,
+    from:
+      `<i>Mobius Trip:</i> (music, art, 12 January 2015)\n` +
+      `First commentary entry.\n` +
+      `Very cool.\n` +
+      `<i><b>Hadron Kaleido:</b></i> (moral support, 4/4/2022)\n` +
+      `Second commentary entry. Yes. So cool.\n` +
+      `<i>Mystery Artist:</i> (pingas)\n` +
+      `Oh no.. Oh dear...\n` +
+      `<i>Mobius Trip:</i>\n` +
+      `And back around we go.`,
+  }), [
+    {
+      artist: artist1,
+      boldfaceArtist: false,
+      annotation: `music, art`,
+      date: new Date('12 January 2015'),
+      body: `First commentary entry.\nVery cool.`,
+    },
+    {
+      artist: artist2,
+      boldfaceArtist: true,
+      annotation: `moral support`,
+      date: new Date('4 April 2022'),
+      body: `Second commentary entry. Yes. So cool.`,
+    },
+    {
+      artist: null,
+      boldfaceArtist: false,
+      annotation: `pingas`,
+      date: null,
+      body: `Oh no.. Oh dear...`,
+    },
+    {
+      artist: artist1,
+      boldfaceArtist: false,
+      annotation: null,
+      date: null,
+      body: `And back around we go.`,
+    },
+  ]);
+});