-
Notifications
You must be signed in to change notification settings - Fork 0
/
fake_connection.go
113 lines (101 loc) · 2.82 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
101
102
103
104
105
106
107
108
109
110
111
112
113
// Code generated by counterfeiter. DO NOT EDIT.
package uaafakes
import (
"net/http"
"sync"
"code.cloudfoundry.org/cli/api/uaa"
)
type FakeConnection struct {
MakeStub func(*http.Request, *uaa.Response) error
makeMutex sync.RWMutex
makeArgsForCall []struct {
arg1 *http.Request
arg2 *uaa.Response
}
makeReturns struct {
result1 error
}
makeReturnsOnCall map[int]struct {
result1 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *FakeConnection) Make(arg1 *http.Request, arg2 *uaa.Response) error {
fake.makeMutex.Lock()
ret, specificReturn := fake.makeReturnsOnCall[len(fake.makeArgsForCall)]
fake.makeArgsForCall = append(fake.makeArgsForCall, struct {
arg1 *http.Request
arg2 *uaa.Response
}{arg1, arg2})
fake.recordInvocation("Make", []interface{}{arg1, arg2})
fake.makeMutex.Unlock()
if fake.MakeStub != nil {
return fake.MakeStub(arg1, arg2)
}
if specificReturn {
return ret.result1
}
fakeReturns := fake.makeReturns
return fakeReturns.result1
}
func (fake *FakeConnection) MakeCallCount() int {
fake.makeMutex.RLock()
defer fake.makeMutex.RUnlock()
return len(fake.makeArgsForCall)
}
func (fake *FakeConnection) MakeCalls(stub func(*http.Request, *uaa.Response) error) {
fake.makeMutex.Lock()
defer fake.makeMutex.Unlock()
fake.MakeStub = stub
}
func (fake *FakeConnection) MakeArgsForCall(i int) (*http.Request, *uaa.Response) {
fake.makeMutex.RLock()
defer fake.makeMutex.RUnlock()
argsForCall := fake.makeArgsForCall[i]
return argsForCall.arg1, argsForCall.arg2
}
func (fake *FakeConnection) MakeReturns(result1 error) {
fake.makeMutex.Lock()
defer fake.makeMutex.Unlock()
fake.MakeStub = nil
fake.makeReturns = struct {
result1 error
}{result1}
}
func (fake *FakeConnection) MakeReturnsOnCall(i int, result1 error) {
fake.makeMutex.Lock()
defer fake.makeMutex.Unlock()
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 _ uaa.Connection = new(FakeConnection)