-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathiterator_test.go
More file actions
180 lines (157 loc) · 4.02 KB
/
iterator_test.go
File metadata and controls
180 lines (157 loc) · 4.02 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
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
// use this file except in compliance with the License. You may obtain a copy of
// the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations under
// the License.
package kivik
import (
"context"
"fmt"
"io"
"testing"
"time"
"gitlab.com/flimzy/testy"
)
type TestFeed struct {
max int64
i int64
closeErr error
}
var _ iterator = &TestFeed{}
func (f *TestFeed) Close() error { return f.closeErr }
func (f *TestFeed) Next(ifce any) error {
i, ok := ifce.(*int64)
if ok {
*i = f.i
f.i++
if f.i > f.max {
return io.EOF
}
time.Sleep(5 * time.Millisecond)
return nil
}
panic(fmt.Sprintf("unknown type: %T", ifce))
}
func TestIterator(t *testing.T) {
iter := newIterator(context.Background(), nil, &TestFeed{max: 10}, func() any { var i int64; return &i }())
expected := []int64{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}
result := []int64{}
for iter.Next() {
val, ok := iter.curVal.(*int64)
if !ok {
panic("Unexpected type")
}
result = append(result, *val)
}
if err := iter.Err(); err != nil {
t.Errorf("Unexpected error: %s", err)
}
if d := testy.DiffAsJSON(expected, result); d != nil {
t.Errorf("Unexpected result:\n%s\n", d)
}
}
func TestCancelledIterator(t *testing.T) {
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Millisecond)
defer cancel()
iter := newIterator(ctx, nil, &TestFeed{max: 10000}, func() any { var i int64; return &i }())
for iter.Next() { //nolint:revive // empty block necessary for loop
}
if err := iter.Err(); err.Error() != "context deadline exceeded" {
t.Errorf("Unexpected error: %s", err)
}
}
// blockingFeed is a feed whose Next blocks until Close is called,
// simulating a continuous changes feed waiting on network I/O.
type blockingFeed struct {
ready chan struct{}
done chan struct{}
}
var _ iterator = &blockingFeed{}
func (f *blockingFeed) Close() error {
select {
case <-f.done:
default:
close(f.done)
}
return nil
}
func (f *blockingFeed) Next(_ any) error {
f.ready <- struct{}{}
<-f.done
return context.Canceled
}
func TestCloseWhileNextBlocked(t *testing.T) {
t.Parallel()
feed := &blockingFeed{
ready: make(chan struct{}),
done: make(chan struct{}),
}
it := newIterator(context.Background(), nil, feed, new(int64))
go it.Next()
<-feed.ready
closeDone := make(chan struct{})
go func() {
_ = it.Close()
close(closeDone)
}()
select {
case <-closeDone:
case <-time.After(5 * time.Second):
t.Fatal("iter.Close deadlocked while Next was blocked")
}
if err := it.Err(); err != nil {
t.Errorf("Err() after Close should be nil, got: %s", err)
}
}
// TestCloseErrSuppressesErrorWhenClosing verifies that closeErr does not
// store an error when the iterator is being closed by Close. This covers the
// awaitDone path where closeErr(context.Canceled) is called after Close
// cancels the context.
func TestCloseErrSuppressesErrorWhenClosing(t *testing.T) {
t.Parallel()
it := &iter{
feed: &TestFeed{},
state: stateRowReady,
}
it.closing.Store(true)
_ = it.closeErr(context.Canceled)
if it.err != nil {
t.Errorf("expected nil err when closing, got: %s", it.err)
}
}
func Test_iter_isReady(t *testing.T) {
tests := []struct {
name string
iter *iter
err string
}{
{
name: "not ready",
iter: &iter{},
err: "kivik: Iterator access before calling Next",
},
{
name: "closed",
iter: &iter{state: stateClosed},
err: "kivik: Iterator is closed",
},
{
name: "success",
iter: &iter{state: stateRowReady},
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
err := test.iter.isReady()
if !testy.ErrorMatches(test.err, err) {
t.Errorf("Unexpected error: %s", err)
}
})
}
}