-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbus_test.go
283 lines (236 loc) · 6.29 KB
/
bus_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
283
package bus_test
import (
"context"
"errors"
"fmt"
"github.com/steinfletcher/bus"
"github.com/stretchr/testify/assert"
"reflect"
"sync"
"testing"
"time"
)
type GetUserQuery struct {
ID string
Result UserResult
}
type SomeCommand struct {
ID string
}
type UserResult struct {
Name string `json:"name"`
Email string `json:"email"`
}
func TestBus(t *testing.T) {
b := bus.New()
handler := func(ctx context.Context, query *GetUserQuery) error {
assert.Equal(t, "1234", query.ID)
query.Result = UserResult{
Name: "Jan",
Email: "[email protected]",
}
return nil
}
_ = b.Subscribe(handler)
query := GetUserQuery{ID: "1234"}
_ = b.Publish(context.Background(), &query)
assert.Equal(t, GetUserQuery{
ID: "1234",
Result: UserResult{
Name: "Jan",
Email: "[email protected]",
},
}, query)
}
func TestBus_InvalidHandler(t *testing.T) {
tests := map[string]struct {
handlerFunc interface{}
errContains string
}{
"not a function": {
handlerFunc: "not a func",
errContains: "'string' is not a function",
},
"invalid args": {
handlerFunc: func(ctx context.Context) {},
errContains: "invalid number of handler arguments",
},
"first arg must be context": {
handlerFunc: func(a string, b string) {},
errContains: "first argument must be context.Context",
},
"success": {
handlerFunc: func(ctx context.Context, arg *GetUserQuery) {},
},
}
for name, test := range tests {
t.Run(name, func(t *testing.T) {
b := bus.New()
err := b.Subscribe(test.handlerFunc)
if test.errContains != "" {
assert.Error(t, err)
assert.Contains(t, err.Error(), test.errContains)
} else {
assert.NoError(t, err)
}
})
}
}
func TestBus_MultipleSubscribers(t *testing.T) {
b := bus.New()
var handler1Invoked bool
var handler2Invoked bool
handler1 := func(ctx context.Context, query *GetUserQuery) error {
handler1Invoked = true
return nil
}
handler2 := func(ctx context.Context, query *GetUserQuery) error {
handler2Invoked = true
return nil
}
_ = b.Subscribe(handler1)
_ = b.Subscribe(handler2)
query := GetUserQuery{ID: "1234"}
_ = b.Publish(context.Background(), &query)
assert.True(t, handler1Invoked)
assert.True(t, handler2Invoked)
}
func TestBus_PreservesContext(t *testing.T) {
b := bus.New()
handler := func(ctx context.Context, query *GetUserQuery) error {
assert.Equal(t, "value", ctx.Value("key"))
return nil
}
_ = b.Subscribe(handler)
query := GetUserQuery{ID: "1234"}
ctx := context.Background()
ctx = context.WithValue(ctx, "key", "value")
err := b.Publish(ctx, &query)
assert.NoError(t, err)
}
func TestBus_HandlerNotFound(t *testing.T) {
b := bus.New()
query := GetUserQuery{ID: "1234"}
err := b.Publish(context.Background(), &query)
assert.EqualError(t, err, "handler not found")
}
func TestBus_HandlerError(t *testing.T) {
b := bus.New()
handler := func(ctx context.Context, query *GetUserQuery) error {
return errors.New("failed to get user")
}
_ = b.Subscribe(handler)
query := GetUserQuery{ID: "1234"}
err := b.Publish(context.Background(), &query)
assert.EqualError(t, err, "failed to get user")
}
func TestBus_SubscribeAsync_DoesNotRecordError(t *testing.T) {
b := bus.New()
handler := func(ctx context.Context, query *GetUserQuery) error {
return errors.New("failed to get user")
}
_ = b.SubscribeAsync(handler)
ctx := context.Background()
ctx = context.WithValue(ctx, "key", "value")
query := GetUserQuery{ID: "1234"}
err := b.Publish(ctx, &query)
time.Sleep(time.Millisecond * 200)
assert.NoError(t, err)
}
func TestBus_MultipleAsyncHandlers(t *testing.T) {
b := bus.New()
wg := sync.WaitGroup{}
wg.Add(2)
var handler1Invoked bool
var handler2Invoked bool
var handlerDifferentTypeInvoked bool
handler1 := func(ctx context.Context, query *GetUserQuery) {
defer wg.Done()
handler1Invoked = true
}
handler2 := func(ctx context.Context, query *GetUserQuery) {
defer wg.Done()
handler2Invoked = true
}
handlerDifferentType := func(ctx context.Context, command SomeCommand) {
handlerDifferentTypeInvoked = true
}
_ = b.SubscribeAsync(handler1)
_ = b.SubscribeAsync(handler2)
_ = b.SubscribeAsync(handlerDifferentType)
query := GetUserQuery{ID: "1234"}
err := b.Publish(context.Background(), &query)
wg.Wait()
assert.True(t, handler1Invoked)
assert.True(t, handler2Invoked)
assert.False(t, handlerDifferentTypeInvoked)
assert.NoError(t, err)
}
func TestBus_SyncAndAsyncHandlers(t *testing.T) {
b := bus.New()
wg := sync.WaitGroup{}
wg.Add(1)
var asyncInvoked bool
handler := func(ctx context.Context, query *GetUserQuery) error {
return nil
}
handlerAsync := func(ctx context.Context, query *GetUserQuery) {
asyncInvoked = true
wg.Done()
}
_ = b.Subscribe(handler)
_ = b.SubscribeAsync(handlerAsync)
query := GetUserQuery{ID: "1234"}
err := b.Publish(context.Background(), &query)
wg.Wait()
assert.NoError(t, err)
assert.True(t, asyncInvoked)
}
func TestBus_SyncAndAsyncHandlers_CallsAsyncWhenSyncFails(t *testing.T) {
b := bus.New()
var asyncInvoked bool
wg := sync.WaitGroup{}
wg.Add(1)
handler := func(ctx context.Context, query *GetUserQuery) error {
return errors.New("some error")
}
handlerAsync := func(ctx context.Context, query *GetUserQuery) {
defer wg.Done()
asyncInvoked = true
}
_ = b.Subscribe(handler)
_ = b.SubscribeAsync(handlerAsync)
query := GetUserQuery{ID: "1234"}
err := b.Publish(context.Background(), &query)
wg.Wait()
assert.Error(t, err)
assert.True(t, asyncInvoked)
}
func TestBus_MultipleSyncHandlers_PreventsFutureHandlersOnError(t *testing.T) {
b := bus.New()
var handler1Invoked bool
var handler2Invoked bool
handler1 := func(ctx context.Context, query *GetUserQuery) error {
handler1Invoked = true
return errors.New("some error")
}
handler2 := func(ctx context.Context, query *GetUserQuery) error {
handler2Invoked = true
return nil
}
_ = b.Subscribe(handler1)
_ = b.Subscribe(handler2)
query := GetUserQuery{ID: "1234"}
err := b.Publish(context.Background(), &query)
assert.EqualError(t, err, "some error")
assert.True(t, handler1Invoked)
assert.False(t, handler2Invoked)
}
func Test(t *testing.T) {
fn := func(ctx context.Context, arg *SomeCommand) {
fmt.Println(reflect.TypeOf(arg).String())
}
handlerArg := reflect.TypeOf(fn).In(1).String()
fmt.Println(handlerArg)
fn(context.Background(), &SomeCommand{})
}