-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathfetcher_test.go
More file actions
229 lines (183 loc) · 5.33 KB
/
fetcher_test.go
File metadata and controls
229 lines (183 loc) · 5.33 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
package fetcher
import (
"context"
"math"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
// Create a mock struct for FetchableItems
type mockFetchableItem struct {
item int
wait time.Duration
}
type mockOutput struct {
item int
}
// Implement the Fetch method
func (m *mockFetchableItem) Fetch(ctx context.Context) ([]*mockOutput, error) {
time.Sleep(m.wait)
outputs := make([]*mockOutput, 5)
for i := range outputs {
sampleOutput := mockOutput{item: m.item}
outputs[i] = &sampleOutput
}
return outputs, nil
}
var _ FetchableItems[[]*mockOutput] = (*mockFetchableItem)(nil)
type testOverWatch struct {
started, stopped bool
}
func (ow *testOverWatch) Start() { ow.started = true }
func (ow *testOverWatch) Stop() { ow.stopped = true }
func TestConcurrentFetcher(t *testing.T) {
t.Run("Comprehensively tests the concurrent fetcher", func(t *testing.T) {
ctx := context.Background()
inputChan := make(chan FetchableItems[[]*mockOutput], 10)
for i := 0; i < 10; i++ {
item := mockFetchableItem{item: i, wait: 1 * time.Second}
inputChan <- &item
}
close(inputChan)
ow := &testOverWatch{}
// Create a fetcher
fetcher, err := NewConcurrentFetcher[*mockFetchableItem](ctx, 3, 3, inputChan, ow)
if err != nil {
t.Fatalf("Error creating fetcher: %v", err)
}
start := time.Now()
outChan, _, err := fetcher.Start()
if err != nil {
t.Fatalf("Error starting fetcher: %v", err)
}
var results []*mockOutput
for result := range outChan {
results = append(results, result...)
}
assert.True(t, ow.started)
assert.True(t, ow.stopped)
// Check if the fetcher returned the expected results
expectedLen := 50
if len(results) != expectedLen {
t.Errorf("Expected %d results, got %d", expectedLen, len(results))
}
// Check if the fetcher returned an error
if fetcher.Err() != nil {
t.Errorf("Fetcher returned an error: %v", fetcher.Err())
}
// Check if the fetcher took around the estimated amount of time
timeElapsed := time.Since(start)
rounds := int(math.Ceil(float64(10) / 3))
expectedTime := time.Duration(rounds) * time.Second
buffer := 100 * time.Millisecond
if timeElapsed-expectedTime > buffer {
t.Errorf("Expected fetcher to take around %d ms, took %d ms", int64(expectedTime/time.Millisecond), int64(timeElapsed/time.Millisecond))
}
})
t.Run("Cancel the concurrent fetcher", func(t *testing.T) {
// Create a context with a timeout
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
defer cancel()
// Create an input channel
inputChan := make(chan FetchableItems[[]*mockOutput], 5)
for i := 0; i < 5; i++ {
item := mockFetchableItem{item: i, wait: 2 * time.Second}
inputChan <- &item
}
close(inputChan)
ow := &testOverWatch{}
// Create a new fetcher
fetcher, err := NewConcurrentFetcher[*mockFetchableItem](ctx, 2, 2, inputChan, ow)
if err != nil {
t.Fatalf("Error creating fetcher: %v", err)
}
// Start the fetcher
outChan, cancelFunc, err := fetcher.Start()
if err != nil {
t.Fatal(err)
}
// Ensure that the fetcher is cancelled successfully
go func() {
cancelFunc()
}()
var count int
for range outChan {
// Just drain the channel
count += 1
}
assert.Less(t, count, 5)
err = fetcher.Err()
assert.EqualError(t, err, "fetcher canceled")
assert.True(t, ow.started)
assert.True(t, ow.stopped)
})
t.Run("timeout the concurrent fetcher", func(t *testing.T) {
// Create a context with a timeout
ctx, cancel := context.WithTimeout(context.Background(), 1*time.Second)
defer cancel()
// Create an input channel
inputChan := make(chan FetchableItems[[]*mockOutput], 10)
for i := 0; i < 10; i++ {
item := mockFetchableItem{item: i, wait: 1 * time.Second}
inputChan <- &item
}
close(inputChan)
ow := &testOverWatch{}
// Create a new fetcher
fetcher, err := NewConcurrentFetcher[*mockFetchableItem](ctx, 2, 2, inputChan, ow)
if err != nil {
t.Fatalf("Error creating fetcher: %v", err)
}
// Start the fetcher
outChan, _, err := fetcher.Start()
if err != nil {
t.Fatal(err)
}
var count int
for range outChan {
// Just drain the channel
count += 1
}
assert.Less(t, count, 10)
err = fetcher.Err()
assert.EqualError(t, err, "context deadline exceeded")
assert.True(t, ow.started)
assert.True(t, ow.stopped)
})
t.Run("context cancel the concurrent fetcher", func(t *testing.T) {
// Create a context with a timeout
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
// Create an input channel
inputChan := make(chan FetchableItems[[]*mockOutput], 5)
for i := 0; i < 5; i++ {
item := mockFetchableItem{item: i, wait: 2 * time.Second}
inputChan <- &item
}
close(inputChan)
ow := &testOverWatch{}
// Create a new fetcher
fetcher, err := NewConcurrentFetcher[*mockFetchableItem](ctx, 2, 2, inputChan, ow)
if err != nil {
t.Fatalf("Error creating fetcher: %v", err)
}
// Start the fetcher
outChan, _, err := fetcher.Start()
if err != nil {
t.Fatal(err)
}
// Ensure that the fetcher is cancelled successfully
go func() {
cancel()
}()
var count int
for range outChan {
// Just drain the channel
count += 1
}
assert.Less(t, count, 5)
err = fetcher.Err()
assert.EqualError(t, err, "context canceled")
assert.True(t, ow.started)
assert.True(t, ow.stopped)
})
}