-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexpectation.message.eventcall_test.go
More file actions
161 lines (149 loc) · 4.31 KB
/
expectation.message.eventcall_test.go
File metadata and controls
161 lines (149 loc) · 4.31 KB
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
package testkit_test
import (
"context"
"testing"
"github.com/dogmatiq/dogma"
. "github.com/dogmatiq/enginekit/enginetest/stubs"
. "github.com/dogmatiq/testkit"
"github.com/dogmatiq/testkit/internal/testingmock"
)
func TestToRecordEvent_WhenUsedWithCallAction(t *testing.T) {
type (
CommandThatIsIgnored = CommandStub[TypeX]
CommandThatRecordsEvent = CommandStub[TypeE]
EventThatIsRecorded = EventStub[TypeE]
EventThatIsNeverRecorded = EventStub[TypeX]
)
app := &ApplicationStub{
ConfigureFunc: func(c dogma.ApplicationConfigurer) {
c.Identity("<app>", "58067ffe-c1d6-4097-8acb-c55a7936cb4b")
c.Routes(
dogma.ViaAggregate(&AggregateMessageHandlerStub{
ConfigureFunc: func(c dogma.AggregateConfigurer) {
c.Identity("<aggregate>", "8746651e-df4d-421c-9eea-177585e5b8eb")
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(tb *testing.T, tc *Test, m dogma.Command) Action {
tb.Helper()
return Call(func() {
err := tc.CommandExecutor().ExecuteCommand(context.Background(), m)
if err != nil {
tb.Fatalf("unexpected execute error: %v", err)
}
})
}
cases := []struct {
Name string
Action func(*testing.T, *Test) Action
Expectation Expectation
Passes bool
Report reportMatcher
Options []TestOption
}{
{
"event recorded as expected",
func(t *testing.T, tc *Test) Action {
return executeCommandViaExecutor(t, tc, &CommandThatRecordsEvent{})
},
ToRecordEvent(&EventThatIsRecorded{}),
expectPass,
expectReport(
`✓ record a specific '*stubs.EventStub[TypeE]' event`,
),
nil,
},
{
"no matching event recorded",
func(t *testing.T, tc *Test) Action {
return executeCommandViaExecutor(t, tc, &CommandThatRecordsEvent{})
},
ToRecordEvent(&EventThatIsNeverRecorded{}),
expectFail,
expectReport(
`✗ record a specific '*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`,
),
nil,
},
{
"no messages produced at all",
func(*testing.T, *Test) Action {
return Call(func() {})
},
ToRecordEvent(&EventThatIsRecorded{}),
expectFail,
expectReport(
`✗ record a specific '*stubs.EventStub[TypeE]' event`,
``,
` | EXPLANATION`,
` | no messages were produced at all`,
` | `,
` | SUGGESTIONS`,
` | • verify the logic within the code that uses the dogma.EventRecorder`,
),
nil,
},
{
"no events recorded at all",
func(t *testing.T, tc *Test) Action {
return executeCommandViaExecutor(t, tc, &CommandThatIsIgnored{})
},
ToRecordEvent(&EventThatIsRecorded{}),
expectFail,
expectReport(
`✗ record a specific '*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`,
),
nil,
},
}
for _, c := range cases {
t.Run(c.Name, func(t *testing.T) {
mt := &testingmock.T{FailSilently: true}
tc := Begin(mt, app, c.Options...)
tc.Expect(c.Action(t, tc), c.Expectation)
c.Report(mt)
if mt.Failed() != !c.Passes {
t.Fatalf("testingT.Failed() = %v, want %v", mt.Failed(), !c.Passes)
}
})
}
}