-
Notifications
You must be signed in to change notification settings - Fork 1
/
expectation.messagetype.commandcall_test.go
163 lines (151 loc) · 4.19 KB
/
expectation.messagetype.commandcall_test.go
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
package testkit_test
import (
"context"
"github.com/dogmatiq/dogma"
. "github.com/dogmatiq/enginekit/enginetest/stubs"
. "github.com/dogmatiq/testkit"
"github.com/dogmatiq/testkit/engine"
"github.com/dogmatiq/testkit/internal/testingmock"
g "github.com/onsi/ginkgo/v2"
gm "github.com/onsi/gomega"
)
var _ = g.Describe("func ToExecuteCommandType() (when used with the Call() action)", func() {
var (
testingT *testingmock.T
app dogma.Application
test *Test
)
type (
CommandThatIsIgnored = CommandStub[TypeX]
CommandThatRecordsEvent = CommandStub[dogma.Event]
CommandThatIsExecutedByProcess = CommandStub[TypeP]
EventThatExecutesCommand = EventStub[TypeP]
)
g.BeforeEach(func() {
testingT = &testingmock.T{
FailSilently: true,
}
app = &ApplicationStub{
ConfigureFunc: func(c dogma.ApplicationConfigurer) {
c.Identity("<app>", "f38c3003-bbd0-4b4a-b1f8-6922e9545acd")
c.RegisterIntegration(&IntegrationMessageHandlerStub{
ConfigureFunc: func(c dogma.IntegrationConfigurer) {
c.Identity("<integration>", "efa4e6c1-1131-4ff6-9417-5eda4356c5aa")
c.Routes(
dogma.HandlesCommand[CommandThatIsIgnored](),
dogma.HandlesCommand[CommandThatRecordsEvent](),
)
},
HandleCommandFunc: func(
_ context.Context,
s dogma.IntegrationCommandScope,
m dogma.Command,
) error {
switch m := m.(type) {
case CommandThatRecordsEvent:
s.RecordEvent(m.Content)
}
return nil
},
})
c.RegisterProcess(&ProcessMessageHandlerStub{
ConfigureFunc: func(c dogma.ProcessConfigurer) {
c.Identity("<process>", "8b4c4701-be92-4b28-83b6-0d69b97fb451")
c.Routes(
dogma.HandlesEvent[EventThatExecutesCommand](),
dogma.ExecutesCommand[CommandThatIsExecutedByProcess](),
)
},
RouteEventToInstanceFunc: func(
context.Context,
dogma.Event,
) (string, bool, error) {
return "<instance>", true, nil
},
HandleEventFunc: func(
_ context.Context,
_ dogma.ProcessRoot,
s dogma.ProcessEventScope,
m dogma.Event,
) error {
switch m := m.(type) {
case EventThatExecutesCommand:
s.ExecuteCommand(
CommandThatIsExecutedByProcess{
Content: m.Content,
},
)
}
return nil
},
})
},
}
})
executeCommandViaExecutor := func(m dogma.Command) Action {
return Call(func() {
err := test.CommandExecutor().ExecuteCommand(context.Background(), m)
gm.Expect(err).ShouldNot(gm.HaveOccurred())
})
}
g.DescribeTable(
"expectation behavior",
func(
a Action,
e Expectation,
ok bool,
rm reportMatcher,
options ...TestOption,
) {
test = Begin(testingT, app, options...)
test.Expect(a, e)
rm(testingT)
gm.Expect(testingT.Failed()).To(gm.Equal(!ok))
},
g.Entry(
"command type executed as expected",
executeCommandViaExecutor(CommandThatIsIgnored{}),
ToExecuteCommandType[CommandThatIsIgnored](),
expectPass,
expectReport(
`✓ execute any 'stubs.CommandStub[TypeX]' command`,
),
),
g.Entry(
"no messages produced at all",
Call(func() {}),
ToExecuteCommandType[CommandThatIsIgnored](),
expectFail,
expectReport(
`✗ execute any 'stubs.CommandStub[TypeX]' command`,
``,
` | EXPLANATION`,
` | no messages were produced at all`,
` | `,
` | SUGGESTIONS`,
` | • verify the logic within the code that uses the dogma.CommandExecutor`,
),
),
g.Entry(
"no matching command type executed and all relevant handler types disabled",
executeCommandViaExecutor(CommandThatRecordsEvent{
Content: EventThatExecutesCommand{},
}),
ToExecuteCommandType[CommandThatIsExecutedByProcess](),
expectFail,
expectReport(
`✗ execute any 'stubs.CommandStub[TypeP]' command`,
``,
` | EXPLANATION`,
` | nothing executed a matching command`,
` | `,
` | SUGGESTIONS`,
` | • enable process handlers using the EnableHandlerType() option`,
` | • verify the logic within the code that uses the dogma.CommandExecutor`,
),
WithUnsafeOperationOptions(
engine.EnableProcesses(false),
),
),
)
})