forked from ShiningRush/goevent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoevent_test.go
100 lines (81 loc) · 2.16 KB
/
goevent_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
package goevent
import (
"context"
"reflect"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
type TestEvent struct {
Key string
Key2 string
}
func (e *TestEvent) Topic() []string {
return []string{"test1", "test2"}
}
type TestEventHandler struct {
}
func (h *TestEventHandler) Topic() []string {
return []string{"test1"}
}
func (h *TestEventHandler) Handle(cxt context.Context, event Event) {
time.Sleep(time.Millisecond * 100)
e := event.(*TestEvent)
e.Key = "Handled"
}
type SecTestEventHandler struct {
}
func (h *SecTestEventHandler) Topic() []string {
return []string{"test2"}
}
func (h *SecTestEventHandler) Handle(cxt context.Context, event Event) {
time.Sleep(time.Millisecond * 100)
e := event.(*TestEvent)
e.Key2 = "Handled2"
}
func TestPublish(t *testing.T) {
err := Subscribe(&TestEventHandler{})
err = Subscribe(&SecTestEventHandler{})
assert.NoError(t, err)
e := &TestEvent{Key: "UnHandle", Key2: "UnHandle2"}
Publish(e)
assert.NoError(t, err)
assert.Equal(t, "UnHandle", e.Key)
assert.Equal(t, "UnHandle2", e.Key2)
time.Sleep(time.Millisecond * 500)
assert.Equal(t, "Handled", e.Key)
assert.Equal(t, "Handled2", e.Key2)
}
func TestPublishSync(t *testing.T) {
err := Subscribe(&TestEventHandler{})
err = Subscribe(&SecTestEventHandler{})
assert.NoError(t, err)
e := &TestEvent{Key: "UnHandle", Key2: "UnHandle2"}
PublishSync(context.TODO(), e)
assert.Equal(t, "Handled", e.Key)
assert.Equal(t, "Handled2", e.Key2)
}
func TestGetEventKey(t *testing.T) {
bus := NewInMemoryEventBus()
key := bus.getEventTopic(reflect.TypeOf(bus))
assert.Equal(t, reflect.TypeOf(bus), key)
}
func TestClose(t *testing.T) {
testBus := NewInMemoryEventBus()
err := testBus.Subscribe(&TestEventHandler{})
err = testBus.Subscribe(&SecTestEventHandler{})
assert.NoError(t, err)
e := &TestEvent{Key: "UnHandle", Key2: "UnHandle2"}
testBus.Publish(e)
assert.NoError(t, err)
assert.Equal(t, "UnHandle", e.Key)
assert.Equal(t, "UnHandle2", e.Key2)
testBus.Close()
assert.Equal(t, "Handled", e.Key)
assert.Equal(t, "Handled2", e.Key2)
defer func() {
err := recover()
assert.Equal(t, "event bus is already closed", err)
}()
testBus.Publish(e)
}