-
Notifications
You must be signed in to change notification settings - Fork 1
/
expectation.messagetype.eventcall_test.go
149 lines (138 loc) · 4 KB
/
expectation.messagetype.eventcall_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
package testkit_test
import (
"context"
"github.com/dogmatiq/dogma"
. "github.com/dogmatiq/enginekit/enginetest/stubs"
. "github.com/dogmatiq/testkit"
"github.com/dogmatiq/testkit/internal/testingmock"
g "github.com/onsi/ginkgo/v2"
gm "github.com/onsi/gomega"
)
var _ = g.Describe("func ToRecordEventType() (when used with the Call() action)", func() {
var (
testingT *testingmock.T
app dogma.Application
test *Test
)
type (
CommandThatIsIgnored = CommandStub[TypeX]
CommandThatRecordsEvent = CommandStub[TypeE]
EventThatIsRecorded = EventStub[TypeE]
EventThatIsNeverRecorded = EventStub[TypeX]
)
g.BeforeEach(func() {
testingT = &testingmock.T{
FailSilently: true,
}
app = &ApplicationStub{
ConfigureFunc: func(c dogma.ApplicationConfigurer) {
c.Identity("<app>", "9d18eaa1-3721-464d-8957-59a2349c3fbc")
c.RegisterAggregate(&AggregateMessageHandlerStub{
ConfigureFunc: func(c dogma.AggregateConfigurer) {
c.Identity("<aggregate>", "0b354077-3c89-49d8-94be-a396f73ac3e8")
c.Routes(
dogma.HandlesCommand[CommandThatIsIgnored](),
dogma.HandlesCommand[CommandThatRecordsEvent](),
dogma.RecordsEvent[EventThatIsRecorded](),
dogma.RecordsEvent[EventThatIsNeverRecorded](),
)
},
RouteCommandToInstanceFunc: func(dogma.Command) string {
return "<instance>"
},
HandleCommandFunc: func(
_ dogma.AggregateRoot,
s dogma.AggregateCommandScope,
m dogma.Command,
) {
switch m := m.(type) {
case CommandThatRecordsEvent:
s.RecordEvent(EventThatIsRecorded{
Content: m.Content,
})
}
},
})
},
}
})
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(
"event type recorded as expected",
executeCommandViaExecutor(CommandThatRecordsEvent{}),
ToRecordEventType[EventThatIsRecorded](),
expectPass,
expectReport(
`✓ record any 'stubs.EventStub[TypeE]' event`,
),
),
g.Entry(
"no matching event types recorded",
executeCommandViaExecutor(CommandThatRecordsEvent{}),
ToRecordEventType[EventThatIsNeverRecorded](),
expectFail,
expectReport(
`✗ record any 'stubs.EventStub[TypeX]' event`,
``,
` | EXPLANATION`,
` | nothing recorded a matching event`,
` | `,
` | SUGGESTIONS`,
` | • enable integration handlers using the EnableHandlerType() option`,
` | • verify the logic within the '<aggregate>' aggregate message handler`,
` | • verify the logic within the code that uses the dogma.EventRecorder`,
),
),
g.Entry(
"no messages produced at all",
Call(func() {}),
ToRecordEventType[EventThatIsRecorded](),
expectFail,
expectReport(
`✗ record any 'stubs.EventStub[TypeE]' event`,
``,
` | EXPLANATION`,
` | no messages were produced at all`,
` | `,
` | SUGGESTIONS`,
` | • verify the logic within the code that uses the dogma.EventRecorder`,
),
),
g.Entry(
"no events produced at all",
executeCommandViaExecutor(CommandThatIsIgnored{}),
ToRecordEventType[EventThatIsRecorded](),
expectFail,
expectReport(
`✗ record any 'stubs.EventStub[TypeE]' event`,
``,
` | EXPLANATION`,
` | no events were recorded at all`,
` | `,
` | SUGGESTIONS`,
` | • enable integration handlers using the EnableHandlerType() option`,
` | • verify the logic within the '<aggregate>' aggregate message handler`,
` | • verify the logic within the code that uses the dogma.EventRecorder`,
),
),
)
})