-
Notifications
You must be signed in to change notification settings - Fork 929
/
fake_connection.go
100 lines (89 loc) · 2.77 KB
/
fake_connection.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
// Code generated by counterfeiter. DO NOT EDIT.
package cloudcontrollerfakes
import (
"sync"
"code.cloudfoundry.org/cli/api/cloudcontroller"
)
type FakeConnection struct {
MakeStub func(request *cloudcontroller.Request, passedResponse *cloudcontroller.Response) error
makeMutex sync.RWMutex
makeArgsForCall []struct {
request *cloudcontroller.Request
passedResponse *cloudcontroller.Response
}
makeReturns struct {
result1 error
}
makeReturnsOnCall map[int]struct {
result1 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *FakeConnection) Make(request *cloudcontroller.Request, passedResponse *cloudcontroller.Response) error {
fake.makeMutex.Lock()
ret, specificReturn := fake.makeReturnsOnCall[len(fake.makeArgsForCall)]
fake.makeArgsForCall = append(fake.makeArgsForCall, struct {
request *cloudcontroller.Request
passedResponse *cloudcontroller.Response
}{request, passedResponse})
fake.recordInvocation("Make", []interface{}{request, passedResponse})
fake.makeMutex.Unlock()
if fake.MakeStub != nil {
return fake.MakeStub(request, passedResponse)
}
if specificReturn {
return ret.result1
}
return fake.makeReturns.result1
}
func (fake *FakeConnection) MakeCallCount() int {
fake.makeMutex.RLock()
defer fake.makeMutex.RUnlock()
return len(fake.makeArgsForCall)
}
func (fake *FakeConnection) MakeArgsForCall(i int) (*cloudcontroller.Request, *cloudcontroller.Response) {
fake.makeMutex.RLock()
defer fake.makeMutex.RUnlock()
return fake.makeArgsForCall[i].request, fake.makeArgsForCall[i].passedResponse
}
func (fake *FakeConnection) MakeReturns(result1 error) {
fake.MakeStub = nil
fake.makeReturns = struct {
result1 error
}{result1}
}
func (fake *FakeConnection) MakeReturnsOnCall(i int, result1 error) {
fake.MakeStub = nil
if fake.makeReturnsOnCall == nil {
fake.makeReturnsOnCall = make(map[int]struct {
result1 error
})
}
fake.makeReturnsOnCall[i] = struct {
result1 error
}{result1}
}
func (fake *FakeConnection) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.makeMutex.RLock()
defer fake.makeMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *FakeConnection) 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 _ cloudcontroller.Connection = new(FakeConnection)