forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fake_http_client_interface.go
155 lines (137 loc) · 4.36 KB
/
fake_http_client_interface.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
146
147
148
149
150
151
152
153
154
155
// This file was generated by counterfeiter
package netfakes
import (
_ "crypto/sha512"
"net/http"
"sync"
"github.com/cloudfoundry/cli/cf/net"
)
type FakeHTTPClientInterface struct {
DumpRequestStub func(*http.Request)
dumpRequestMutex sync.RWMutex
dumpRequestArgsForCall []struct {
arg1 *http.Request
}
DumpResponseStub func(*http.Response)
dumpResponseMutex sync.RWMutex
dumpResponseArgsForCall []struct {
arg1 *http.Response
}
DoStub func(*http.Request) (*http.Response, error)
doMutex sync.RWMutex
doArgsForCall []struct {
arg1 *http.Request
}
doReturns struct {
result1 *http.Response
result2 error
}
ExecuteCheckRedirectStub func(req *http.Request, via []*http.Request) error
executeCheckRedirectMutex sync.RWMutex
executeCheckRedirectArgsForCall []struct {
req *http.Request
via []*http.Request
}
executeCheckRedirectReturns struct {
result1 error
}
}
func (fake *FakeHTTPClientInterface) DumpRequest(arg1 *http.Request) {
fake.dumpRequestMutex.Lock()
fake.dumpRequestArgsForCall = append(fake.dumpRequestArgsForCall, struct {
arg1 *http.Request
}{arg1})
fake.dumpRequestMutex.Unlock()
if fake.DumpRequestStub != nil {
fake.DumpRequestStub(arg1)
}
}
func (fake *FakeHTTPClientInterface) DumpRequestCallCount() int {
fake.dumpRequestMutex.RLock()
defer fake.dumpRequestMutex.RUnlock()
return len(fake.dumpRequestArgsForCall)
}
func (fake *FakeHTTPClientInterface) DumpRequestArgsForCall(i int) *http.Request {
fake.dumpRequestMutex.RLock()
defer fake.dumpRequestMutex.RUnlock()
return fake.dumpRequestArgsForCall[i].arg1
}
func (fake *FakeHTTPClientInterface) DumpResponse(arg1 *http.Response) {
fake.dumpResponseMutex.Lock()
fake.dumpResponseArgsForCall = append(fake.dumpResponseArgsForCall, struct {
arg1 *http.Response
}{arg1})
fake.dumpResponseMutex.Unlock()
if fake.DumpResponseStub != nil {
fake.DumpResponseStub(arg1)
}
}
func (fake *FakeHTTPClientInterface) DumpResponseCallCount() int {
fake.dumpResponseMutex.RLock()
defer fake.dumpResponseMutex.RUnlock()
return len(fake.dumpResponseArgsForCall)
}
func (fake *FakeHTTPClientInterface) DumpResponseArgsForCall(i int) *http.Response {
fake.dumpResponseMutex.RLock()
defer fake.dumpResponseMutex.RUnlock()
return fake.dumpResponseArgsForCall[i].arg1
}
func (fake *FakeHTTPClientInterface) Do(arg1 *http.Request) (*http.Response, error) {
fake.doMutex.Lock()
fake.doArgsForCall = append(fake.doArgsForCall, struct {
arg1 *http.Request
}{arg1})
fake.doMutex.Unlock()
if fake.DoStub != nil {
return fake.DoStub(arg1)
} else {
return fake.doReturns.result1, fake.doReturns.result2
}
}
func (fake *FakeHTTPClientInterface) DoCallCount() int {
fake.doMutex.RLock()
defer fake.doMutex.RUnlock()
return len(fake.doArgsForCall)
}
func (fake *FakeHTTPClientInterface) DoArgsForCall(i int) *http.Request {
fake.doMutex.RLock()
defer fake.doMutex.RUnlock()
return fake.doArgsForCall[i].arg1
}
func (fake *FakeHTTPClientInterface) DoReturns(result1 *http.Response, result2 error) {
fake.DoStub = nil
fake.doReturns = struct {
result1 *http.Response
result2 error
}{result1, result2}
}
func (fake *FakeHTTPClientInterface) ExecuteCheckRedirect(req *http.Request, via []*http.Request) error {
fake.executeCheckRedirectMutex.Lock()
fake.executeCheckRedirectArgsForCall = append(fake.executeCheckRedirectArgsForCall, struct {
req *http.Request
via []*http.Request
}{req, via})
fake.executeCheckRedirectMutex.Unlock()
if fake.ExecuteCheckRedirectStub != nil {
return fake.ExecuteCheckRedirectStub(req, via)
} else {
return fake.executeCheckRedirectReturns.result1
}
}
func (fake *FakeHTTPClientInterface) ExecuteCheckRedirectCallCount() int {
fake.executeCheckRedirectMutex.RLock()
defer fake.executeCheckRedirectMutex.RUnlock()
return len(fake.executeCheckRedirectArgsForCall)
}
func (fake *FakeHTTPClientInterface) ExecuteCheckRedirectArgsForCall(i int) (*http.Request, []*http.Request) {
fake.executeCheckRedirectMutex.RLock()
defer fake.executeCheckRedirectMutex.RUnlock()
return fake.executeCheckRedirectArgsForCall[i].req, fake.executeCheckRedirectArgsForCall[i].via
}
func (fake *FakeHTTPClientInterface) ExecuteCheckRedirectReturns(result1 error) {
fake.ExecuteCheckRedirectStub = nil
fake.executeCheckRedirectReturns = struct {
result1 error
}{result1}
}
var _ net.HTTPClientInterface = new(FakeHTTPClientInterface)