-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhub_test.go
220 lines (171 loc) · 3.85 KB
/
hub_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
package hub
import (
"context"
"errors"
"sync"
"testing"
"time"
)
const (
// chans, goroutines, workers timeout
timeout = 100 * time.Millisecond
)
// wgWaitTimeout waits for the waitgroup for the specified max timeout.
// Returns true if waiting timed out.
func wgWaitTimeout(wg *sync.WaitGroup, timeout time.Duration) bool {
c := make(chan struct{})
go func() {
defer close(c)
wg.Wait()
}()
timer := time.NewTimer(timeout)
defer func() {
if !timer.Stop() {
<-timer.C
}
}()
select {
case <-c:
return false // completed normally
case <-timer.C:
return true // timed out
}
}
// use:
// (github.com/stretchr/testify/mock)
// or (https://github.com/golang/mock)
// or (https://github.com/vektra/mockery (no))
type mockMsg struct {
unrefHit int
refDelta int64
}
func (mm *mockMsg) Unref() {
mm.unrefHit += 1
}
func (mm *mockMsg) RefDelta(delta int64) {
mm.refDelta += delta
}
func TestHub(t *testing.T) {
// workers to subscribe
subsCount := 1000
tests := []struct {
subCapacity int
// msg to publish
msg interface{}
}{
{-2, time.Now().UnixNano()},
{0, time.Now().UnixNano()},
{1, time.Now().UnixNano()},
{10, time.Now()},
{100, time.Now().UnixNano()},
{-1, &mockMsg{}},
{5, &mockMsg{}},
{3, &mockMsg{}},
}
for _, tt := range tests {
func() {
hub := NewHub()
if hub == nil {
t.Fatalf("hub allocation failed")
}
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
go hub.Start(ctx)
wgStart := sync.WaitGroup{}
wgStart.Add(subsCount)
wg := sync.WaitGroup{}
wg.Add(subsCount)
for i := 0; i < subsCount; i++ {
go func(i int) {
defer wg.Done()
sub := hub.Sub(tt.subCapacity)
defer func() {
hub.UnsubWithTimeout(sub, timeout)
}()
wgStart.Done()
msg, ok := <-sub
if !ok {
t.Error("hub subscription unexpectedly closed")
}
if msg != tt.msg {
t.Error("got wrong msg from subscripton")
}
}(i)
}
if wgWaitTimeout(&wgStart, timeout) {
t.Fatalf("workers start failed")
}
hub.Pub(tt.msg)
if wgWaitTimeout(&wg, timeout) {
t.Fatalf("not all workers are done in time")
}
hub.Stop()
if msg, ok := tt.msg.(*mockMsg); ok {
if msg.refDelta != int64(subsCount) {
t.Error("ref-delta wasn't properly called on msg")
}
}
doneCtx, cancelDoneCtx := context.WithTimeout(ctx, timeout)
defer cancelDoneCtx()
hub.DoneWithContext(doneCtx)
if err := doneCtx.Err(); err != nil && errors.Is(err, context.DeadlineExceeded) {
t.Errorf("hub doesn't done in time")
}
}()
}
}
func TestStopDone(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
hub := NewHub()
go hub.Start(ctx)
_ = hub.Sub(-1)
_ = hub.Sub(0)
_ = hub.Sub(1)
hub.StopNonBlock()
hub.StopNonBlock()
stopCtx, cancelStopCtx := context.WithTimeout(ctx, timeout)
defer cancelStopCtx()
hub.StopWithContext(stopCtx)
if err := stopCtx.Err(); err == nil {
t.Errorf("hub stop doesn't care about context")
}
doneWg := sync.WaitGroup{}
doneWg.Add(1)
go func() {
defer doneWg.Done()
hub.Done()
}()
if wgWaitTimeout(&doneWg, timeout) {
t.Fatalf("hub done failed")
}
doneCtx, cancelDoneCtx := context.WithTimeout(ctx, timeout)
defer cancelDoneCtx()
hub.DoneWithContext(doneCtx)
if err := doneCtx.Err(); err == nil {
t.Errorf("hub done doesn't care about context")
}
}
func TestStartNilCtx(t *testing.T) {
hub := NewHub()
go hub.Start(nil)
hub.StopNonBlock()
hub.Done()
}
// test hub can be canceled via ctx
func TestStartWithCtx(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
hub := NewHub()
go hub.Start(ctx)
// cancel hub via ctx
cancel()
doneWg := sync.WaitGroup{}
doneWg.Add(1)
go func() {
defer doneWg.Done()
hub.Done()
}()
if wgWaitTimeout(&doneWg, timeout) {
t.Fatalf("hub done failed")
}
}