-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy pathpubsub_persistent_test.go
135 lines (116 loc) · 2.6 KB
/
pubsub_persistent_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
package radix
import (
. "testing"
"time"
"errors"
"github.com/stretchr/testify/assert"
)
func closablePersistentPubSub() (PubSubConn, func()) {
closeCh := make(chan chan bool)
p := PersistentPubSub("", "", func(_, _ string) (Conn, error) {
c := dial()
go func() {
closeRetCh := <-closeCh
c.Close()
closeRetCh <- true
}()
return c, nil
})
return p, func() {
closeRetCh := make(chan bool)
closeCh <- closeRetCh
<-closeRetCh
}
}
func TestPersistentPubSub(t *T) {
p, closeFn := closablePersistentPubSub()
pubCh := make(chan int)
go func() {
for i := 0; i < 1000; i++ {
pubCh <- i
if i%100 == 0 {
time.Sleep(100 * time.Millisecond)
closeFn()
assert.Nil(t, p.Ping())
}
}
close(pubCh)
}()
testSubscribe(t, p, pubCh)
}
func TestPersistentPubSubAbortAfter(t *T) {
var errNope = errors.New("nope")
var attempts int
connFn := func(_, _ string) (Conn, error) {
attempts++
if attempts%3 != 0 {
return nil, errNope
}
return dial(), nil
}
_, err := PersistentPubSubWithOpts("", "",
PersistentPubSubConnFunc(connFn),
PersistentPubSubAbortAfter(2))
assert.Equal(t, errNope, err)
attempts = 0
p, err := PersistentPubSubWithOpts("", "",
PersistentPubSubConnFunc(connFn),
PersistentPubSubAbortAfter(3))
assert.NoError(t, err)
assert.NoError(t, p.Ping())
p.Close()
}
// https://github.com/mediocregopher/radix/issues/184
func TestPersistentPubSubClose(t *T) {
channel := "TestPersistentPubSubClose:" + randStr()
stopCh := make(chan struct{})
defer close(stopCh)
go func() {
pubConn := dial()
for {
err := pubConn.Do(Cmd(nil, "PUBLISH", channel, randStr()))
assert.NoError(t, err)
time.Sleep(10 * time.Millisecond)
select {
case <-stopCh:
return
default:
}
}
}()
for i := 0; i < 1000; i++ {
p := PersistentPubSub("", "", func(_, _ string) (Conn, error) {
return dial(), nil
})
msgCh := make(chan PubSubMessage)
err := p.Subscribe(msgCh, channel)
assert.NoError(t, err)
// drain msgCh till it closes
go func() {
for range msgCh {
}
}()
p.Close()
close(msgCh)
}
}
func TestPersistentPubSubUseAfterCloseDeadlock(t *T) {
channel := "TestPersistentPubSubUseAfterCloseDeadlock:" + randStr()
p := PersistentPubSub("", "", func(_, _ string) (Conn, error) {
return dial(), nil
})
msgCh := make(chan PubSubMessage)
err := p.Subscribe(msgCh, channel)
assert.NoError(t, err)
p.Close()
errch := make(chan error)
go func() {
errch <- p.PUnsubscribe(msgCh, channel)
}()
select {
case <-time.After(time.Second):
assert.Fail(t, "PUnsubscribe call timeout")
case err := <-errch:
assert.Error(t, err)
}
}