forked from linkedin/go-zk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conn_test.go
257 lines (222 loc) · 5.95 KB
/
conn_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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
package zk
import (
"context"
"fmt"
"io/ioutil"
"strings"
"sync"
"testing"
"time"
)
func TestRecurringReAuthHang(t *testing.T) {
zkC, err := StartTestCluster(t, 3, ioutil.Discard, ioutil.Discard)
if err != nil {
panic(err)
}
defer zkC.Stop()
conn, evtC, err := zkC.ConnectAll()
if err != nil {
panic(err)
}
defer conn.Close()
ctx, cancel := context.WithTimeout(context.Background(), time.Second*5)
defer cancel()
waitForSession(ctx, evtC)
// Add auth.
conn.AddAuth("digest", []byte("test:test"))
var reauthCloseOnce sync.Once
reauthSig := make(chan struct{}, 1)
conn.resendZkAuthFn = func(ctx context.Context, c *Conn) error {
// in current implimentation the reauth might be called more than once based on various conditions
reauthCloseOnce.Do(func() { close(reauthSig) })
return resendZkAuth(ctx, c)
}
conn.debugCloseRecvLoop = true
currentServer := conn.Server()
zkC.StopServer(currentServer)
// wait connect to new zookeeper.
ctx, cancel = context.WithTimeout(context.Background(), time.Second*5)
defer cancel()
waitForSession(ctx, evtC)
select {
case _, ok := <-reauthSig:
if !ok {
return // we closed the channel as expected
}
t.Fatal("reauth testing channel should have been closed")
case <-ctx.Done():
t.Fatal(ctx.Err())
}
}
func TestConcurrentReadAndClose(t *testing.T) {
WithListenServer(t, func(server string) {
conn, _, err := Connect([]string{server}, 15*time.Second)
if err != nil {
t.Fatalf("Failed to create Connection %s", err)
}
okChan := make(chan struct{})
var setErr error
go func() {
_, setErr = conn.Create("/test-path", []byte("test data"), 0, WorldACL(PermAll))
close(okChan)
}()
go func() {
time.Sleep(1 * time.Second)
conn.Close()
}()
select {
case <-okChan:
if setErr != ErrConnectionClosed {
t.Fatalf("unexpected error returned from Set %v", setErr)
}
case <-time.After(3 * time.Second):
t.Fatal("apparent deadlock!")
}
})
}
func TestDeadlockInClose(t *testing.T) {
c := &Conn{
shouldQuit: make(chan struct{}),
connectTimeout: 1 * time.Second,
sendChan: make(chan *request, sendChanSize),
}
for i := 0; i < sendChanSize; i++ {
c.sendChan <- &request{}
}
okChan := make(chan struct{})
go func() {
c.Close()
close(okChan)
}()
select {
case <-okChan:
case <-time.After(3 * time.Second):
t.Fatal("apparent deadlock!")
}
}
func TestNotifyWatches(t *testing.T) {
queueImpls := []struct {
name string
new func() EventQueue
}{
{
name: "chan",
new: func() EventQueue { return newChanEventChannel() },
},
{
name: "unlimited",
new: func() EventQueue { return NewUnlimitedQueue[Event]() },
},
}
cases := []struct {
eType EventType
path string
watches map[watchPathType]bool
}{
{
eType: EventNodeCreated,
path: "/a",
watches: map[watchPathType]bool{
{"/a", watchTypeExist}: true,
{"/b", watchTypeExist}: false,
{"/a", watchTypeChild}: false,
{"/a", watchTypeData}: false,
{"/a", watchTypePersistent}: true,
{"/", watchTypePersistent}: false,
{"/a", watchTypePersistentRecursive}: true,
{"/", watchTypePersistentRecursive}: true,
},
},
{
eType: EventNodeDataChanged,
path: "/a",
watches: map[watchPathType]bool{
{"/a", watchTypeExist}: true,
{"/a", watchTypeData}: true,
{"/a", watchTypeChild}: false,
{"/a", watchTypePersistent}: true,
{"/", watchTypePersistent}: false,
{"/a", watchTypePersistentRecursive}: true,
{"/", watchTypePersistentRecursive}: true,
},
},
{
eType: EventNodeChildrenChanged,
path: "/a",
watches: map[watchPathType]bool{
{"/a", watchTypeExist}: false,
{"/a", watchTypeData}: false,
{"/a", watchTypeChild}: true,
{"/a", watchTypePersistent}: true,
{"/a", watchTypePersistentRecursive}: false,
{"/a", watchTypePersistent}: true,
{"/", watchTypePersistent}: false,
{"/a", watchTypePersistentRecursive}: false,
{"/", watchTypePersistentRecursive}: false,
},
},
{
eType: EventNodeDeleted,
path: "/a",
watches: map[watchPathType]bool{
{"/a", watchTypeExist}: true,
{"/a", watchTypeData}: true,
{"/a", watchTypeChild}: true,
{"/a", watchTypePersistent}: true,
{"/", watchTypePersistent}: false,
{"/a", watchTypePersistentRecursive}: true,
{"/", watchTypePersistentRecursive}: true,
},
},
}
for _, impl := range queueImpls {
t.Run(impl.name, func(t *testing.T) {
for idx, c := range cases {
c := c
t.Run(fmt.Sprintf("#%d %s", idx, c.eType), func(t *testing.T) {
notifications := make([]struct {
watchPathType
notify bool
ch EventQueue
}, len(c.watches))
conn := &Conn{watchers: make(map[watchPathType][]EventQueue)}
var idx int
for wpt, expectEvent := range c.watches {
notifications[idx].watchPathType = wpt
notifications[idx].notify = expectEvent
ch := impl.new()
conn.addWatcher(wpt.path, wpt.wType, ch)
notifications[idx].ch = ch
if wpt.wType.isPersistent() {
e, _ := ch.Next(context.Background())
if e.Type != EventWatching {
t.Fatalf("First event on persistent watcher should always be EventWatching")
}
}
idx++
}
conn.notifyWatches(Event{Type: c.eType, Path: c.path})
for _, res := range notifications {
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Millisecond)
t.Cleanup(cancel)
e, err := res.ch.Next(ctx)
if err == nil {
isPathCorrect :=
(res.wType == watchTypePersistentRecursive && strings.HasPrefix(e.Path, res.path)) ||
e.Path == res.path
if !res.notify || !isPathCorrect {
t.Logf("unexpeted notification received by %+v: %+v", res, e)
t.Fail()
}
} else {
if res.notify {
t.Logf("expected notification not received for %+v", res)
t.Fail()
}
}
}
})
}
})
}
}