forked from cloudfoundry/bosh-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fake_httpclient.go
104 lines (93 loc) · 2.61 KB
/
fake_httpclient.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
// Code generated by counterfeiter. DO NOT EDIT.
package monitfakes
import (
"net/http"
"sync"
"github.com/cloudfoundry/bosh-agent/jobsupervisor/monit"
)
type FakeHTTPClient struct {
DoStub func(request *http.Request) (*http.Response, error)
doMutex sync.RWMutex
doArgsForCall []struct {
request *http.Request
}
doReturns struct {
result1 *http.Response
result2 error
}
doReturnsOnCall map[int]struct {
result1 *http.Response
result2 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *FakeHTTPClient) Do(request *http.Request) (*http.Response, error) {
fake.doMutex.Lock()
ret, specificReturn := fake.doReturnsOnCall[len(fake.doArgsForCall)]
fake.doArgsForCall = append(fake.doArgsForCall, struct {
request *http.Request
}{request})
fake.recordInvocation("Do", []interface{}{request})
fake.doMutex.Unlock()
if fake.DoStub != nil {
return fake.DoStub(request)
}
if specificReturn {
return ret.result1, ret.result2
}
return fake.doReturns.result1, fake.doReturns.result2
}
func (fake *FakeHTTPClient) DoCallCount() int {
fake.doMutex.RLock()
defer fake.doMutex.RUnlock()
return len(fake.doArgsForCall)
}
func (fake *FakeHTTPClient) DoArgsForCall(i int) *http.Request {
fake.doMutex.RLock()
defer fake.doMutex.RUnlock()
return fake.doArgsForCall[i].request
}
func (fake *FakeHTTPClient) DoReturns(result1 *http.Response, result2 error) {
fake.DoStub = nil
fake.doReturns = struct {
result1 *http.Response
result2 error
}{result1, result2}
}
func (fake *FakeHTTPClient) DoReturnsOnCall(i int, result1 *http.Response, result2 error) {
fake.DoStub = nil
if fake.doReturnsOnCall == nil {
fake.doReturnsOnCall = make(map[int]struct {
result1 *http.Response
result2 error
})
}
fake.doReturnsOnCall[i] = struct {
result1 *http.Response
result2 error
}{result1, result2}
}
func (fake *FakeHTTPClient) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.doMutex.RLock()
defer fake.doMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *FakeHTTPClient) 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.HTTPClient = new(FakeHTTPClient)