-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdi_test.go
282 lines (226 loc) · 6.07 KB
/
di_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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
package cqrs_dig
import (
"context"
"testing"
cqrs "github.com/mitz-it/golang-cqrs"
"github.com/stretchr/testify/assert"
"go.uber.org/dig"
)
type Response struct{}
type Event struct{}
type Command struct{}
type Query struct{}
type Service struct{}
type EventHandler1 struct {
Service *Service
}
func (h *EventHandler1) Handle(ctx context.Context, event *Event) error {
return nil
}
func NewEventHandler1(service *Service) cqrs.IEventHandler[*Event] {
return &EventHandler1{
Service: service,
}
}
type EventHandler2 struct {
Service *Service
}
func (h *EventHandler2) Handle(ctx context.Context, event *Event) error {
return nil
}
func NewEventHandler2(service *Service) cqrs.IEventHandler[*Event] {
return &EventHandler2{
Service: service,
}
}
type CommandHandler struct {
Service *Service
}
func (h *CommandHandler) Handle(ctx context.Context, command *Command) (r *Response, err error) {
return
}
func NewCommandHandler(service *Service) cqrs.ICommandHandler[*Command, *Response] {
return &CommandHandler{
Service: service,
}
}
type QueryHandler struct {
Service *Service
}
func (h *QueryHandler) Handle(ctx context.Context, command *Query) (r *Response, err error) {
return
}
func NewQueryHandler(service *Service) cqrs.IQueryHandler[*Query, *Response] {
return &QueryHandler{
Service: service,
}
}
type Behavior struct {
Service *Service
}
func (b *Behavior) Handle(ctx context.Context, request interface{}, next cqrs.NextFunc) (interface{}, error) {
return nil, nil
}
func NewBehavior(service *Service) *Behavior {
return &Behavior{
Service: service,
}
}
func TestProvideEventSubscriber_WhenHandlerHasDependency_ShouldProvideHandlerWithDependency(t *testing.T) {
// arrange
container := dig.New()
container.Provide(func() *Service {
return &Service{}
})
var handler *EventHandler1
// act
ProvideEventSubscriber[*Event](container, NewEventHandler1)
err := container.Invoke(func(h cqrs.IEventHandler[*Event]) {
handler = h.(*EventHandler1)
})
// assert
assert.Nil(t, err)
assert.Implements(t, (*cqrs.IEventHandler[*Event])(nil), handler)
assert.NotNil(t, handler.Service)
}
func TestProvideEventSubscriber_WhenHandlerConstructorIsNil_ShouldReturnError(t *testing.T) {
// arrange
container := dig.New()
// act
err := ProvideEventSubscriber[*Event](container, nil)
// assert
assert.Error(t, err)
}
func TestProvideEventSubscribers_WhenHandlersHaveDependency_ShouldProvideHandlersWithDependencies(t *testing.T) {
// arrange
container := dig.New()
container.Provide(func() *Service {
return &Service{}
})
var handlers []cqrs.IEventHandler[*Event]
// act
err := ProvideEventSubscribers[*Event](container, NewEventHandler1, NewEventHandler2)
container.Invoke(func(params struct {
dig.In
Handlers []cqrs.IEventHandler[*Event] `group:"handlers"`
}) {
handlers = params.Handlers
})
// assert
assert.Nil(t, err)
assert.NotEmpty(t, handlers)
assert.Contains(t, handlers, &EventHandler1{
Service: &Service{},
})
assert.Contains(t, handlers, &EventHandler2{
Service: &Service{},
})
}
func TestProvideEventSubscribers_WhenAnyConstructorIsNil_ShouldReturnError(t *testing.T) {
// arrange
container := dig.New()
// act
err := ProvideEventSubscribers[*Event](container, NewEventHandler2, nil)
// assert
assert.Error(t, err)
}
func TestProvideCommandHandler_WhenHandlerHasDependency_ShouldProvideHandlerWithDependency(t *testing.T) {
// arrange
container := dig.New()
container.Provide(func() *Service {
return &Service{}
})
var handler *CommandHandler
// act
err := ProvideCommandHandler[*Command, *Response](container, NewCommandHandler)
container.Invoke(func(h cqrs.ICommandHandler[*Command, *Response]) {
handler = h.(*CommandHandler)
})
// assert
assert.Nil(t, err)
assert.NotNil(t, handler)
assert.NotNil(t, handler.Service)
}
func TestProvideCommandHandler_WhenConstructorIsNil_ShouldReturnError(t *testing.T) {
// arrange
container := dig.New()
// act
err := ProvideCommandHandler[*Command, *Response](container, nil)
// assert
assert.Error(t, err)
}
func TestProvideQueryHandler_WhenHandlerHasDependency_ShouldProvideHandlerWithDependency(t *testing.T) {
// arrange
container := dig.New()
container.Provide(func() *Service {
return &Service{}
})
var handler *QueryHandler
// act
err := ProvideQueryHandler[*Query, *Response](container, NewQueryHandler)
container.Invoke(func(h cqrs.IQueryHandler[*Query, *Response]) {
handler = h.(*QueryHandler)
})
// assert
assert.Nil(t, err)
assert.NotNil(t, handler)
assert.NotNil(t, handler.Service)
}
func TestProvideQueryHandler_WhenConstructorIsNil_ShouldReturnError(t *testing.T) {
// arrange
container := dig.New()
// act
err := ProvideQueryHandler[*Query, *Response](container, nil)
// assert
assert.Error(t, err)
}
func TestProvideCommandBehavior_WhenBehaviorHasDependency_ShouldProvideBehaviorWithDependency(t *testing.T) {
// arrange
container := dig.New()
container.Provide(func() *Service {
return &Service{}
})
var behavior *Behavior
// act
err := ProvideCommandBehavior[*Behavior](container, 0, NewBehavior)
container.Invoke(func(b *Behavior) {
behavior = b
})
// assert
assert.Nil(t, err)
assert.NotNil(t, behavior)
assert.NotNil(t, behavior.Service)
}
func TestProvideCommandBehavior_WhenConstructorIsNil_ShouldReturnError(t *testing.T) {
// arrange
container := dig.New()
// act
err := ProvideCommandBehavior[*Behavior](container, 0, nil)
// assert
assert.Error(t, err)
}
func TestProvideQueryBehavior_WhenBehaviorHasDependency_ShouldProvideBehaviorWithDependency(t *testing.T) {
// arrange
container := dig.New()
container.Provide(func() *Service {
return &Service{}
})
var behavior *Behavior
// act
err := ProvideQueryBehavior[*Behavior](container, 0, NewBehavior)
container.Invoke(func(b *Behavior) {
behavior = b
})
// assert
assert.Nil(t, err)
assert.NotNil(t, behavior)
assert.NotNil(t, behavior.Service)
}
func TestProvideQueryBehavior_WhenConstructorIsNil_ShouldReturnError(t *testing.T) {
// arrange
container := dig.New()
// act
err := ProvideQueryBehavior[*Behavior](container, 0, nil)
// assert
assert.Error(t, err)
}