-
Notifications
You must be signed in to change notification settings - Fork 115
/
fake_request_retryable.go
145 lines (131 loc) · 3.86 KB
/
fake_request_retryable.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
134
135
136
137
138
139
140
141
142
143
144
145
// Code generated by counterfeiter. DO NOT EDIT.
package monitfakes
import (
"net/http"
"sync"
"github.com/cloudfoundry/bosh-agent/jobsupervisor/monit"
)
type FakeRequestRetryable struct {
AttemptStub func() (bool, error)
attemptMutex sync.RWMutex
attemptArgsForCall []struct{}
attemptReturns struct {
result1 bool
result2 error
}
attemptReturnsOnCall map[int]struct {
result1 bool
result2 error
}
ResponseStub func() *http.Response
responseMutex sync.RWMutex
responseArgsForCall []struct{}
responseReturns struct {
result1 *http.Response
}
responseReturnsOnCall map[int]struct {
result1 *http.Response
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *FakeRequestRetryable) Attempt() (bool, error) {
fake.attemptMutex.Lock()
ret, specificReturn := fake.attemptReturnsOnCall[len(fake.attemptArgsForCall)]
fake.attemptArgsForCall = append(fake.attemptArgsForCall, struct{}{})
fake.recordInvocation("Attempt", []interface{}{})
fake.attemptMutex.Unlock()
if fake.AttemptStub != nil {
return fake.AttemptStub()
}
if specificReturn {
return ret.result1, ret.result2
}
return fake.attemptReturns.result1, fake.attemptReturns.result2
}
func (fake *FakeRequestRetryable) AttemptCallCount() int {
fake.attemptMutex.RLock()
defer fake.attemptMutex.RUnlock()
return len(fake.attemptArgsForCall)
}
func (fake *FakeRequestRetryable) AttemptReturns(result1 bool, result2 error) {
fake.AttemptStub = nil
fake.attemptReturns = struct {
result1 bool
result2 error
}{result1, result2}
}
func (fake *FakeRequestRetryable) AttemptReturnsOnCall(i int, result1 bool, result2 error) {
fake.AttemptStub = nil
if fake.attemptReturnsOnCall == nil {
fake.attemptReturnsOnCall = make(map[int]struct {
result1 bool
result2 error
})
}
fake.attemptReturnsOnCall[i] = struct {
result1 bool
result2 error
}{result1, result2}
}
func (fake *FakeRequestRetryable) Response() *http.Response {
fake.responseMutex.Lock()
ret, specificReturn := fake.responseReturnsOnCall[len(fake.responseArgsForCall)]
fake.responseArgsForCall = append(fake.responseArgsForCall, struct{}{})
fake.recordInvocation("Response", []interface{}{})
fake.responseMutex.Unlock()
if fake.ResponseStub != nil {
return fake.ResponseStub()
}
if specificReturn {
return ret.result1
}
return fake.responseReturns.result1
}
func (fake *FakeRequestRetryable) ResponseCallCount() int {
fake.responseMutex.RLock()
defer fake.responseMutex.RUnlock()
return len(fake.responseArgsForCall)
}
func (fake *FakeRequestRetryable) ResponseReturns(result1 *http.Response) {
fake.ResponseStub = nil
fake.responseReturns = struct {
result1 *http.Response
}{result1}
}
func (fake *FakeRequestRetryable) ResponseReturnsOnCall(i int, result1 *http.Response) {
fake.ResponseStub = nil
if fake.responseReturnsOnCall == nil {
fake.responseReturnsOnCall = make(map[int]struct {
result1 *http.Response
})
}
fake.responseReturnsOnCall[i] = struct {
result1 *http.Response
}{result1}
}
func (fake *FakeRequestRetryable) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.attemptMutex.RLock()
defer fake.attemptMutex.RUnlock()
fake.responseMutex.RLock()
defer fake.responseMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *FakeRequestRetryable) recordInvocation(key string, args []interface{}) {
fake.invocationsMutex.Lock()
defer fake.invocationsMutex.Unlock()
if fake.invocations == nil {
fake.invocations = map[string][][]interface{}{}
}
if fake.invocations[key] == nil {
fake.invocations[key] = [][]interface{}{}
}
fake.invocations[key] = append(fake.invocations[key], args)
}
var _ monit.RequestRetryable = new(FakeRequestRetryable)