-
Notifications
You must be signed in to change notification settings - Fork 0
/
multiplexer_test.go
75 lines (61 loc) · 1.33 KB
/
multiplexer_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
package mpx
import (
"github.com/gomodule/redigo/redis"
"testing"
"time"
)
func TestMultiplexer(t *testing.T) {
connBuilder := func() (redis.Conn, error) {
return redis.Dial("tcp", ":6379")
}
conn, err := connBuilder()
if err != nil {
panic(err)
}
multiplexer := New(connBuilder)
messages := make(chan []byte, 100)
onMessage := func(_ string, msg []byte) {
messages <- msg
}
errors := make(chan error, 100)
onDisconnect := func(err error) {
errors <- err
}
activations := make(chan string, 100)
onActivation := func(ch string) {
activations <- ch
}
sub := multiplexer.NewChannelSubscription(onMessage, onDisconnect, onActivation)
// Activation works
{
// Add a Redis Pub/Sub channel to the Subscription
sub.Add("mychannel")
timer := time.NewTimer(3 * time.Second)
select {
case <-activations:
break
case <-timer.C:
t.Errorf("timed out while waiting for the 1st activation")
}
}
// Able to reconnect
{
_, err := conn.Do("client", "kill", "type", "pubsub")
if err != nil {
panic(err)
}
timer := time.NewTimer(3 * time.Second)
select {
case <-errors:
break
case <-timer.C:
t.Errorf("timed out while waiting for the error notification")
}
select {
case <-activations:
break
case <-timer.C:
t.Errorf("timed out while waiting for the 2nd activation")
}
}
}