-
Notifications
You must be signed in to change notification settings - Fork 1
/
expectation.message.commandcall_test.go
184 lines (172 loc) · 4.92 KB
/
expectation.message.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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
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 ToExecuteCommand() (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>", "556be8fb-fa7b-4240-882e-86e735b7705d")
c.RegisterIntegration(&IntegrationMessageHandlerStub{
ConfigureFunc: func(c dogma.IntegrationConfigurer) {
c.Identity("<integration>", "b4f6e091-6171-4c61-bf3b-9952aea28547")
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 executed as expected",
executeCommandViaExecutor(CommandThatIsIgnored{}),
ToExecuteCommand(CommandThatIsIgnored{}),
expectPass,
expectReport(
`✓ execute a specific 'stubs.CommandStub[TypeX]' command`,
),
),
g.Entry(
"no messages produced at all",
Call(func() {}),
ToExecuteCommand(CommandThatIsIgnored{}),
expectFail,
expectReport(
`✗ execute a specific '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 executed and all relevant handler types disabled",
executeCommandViaExecutor(CommandThatRecordsEvent{
Content: EventThatExecutesCommand{},
}),
ToExecuteCommand(CommandThatIsExecutedByProcess{}),
expectFail,
expectReport(
`✗ execute a specific '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),
),
),
g.Entry(
"similar command executed with a different value",
executeCommandViaExecutor(CommandThatIsIgnored{Content: "<content>"}),
ToExecuteCommand(CommandThatIsIgnored{Content: "<different>"}),
expectFail,
expectReport(
`✗ execute a specific 'stubs.CommandStub[TypeX]' command`,
``,
` | EXPLANATION`,
` | a similar command was executed via a dogma.CommandExecutor`,
` | `,
` | SUGGESTIONS`,
` | • check the content of the message`,
` | `,
` | MESSAGE DIFF`,
` | stubs.CommandStub[github.com/dogmatiq/enginekit/enginetest/stubs.TypeX]{`,
` | Content: "<[-differ-]{+cont+}ent>"`,
` | ValidationError: ""`,
` | }`,
),
),
)
})