-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbroker_test.go
121 lines (100 loc) · 2.26 KB
/
broker_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
package memq
import (
"sync"
"sync/atomic"
"testing"
"time"
)
func TestSubscribe(t *testing.T) {
x := 0
handler1 := func(msg interface{}) {
x += 1
}
b := NewBroker()
b.Subscribe("topic1", handler1)
b.Publish("topic1", struct{}{})
if x != 1 {
t.Errorf("Expected x to be 1, got %d", x)
}
}
func TestUnsubscribe(t *testing.T) {
x := 0
handler1 := func(msg interface{}) {
x += 1
}
b := NewBroker()
sub := b.Subscribe("topic1", handler1)
b.Publish("topic1", struct{}{})
sub.Unsubscribe()
b.Publish("topic1", struct{}{})
if x != 1 {
t.Errorf("Expected x to be 1, got %d", x)
}
}
func TestBrokerThreadSafety(t *testing.T) {
count := 100000
var handled int32
handler1 := func(msg interface{}) {
atomic.AddInt32(&handled, 1)
}
handler2 := func(msg interface{}) {
atomic.AddInt32(&handled, 1)
}
handler3 := func(msg interface{}) {
atomic.AddInt32(&handled, 1)
}
b := NewBroker()
sub1 := b.Subscribe("topic1", handler1)
sub2 := b.Subscribe("topic1", handler2)
sub3 := b.Subscribe("topic2", handler3)
defer sub1.Unsubscribe()
defer sub2.Unsubscribe()
defer sub3.Unsubscribe()
for i := 0; i < count; i++ {
b.Publish("topic1", i)
b.Publish("topic2", i)
}
time.Sleep(time.Millisecond * 100)
if int(handled) != count*3 {
t.Errorf("Expected %d results, got %d", count*3, handled)
}
}
func TestSubscribeThreadSafety(t *testing.T) {
count := 100000
handler1 := func(msg interface{}) {}
b := NewBroker()
var wg sync.WaitGroup
wg.Add(count)
for i := 0; i < count; i++ {
go func() {
b.Subscribe("topic1", handler1)
wg.Done()
}()
}
wg.Wait()
if len(b.(*broker).subscribers["topic1"]) != count {
t.Errorf("Expected %d subscribers, got %d", count, len(b.(*broker).subscribers["topic1"]))
}
}
func TestUnsubscribeThreadSafety(t *testing.T) {
count := 100000
handler1 := func(msg interface{}) {}
b := NewBroker()
subs := make([]Subscription, 0, count)
for i := 0; i < count; i++ {
subs = append(subs, b.Subscribe("topic1", handler1))
}
var wg sync.WaitGroup
wg.Add(count)
for i := 0; i < count; i++ {
i := i
go func() {
subs[i].Unsubscribe()
wg.Done()
}()
}
wg.Wait()
if len(b.(*broker).subscribers["topic1"]) != 0 {
t.Errorf("Expected %d subscribers, got %d", 0, len(b.(*broker).subscribers["topic1"]))
}
}