forked from go-zookeeper/zk
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathconn_test.go
More file actions
247 lines (224 loc) · 6.41 KB
/
Copy pathconn_test.go
File metadata and controls
247 lines (224 loc) · 6.41 KB
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
package zk
import (
"context"
"errors"
"fmt"
"io"
"log/slog"
"strings"
"sync"
"testing"
"time"
)
func TestRecurringReAuthHang(t *testing.T) {
WithTestCluster(t, 3, io.Discard, io.Discard, func(t *testing.T, tc *TestCluster) {
WithConnectAll(t, tc, func(t *testing.T, c *Conn, ech <-chan Event) {
ctx, cancel := context.WithTimeout(t.Context(), time.Second*5)
defer cancel()
if err := waitForSession(ctx, c, ech); err != nil {
t.Fatalf("failed to wait for session: %v", err)
}
// Add auth.
if err := c.AddAuth(context.Background(), "digest", []byte("test:test")); err != nil {
t.Fatalf("Failed to add auth %s", err)
}
reauthSig := make(chan struct{}, 1)
closeReauthSig := sync.OnceFunc(func() { close(reauthSig) })
c.resendZkAuthFn = func(ctx context.Context, c *Conn) error {
// in current implimentation the reauth might be called more than once based on various conditions
closeReauthSig()
return resendZkAuth(ctx, c)
}
c.debugCloseRecvLoop = true
currentServer := c.Server()
tc.StopServer(currentServer)
// wait connect to new zookeeper.
ctx, cancel = context.WithTimeout(t.Context(), time.Second*5)
defer cancel()
if err := waitForSession(ctx, c, ech); err != nil {
t.Fatalf("failed to wait for session: %v", err)
}
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(context.Background(), "/test-path", []byte("test data"), 0, WorldACL(PermAll))
close(okChan)
}()
go func() {
time.Sleep(1 * time.Second)
conn.Close()
}()
select {
case <-okChan:
if !errors.Is(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) {
shouldQuit := make(chan struct{})
c := &Conn{
shouldQuit: shouldQuit,
connectTimeout: 1 * time.Second,
sendChan: make(chan *request, sendChanSize),
logger: slog.Default(),
}
c.closeFn = sync.OnceFunc(func() {
close(shouldQuit)
select {
case <-c.queueRequest(context.Background(), opClose, nil, nil, nil):
case <-time.After(time.Second):
}
})
for range sendChanSize {
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) {
cases := []struct {
eType EventType
path string
expected map[watcherKey]bool
}{
{
EventNodeCreated, "/",
map[watcherKey]bool{
{"/", watcherKindExist}: true,
{"/", watcherKindChildren}: false,
{"/", watcherKindData}: false,
{"/", watcherKindPersistent}: true,
{"/", watcherKindPersistentRecursive}: true,
},
},
{
EventNodeCreated, "/a",
map[watcherKey]bool{
{"/", watcherKindExist}: false,
{"/", watcherKindChildren}: false,
{"/", watcherKindData}: false,
{"/", watcherKindPersistent}: false,
{"/", watcherKindPersistentRecursive}: true,
},
},
{
EventNodeCreated, "/a",
map[watcherKey]bool{
{"/b", watcherKindExist}: false,
{"/b", watcherKindChildren}: false,
{"/b", watcherKindData}: false,
{"/b", watcherKindPersistent}: false,
{"/b", watcherKindPersistentRecursive}: false,
},
},
{
EventNodeDataChanged, "/",
map[watcherKey]bool{
{"/", watcherKindExist}: true,
{"/", watcherKindData}: true,
{"/", watcherKindChildren}: false,
{"/", watcherKindPersistent}: true,
{"/", watcherKindPersistentRecursive}: true,
},
},
{
EventNodeChildrenChanged, "/",
map[watcherKey]bool{
{"/", watcherKindExist}: false,
{"/", watcherKindData}: false,
{"/", watcherKindChildren}: true,
{"/", watcherKindPersistent}: true,
{"/", watcherKindPersistentRecursive}: true,
},
},
{
EventNodeDeleted, "/",
map[watcherKey]bool{
{"/", watcherKindExist}: true,
{"/", watcherKindData}: true,
{"/", watcherKindChildren}: true,
{"/", watcherKindPersistent}: true,
{"/", watcherKindPersistentRecursive}: true,
},
},
}
conn := &Conn{
watchersByKey: make(map[watcherKey][]watcher),
}
for i, c := range cases {
t.Run(fmt.Sprintf("#%d %s", i, c.eType), func(t *testing.T) {
c := c
notifications := make([]struct {
path string
kind watcherKind
want bool
ch <-chan Event
}, len(c.expected))
var idx int
for key, want := range c.expected {
ch := conn.addWatcher(key.path, key.kind, watcherOptions{})
notifications[idx].path = key.path
notifications[idx].kind = key.kind
notifications[idx].want = want
notifications[idx].ch = ch
idx++
}
ev := Event{Type: c.eType, Path: c.path}
conn.notifyWatchers(ev)
// Wait for all notifications to be received.
time.Sleep(100 * time.Millisecond)
for _, n := range notifications {
select {
case e := <-n.ch:
if !n.want {
// We did not expect an event, but got one.
t.Fatal("unexpected notification received", e.Path, e.Type, n.kind)
} else if n.kind.isRecursive() {
// Special case for recursive watchers - paths match by prefix.
if !strings.HasPrefix(e.Path, n.path) {
// We expected an event, but the path has an unexpected prefix.
t.Fatal("notification received with unexpected path", e.Path, e.Type, n.kind)
}
} else if e.Path != n.path {
// We expected an event, but the path does not match the expected one.
t.Fatal("notification received with unexpected path", e.Path, e.Type, n.kind)
}
default:
if n.want {
t.Fatal("expected notification not received", n.path, n.kind)
}
}
}
})
}
}