« get me outta code hell

test: reorganize data tests a lil - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/test/unit/data/composite/common-utilities/exposeConstant.js
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2023-09-28 18:29:33 -0300
committer(quasar) nebula <qznebula@protonmail.com>2023-09-28 18:29:33 -0300
commitac37f9db30d997d64de069a7b3b53c3474bdc413 (patch)
treeb1534ca78f50fdb4399fedfbf73136bf9097ab52 /test/unit/data/composite/common-utilities/exposeConstant.js
parentef290302472bd66ff9823aad1a4e029a4b4e2eba (diff)
test: reorganize data tests a lil
Diffstat (limited to 'test/unit/data/composite/common-utilities/exposeConstant.js')
-rw-r--r--test/unit/data/composite/common-utilities/exposeConstant.js52
1 files changed, 52 insertions, 0 deletions
diff --git a/test/unit/data/composite/common-utilities/exposeConstant.js b/test/unit/data/composite/common-utilities/exposeConstant.js
new file mode 100644
index 0000000..829dc70
--- /dev/null
+++ b/test/unit/data/composite/common-utilities/exposeConstant.js
@@ -0,0 +1,52 @@
+import t from 'tap';
+
+import {
+  compositeFrom,
+  continuationSymbol,
+  exposeConstant,
+  input,
+} from '#composite';
+
+t.test(`exposeConstant: basic behavior`, t => {
+  t.plan(2);
+
+  const composite1 = compositeFrom({
+    compose: false,
+
+    steps: [
+      exposeConstant({
+        value: input.value('foo'),
+      }),
+    ],
+  });
+
+  t.match(composite1, {
+    expose: {
+      dependencies: [],
+    },
+  });
+
+  t.equal(composite1.expose.compute(), 'foo');
+});
+
+t.test(`exposeConstant: validate inputs`, t => {
+  t.plan(2);
+
+  t.throws(
+    () => exposeConstant({}),
+    {
+      message: `Errors in input options passed to exposeConstant`,
+      errors: [
+        {message: `Required these inputs: value`},
+      ],
+    });
+
+  t.throws(
+    () => exposeConstant({value: 'some dependency'}),
+    {
+      message: `Errors in input options passed to exposeConstant`,
+      errors: [
+        {message: `value: Expected input.value() call, got dependency name`},
+      ],
+    });
+});