diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2023-09-25 08:48:19 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2023-09-25 08:48:19 -0300 |
commit | 219596b6d52443d1090c94e50244cf79d548a167 (patch) | |
tree | 649fb9dcbe293b137e00d809951e3b3d0fdfd89e /test/unit/data/composite/exposeConstant.js | |
parent | 9f632c68f6a587a8621e509913c26d7c04794624 (diff) |
data, test: exposeConstant, withResultOfAvailabilityCheck
Diffstat (limited to 'test/unit/data/composite/exposeConstant.js')
-rw-r--r-- | test/unit/data/composite/exposeConstant.js | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/test/unit/data/composite/exposeConstant.js b/test/unit/data/composite/exposeConstant.js new file mode 100644 index 00000000..ce3f5e3d --- /dev/null +++ b/test/unit/data/composite/exposeConstant.js @@ -0,0 +1,60 @@ +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); + + let caughtError; + + try { + caughtError = null; + exposeConstant({}); + } catch (error) { + caughtError = error; + } + + t.match(caughtError, { + errors: [/Required these inputs: value/], + }); + + try { + caughtError = null; + exposeConstant({ + value: 'some dependency', + }); + } catch (error) { + caughtError = error; + } + + t.match(caughtError, { + errors: [/Expected static values: value/], + }); +}); |