-
Notifications
You must be signed in to change notification settings - Fork 0
/
scatter_gather_test.go
133 lines (116 loc) · 3.42 KB
/
scatter_gather_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
package main
import (
"context"
"errors"
"fmt"
"net/http"
"net/url"
"testing"
"time"
"github.com/mercari/go-circuitbreaker"
"github.com/stretchr/testify/require"
)
var _ (Backend) = (*testBackend)(nil)
type testBackend int
func (t testBackend) URL() *url.URL {
u, err := url.Parse("http://test.invalid")
if err != nil {
panic(err)
}
return u
}
func (t testBackend) CB() *circuitbreaker.CircuitBreaker { return nil }
func (t testBackend) Matches(*http.Request) bool { return false }
func TestScatterGather_GathersExpectedResults(t *testing.T) {
subject := scatterGather[testBackend, string]{
backends: []testBackend{testBackend(1), testBackend(2), testBackend(3), testBackend(4), testBackend(5)},
maxWait: 2 * time.Second,
}
ctx := context.Background()
err := subject.scatter(ctx, func(cctx context.Context, i testBackend) (*string, error) {
if cctx.Err() == nil {
str := fmt.Sprintf("%d fish", i)
return &str, nil
}
return nil, cctx.Err()
})
require.NoError(t, err)
var gotResults []string
for got := range subject.gather(ctx) {
gotResults = append(gotResults, got)
}
require.Len(t, gotResults, 5)
require.Contains(t, gotResults, "1 fish")
require.Contains(t, gotResults, "2 fish")
require.Contains(t, gotResults, "3 fish")
require.Contains(t, gotResults, "4 fish")
require.Contains(t, gotResults, "5 fish")
}
func TestScatterGather_ExcludesScatterErrors(t *testing.T) {
subject := scatterGather[testBackend, string]{
backends: []testBackend{testBackend(1), testBackend(2), testBackend(3)},
maxWait: 2 * time.Second,
}
ctx := context.Background()
err := subject.scatter(ctx, func(cctx context.Context, i testBackend) (*string, error) {
if i == 2 {
return nil, errors.New("fish says no")
}
if cctx.Err() == nil {
str := fmt.Sprintf("%d fish", i)
return &str, nil
}
return nil, cctx.Err()
})
require.NoError(t, err)
var gotResults []string
for got := range subject.gather(ctx) {
gotResults = append(gotResults, got)
}
require.Len(t, gotResults, 2)
require.Contains(t, gotResults, "1 fish")
require.Contains(t, gotResults, "3 fish")
require.NotContains(t, gotResults, "2 fish")
}
func TestScatterGather_DoesNotWaitLongerThanExpected(t *testing.T) {
subject := scatterGather[testBackend, string]{
backends: []testBackend{testBackend(1)},
maxWait: 100 * time.Millisecond,
}
ctx := context.Background()
err := subject.scatter(ctx, func(cctx context.Context, i testBackend) (*string, error) {
time.Sleep(2 * time.Second)
if cctx.Err() == nil {
str := fmt.Sprintf("%d fish", i)
return &str, nil
}
return nil, cctx.Err()
})
require.NoError(t, err)
var gotResults []string
for got := range subject.gather(ctx) {
gotResults = append(gotResults, got)
}
require.Len(t, gotResults, 0)
}
func TestScatterGather_GathersNothingWhenContextIsCancelled(t *testing.T) {
subject := scatterGather[testBackend, string]{
backends: []testBackend{testBackend(1), testBackend(2), testBackend(3)},
maxWait: 2 * time.Second,
}
ctx, cancel := context.WithTimeout(context.Background(), 1*time.Millisecond)
cancel()
err := subject.scatter(ctx, func(cctx context.Context, i testBackend) (*string, error) {
if cctx.Err() == nil {
str := fmt.Sprintf("%d fish", i)
return &str, nil
}
return nil, cctx.Err()
})
require.NoError(t, err)
var gotResults []string
for got := range subject.gather(ctx) {
gotResults = append(gotResults, got)
}
require.Len(t, gotResults, 0)
}