-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtreeduction_test.go
More file actions
402 lines (328 loc) · 8.86 KB
/
Copy pathtreeduction_test.go
File metadata and controls
402 lines (328 loc) · 8.86 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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
package treeduction_test
import (
"fmt"
"testing"
"time"
"treeduction"
)
// TestBasicReduction tests the basic functionality of the tree reduction.
func TestBasicReduction(t *testing.T) {
// Create a tree with integer addition as combiner
tree := treeduction.New(func(a, b int) int {
return a + b
}, 10, false, true)
defer tree.Finish()
// Create and add input channels
ch1 := make(chan int, 5)
ch2 := make(chan int, 5)
ch3 := make(chan int, 5)
ch4 := make(chan int, 5)
tree.Add(ch1, ch2, ch3, ch4)
// Send values
ch1 <- 1
ch2 <- 2
ch3 <- 3
ch4 <- 4
// Close channels to signal completion
close(ch1)
close(ch2)
close(ch3)
close(ch4)
// Read the result
result := <-tree.Output()
if result != 10 { // 1 + 2 + 3 + 4 = 10
t.Errorf("Expected result to be 10, got %d", result)
}
}
// TestLargeInputs tests reduction with a larger number of inputs.
func TestLargeInputs(t *testing.T) {
tree := treeduction.New(func(a, b int) int {
return a + b
}, 10, true, true)
numInputs := 100
sum := 0
var channels []chan int
// Create channels and compute expected sum
for i := 0; i < numInputs; i++ {
ch := make(chan int, 1)
channels = append(channels, ch)
value := i + 1
sum += value
go func(c chan int, v int) {
c <- v
close(c)
}(ch, value)
}
// Convert to read-only channels for the Add method
readOnlyChannels := make([]<-chan int, numInputs)
for i, ch := range channels {
readOnlyChannels[i] = ch
}
tree.Add(readOnlyChannels...)
// Read the result
if tree.Finish() != nil {
t.Errorf("Shouldn't happen")
}
result := <-tree.Output()
if result != sum {
t.Errorf("Expected result to be %d, got %d", sum, result)
}
}
// TestMultipleOutputs tests that the tree correctly processes multiple outputs.
func TestMultipleOutputs(t *testing.T) {
tree := treeduction.New(func(a, b string) string {
return a + b
}, 10, false, true)
defer tree.Finish()
ch1 := make(chan string, 3)
ch1 <- "Hello, "
ch1 <- "Goodbye, "
close(ch1)
ch2 := make(chan string, 3)
ch2 <- "World!"
ch2 <- "Everyone!"
close(ch2)
tree.Add(ch1, ch2)
// Should get two combined results
result1 := <-tree.Output()
result2 := <-tree.Output()
expected := map[string]bool{
"Hello, World!": true,
"Goodbye, Everyone!": true,
}
if !expected[result1] || !expected[result2] || result1 == result2 {
t.Errorf("Unexpected results: %q, %q", result1, result2)
}
}
// TestWaitForAllBasic tests the basic functionality of waitForAll parameter.
func TestWaitForAllBasic(t *testing.T) {
// Create a tree with integer addition as combiner and waitForAll=true
tree := treeduction.New(func(a, b int) int {
return a + b
}, 10, true, true)
// Create and add input channels
ch1 := make(chan int, 5)
ch2 := make(chan int, 5)
ch3 := make(chan int, 5)
ch4 := make(chan int, 5)
tree.Add(ch1, ch2, ch3, ch4)
// Send values
ch1 <- 1
ch2 <- 2
ch3 <- 3
ch4 <- 4
// Close channels to signal completion
close(ch1)
close(ch2)
close(ch3)
close(ch4)
// Close the tree to trigger the final reduction
err := tree.Finish()
if err != nil {
t.Errorf("Unexpected error from.Finish(): %v", err)
}
// Read the result - should be a single output with the total sum
result := <-tree.Output()
if result != 10 { // 1 + 2 + 3 + 4 = 10
t.Errorf("Expected result to be 10, got %d", result)
}
// Should be no more values in the output
select {
case val, ok := <-tree.Output():
if ok {
t.Errorf("Expected closed channel, got value: %v", val)
}
default:
t.Error("Expected closed channel, but it's still open")
}
}
// TestWaitForAllMultipleValues tests waitForAll with multiple values in different phases.
func TestWaitForAllMultipleValues(t *testing.T) {
// Create a tree with integer addition as combiner and waitForAll=true
tree := treeduction.New(func(a, b int) int {
return a + b
}, 10, true, false)
// Phase 1: Initial set of channels
ch1 := make(chan int, 5)
ch2 := make(chan int, 5)
tree.Add(ch1, ch2)
ch1 <- 10
ch2 <- 20
close(ch1)
close(ch2)
// Phase 2: Add more channels
ch3 := make(chan int, 5)
ch4 := make(chan int, 5)
tree.Add(ch3, ch4)
ch3 <- 30
ch4 <- 40
close(ch3)
close(ch4)
// Close the tree to trigger final reduction
err := tree.Finish()
if err != nil {
t.Errorf("Unexpected error from.Finish(): %v", err)
}
// Check result - should be the full sum (10+20+30+40 = 100)
result := <-tree.Output()
if result != 100 {
t.Errorf("Expected result to be 100, got %d", result)
}
// Should be no more values
_, ok := <-tree.Output()
if ok {
t.Error("Expected channel to be closed")
}
}
// TestWaitForAllLargeDataset tests waitForAll with a large number of inputs.
func TestWaitForAllLargeDataset(t *testing.T) {
tree := treeduction.New(func(a, b int) int {
return a + b
}, 10, true, true)
numInputs := 1000
sum := 0
var channels []chan int
// Create channels and compute expected sum
for i := 0; i < numInputs; i++ {
ch := make(chan int, 1)
channels = append(channels, ch)
value := i + 1
sum += value
go func(c chan int, v int) {
c <- v
close(c)
}(ch, value)
}
// Convert to read-only channels for the Add method
readOnlyChannels := make([]<-chan int, numInputs)
for i, ch := range channels {
readOnlyChannels[i] = ch
}
tree.Add(readOnlyChannels...)
// Close to trigger final reduction
tree.Finish()
// Read the result - should be a single value with the total sum
result := <-tree.Output()
if result != sum {
t.Errorf("Expected result to be %d, got %d", sum, result)
}
// Verify channel is closed
_, ok := <-tree.Output()
if ok {
t.Error("Expected channel to be closed")
}
}
// TestWaitForAllWithEmptyOutput tests waitForAll behavior when no values are in the output.
func TestWaitForAllWithEmptyOutput(t *testing.T) {
tree := treeduction.New(func(a, b int) int {
return a + b
}, 10, true, true)
// Create empty channels that will close immediately
ch1 := make(chan int)
ch2 := make(chan int)
close(ch1)
close(ch2)
tree.Add(ch1, ch2)
// Close the tree
tree.Finish()
// Channel should be closed, no values
_, ok := <-tree.Output()
if ok {
t.Error("Expected channel to be closed with no values")
}
}
// TestWaitForAllVsNonWaitForAll compares the behavior of waitForAll true vs false.
func TestWaitForAllVsNonWaitForAll(t *testing.T) {
// Test with waitForAll=false
treeNoWait := treeduction.New(func(a, b int) int {
return a + b
}, 10, false, false)
// Test with waitForAll=true
treeWithWait := treeduction.New(func(a, b int) int {
return a + b
}, 10, true, false)
// Create identical channels for both trees
for _, tree := range []treeduction.Tree[int]{treeNoWait, treeWithWait} {
for range 4 {
ch := make(chan int, 1)
ch <- 5
close(ch)
tree.Add(ch)
}
}
// Let some results accumulate in the output channels
time.Sleep(100 * time.Millisecond)
// For non-waitForAll tree, we collect results before closing
var noWaitSum int
var noWaitCount int
// Close both trees
treeNoWait.Finish()
treeWithWait.Finish()
// Read available values
for val := range treeNoWait.Output() {
noWaitSum += val
noWaitCount++
}
// For waitForAll tree, we expect a single result with total sum
waitForAllResult := <-treeWithWait.Output()
// Both should equal 20 (4 channels with value 5 each)
if noWaitSum != 20 {
t.Errorf("Expected noWaitSum to be 20, got %d from %d results", noWaitSum, noWaitCount)
}
if waitForAllResult != 20 {
t.Errorf("Expected waitForAllResult to be 20, got %d", waitForAllResult)
}
// Both channels should now be closed
_, noWaitOk := <-treeNoWait.Output()
_, waitOk := <-treeWithWait.Output()
if noWaitOk || waitOk {
t.Error("Expected both channels to be closed")
}
}
// Example usage.
func ExampleNew() {
// Create a tree reducer that concatenates strings
tree := treeduction.New(func(a, b string) string {
return a + b
}, 5, false, true)
defer tree.Finish()
// Create input channels
ch1 := make(chan string, 1)
ch2 := make(chan string, 1)
// Add them to the tree
tree.Add(ch1, ch2)
// Send values
ch1 <- "Hello, "
ch2 <- "World!"
// Close channels to signal completion
close(ch1)
close(ch2)
// Read and print the result
fmt.Println(<-tree.Output())
// Output: Hello, World!
}
// ExampleNewWithWaitForAll demonstrates using waitForAll for a complete reduction.
func ExampleNew_waitForAll() {
// Create a tree reducer with waitForAll=true
tree := treeduction.New(func(a, b int) int {
return a + b
}, 5, true, true)
// Create input channels
channels := make([]chan int, 5)
for i := range channels {
channels[i] = make(chan int, 1)
channels[i] <- i + 1 // Values 1, 2, 3, 4, 5
close(channels[i])
}
// Convert to read-only channels and add them
readOnlyChannels := make([]<-chan int, 5)
for i, ch := range channels {
readOnlyChannels[i] = ch
}
tree.Add(readOnlyChannels...)
// Close the tree to trigger final reduction
tree.Finish()
// Read and print the single output (1+2+3+4+5 = 15)
fmt.Println(<-tree.Output())
// Output: 15
}