-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
request_builder_retry_test.go
103 lines (97 loc) · 2.67 KB
/
request_builder_retry_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
package fastshot
import (
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func TestRequestRetryBuilder(t *testing.T) {
tests := []struct {
name string
method func(*RequestBuilder) *RequestBuilder
expectedConfig func(*RetryConfig) bool
}{
{
name: "Set constant backoff",
method: func(rb *RequestBuilder) *RequestBuilder {
return rb.Retry().SetConstantBackoff(time.Second, 3)
},
expectedConfig: func(rc *RetryConfig) bool {
return rc.Interval() == time.Second &&
rc.MaxAttempts() == 3 &&
rc.BackoffRate() == 1 &&
rc.JitterStrategy() == JitterStrategyNone
},
},
{
name: "Set constant backoff with jitter",
method: func(rb *RequestBuilder) *RequestBuilder {
return rb.Retry().SetConstantBackoffWithJitter(time.Second, 3)
},
expectedConfig: func(rc *RetryConfig) bool {
return rc.Interval() == time.Second &&
rc.MaxAttempts() == 3 &&
rc.BackoffRate() == 1 &&
rc.JitterStrategy() == JitterStrategyFull
},
},
{
name: "Set exponential backoff",
method: func(rb *RequestBuilder) *RequestBuilder {
return rb.Retry().SetExponentialBackoff(time.Second, 3, 2.0)
},
expectedConfig: func(rc *RetryConfig) bool {
return rc.Interval() == time.Second &&
rc.MaxAttempts() == 3 &&
rc.BackoffRate() == 2.0 &&
rc.JitterStrategy() == JitterStrategyNone
},
},
{
name: "Set exponential backoff with jitter",
method: func(rb *RequestBuilder) *RequestBuilder {
return rb.Retry().SetExponentialBackoffWithJitter(time.Second, 3, 2.0)
},
expectedConfig: func(rc *RetryConfig) bool {
return rc.Interval() == time.Second &&
rc.MaxAttempts() == 3 &&
rc.BackoffRate() == 2.0 &&
rc.JitterStrategy() == JitterStrategyFull
},
},
{
name: "Set retry condition",
method: func(rb *RequestBuilder) *RequestBuilder {
return rb.Retry().WithRetryCondition(func(response *Response) bool {
return response.Status().Is5xxServerError()
})
},
expectedConfig: func(rc *RetryConfig) bool {
return rc.ShouldRetry() != nil
},
},
{
name: "Set max delay",
method: func(rb *RequestBuilder) *RequestBuilder {
return rb.Retry().WithMaxDelay(5 * time.Second)
},
expectedConfig: func(rc *RetryConfig) bool {
return rc.MaxDelay() != nil && *rc.MaxDelay() == 5*time.Second
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
// Arrange
rb := &RequestBuilder{
request: &Request{
config: newRequestConfigBase("", ""),
},
}
// Act
result := tt.method(rb)
// Assert
assert.Equal(t, rb, result)
assert.True(t, tt.expectedConfig(rb.request.config.RetryConfig()))
})
}
}