This repository has been archived by the owner on Dec 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 535
/
Copy pathevent_manager_test.go
188 lines (146 loc) · 4.55 KB
/
event_manager_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
package txpool
import (
"sync"
"testing"
"time"
"github.com/0xPolygon/polygon-edge/txpool/proto"
"github.com/0xPolygon/polygon-edge/types"
"github.com/hashicorp/go-hclog"
"github.com/stretchr/testify/assert"
)
func TestEventManager_SubscribeCancel(t *testing.T) {
numSubscriptions := 10
subscriptions := make([]*subscribeResult, numSubscriptions)
defaultEvents := []proto.EventType{proto.EventType_PROMOTED}
IDMap := make(map[subscriptionID]bool)
em := newEventManager(hclog.NewNullLogger())
defer em.Close()
// Create the subscriptions
for i := 0; i < numSubscriptions; i++ {
subscriptions[i] = em.subscribe(defaultEvents)
// Check that the number is up-to-date
assert.Equal(t, int64(i+1), em.numSubscriptions)
// Check if a duplicate ID has been issued
if _, ok := IDMap[subscriptions[i].subscriptionID]; ok {
t.Fatalf("Duplicate ID entry")
} else {
IDMap[subscriptions[i].subscriptionID] = true
}
}
// Cancel them one by one
for indx, subscription := range subscriptions {
em.cancelSubscription(subscription.subscriptionID)
// Check that the number is up-to-date
assert.Equal(t, int64(numSubscriptions-indx-1), em.numSubscriptions)
// Check that the appropriate channel is closed
if _, more := <-subscription.subscriptionChannel; more {
t.Fatalf("Subscription channel not closed for index %d", indx)
}
}
}
func TestEventManager_SubscribeClose(t *testing.T) {
numSubscriptions := 10
subscriptions := make([]*subscribeResult, numSubscriptions)
defaultEvents := []proto.EventType{proto.EventType_PROMOTED}
em := newEventManager(hclog.NewNullLogger())
// Create the subscriptions
for i := 0; i < numSubscriptions; i++ {
subscriptions[i] = em.subscribe(defaultEvents)
// Check that the number is up-to-date
assert.Equal(t, int64(i+1), em.numSubscriptions)
}
// Close off the event manager
em.Close()
assert.Equal(t, int64(0), em.numSubscriptions)
// Check if the subscription channels are closed
for indx, subscription := range subscriptions {
if _, more := <-subscription.subscriptionChannel; more {
t.Fatalf("Subscription channel not closed for index %d", indx)
}
}
}
func TestEventManager_SignalEvent(t *testing.T) {
totalEvents := 10
invalidEvents := 3
validEvents := totalEvents - invalidEvents
supportedEventTypes := []proto.EventType{proto.EventType_ADDED, proto.EventType_DROPPED}
em := newEventManager(hclog.NewNullLogger())
defer em.Close()
subscription := em.subscribe(supportedEventTypes)
eventSupported := func(eventType proto.EventType) bool {
for _, supportedType := range supportedEventTypes {
if supportedType == eventType {
return true
}
}
return false
}
mockEvents := shuffleTxPoolEvents(supportedEventTypes, totalEvents, invalidEvents)
mockHash := types.StringToHash(mockEvents[0].TxHash)
// Send the events
for _, mockEvent := range mockEvents {
em.signalEvent(mockEvent.Type, mockHash)
}
// Make sure all valid events get processed
eventsProcessed := 0
supportedEventsProcessed := 0
completed := false
for !completed {
select {
case event := <-subscription.subscriptionChannel:
eventsProcessed++
if eventSupported(event.Type) {
supportedEventsProcessed++
}
if eventsProcessed == validEvents ||
supportedEventsProcessed == validEvents {
completed = true
}
case <-time.After(time.Second * 5):
completed = true
}
}
assert.Equal(t, validEvents, eventsProcessed)
assert.Equal(t, validEvents, supportedEventsProcessed)
}
func TestEventManager_SignalEventOrder(t *testing.T) {
totalEvents := 1000
supportedEventTypes := []proto.EventType{
proto.EventType_ADDED,
proto.EventType_DROPPED,
proto.EventType_ENQUEUED,
proto.EventType_DEMOTED,
proto.EventType_PROMOTED,
}
em := newEventManager(hclog.NewNullLogger())
defer em.Close()
subscription := em.subscribe(supportedEventTypes)
mockEvents := shuffleTxPoolEvents(supportedEventTypes, totalEvents, 0)
mockHash := types.StringToHash(mockEvents[0].TxHash)
eventsProcessed := 0
var wg sync.WaitGroup
wg.Add(totalEvents)
go func() {
for {
select {
case event, more := <-subscription.subscriptionChannel:
if more {
assert.Equal(t, mockEvents[eventsProcessed].Type, event.Type)
eventsProcessed++
wg.Done()
}
case <-time.After(time.Second * 5):
for i := 0; i < totalEvents-eventsProcessed; i++ {
wg.Done()
}
}
}
}()
// Send the events
for _, mockEvent := range mockEvents {
em.signalEvent(mockEvent.Type, mockHash)
}
// Make sure all valid events get processed
wg.Wait()
assert.Equal(t, totalEvents, eventsProcessed)
}