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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
import t from 'tap';
import {
compositeFrom,
continuationSymbol,
exposeDependency,
input,
} from '#composite';
t.test(`exposeDependency: basic behavior`, t => {
t.plan(4);
const composite1 = compositeFrom({
compose: false,
steps: [
exposeDependency({dependency: 'foo'}),
],
});
t.match(composite1, {
expose: {
dependencies: ['foo'],
},
});
t.equal(composite1.expose.compute({foo: 'bar'}), 'bar');
const composite2 = compositeFrom({
compose: false,
steps: [
{
dependencies: ['foo'],
compute: (continuation, {foo}) =>
continuation({'#bar': foo.toUpperCase()}),
},
exposeDependency({dependency: '#bar'}),
],
});
t.match(composite2, {
expose: {
dependencies: ['foo'],
},
});
t.equal(composite2.expose.compute({foo: 'bar'}), 'BAR');
});
t.test(`exposeDependency: validate inputs`, t => {
t.plan(2);
let caughtError;
try {
caughtError = null;
exposeDependency({});
} catch (error) {
caughtError = error;
}
t.match(caughtError, {
errors: [/Required these inputs: dependency/],
});
try {
caughtError = null;
exposeDependency({
dependency: input.value('some static value'),
});
} catch (error) {
caughtError = error;
}
t.match(caughtError, {
errors: [/Expected static dependencies: dependency/],
});
});
|