forked from cloudfoundry-community/cloudfoundry-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fake_v3stop_actor.go
179 lines (163 loc) · 6.27 KB
/
fake_v3stop_actor.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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
// Code generated by counterfeiter. DO NOT EDIT.
package v3fakes
import (
"sync"
"code.cloudfoundry.org/cli/actor/v3action"
"code.cloudfoundry.org/cli/command/v3"
)
type FakeV3StopActor struct {
GetApplicationByNameAndSpaceStub func(appName string, spaceGUID string) (v3action.Application, v3action.Warnings, error)
getApplicationByNameAndSpaceMutex sync.RWMutex
getApplicationByNameAndSpaceArgsForCall []struct {
appName string
spaceGUID string
}
getApplicationByNameAndSpaceReturns struct {
result1 v3action.Application
result2 v3action.Warnings
result3 error
}
getApplicationByNameAndSpaceReturnsOnCall map[int]struct {
result1 v3action.Application
result2 v3action.Warnings
result3 error
}
StopApplicationStub func(appGUID string, spaceGUID string) (v3action.Warnings, error)
stopApplicationMutex sync.RWMutex
stopApplicationArgsForCall []struct {
appGUID string
spaceGUID string
}
stopApplicationReturns struct {
result1 v3action.Warnings
result2 error
}
stopApplicationReturnsOnCall map[int]struct {
result1 v3action.Warnings
result2 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *FakeV3StopActor) GetApplicationByNameAndSpace(appName string, spaceGUID string) (v3action.Application, v3action.Warnings, error) {
fake.getApplicationByNameAndSpaceMutex.Lock()
ret, specificReturn := fake.getApplicationByNameAndSpaceReturnsOnCall[len(fake.getApplicationByNameAndSpaceArgsForCall)]
fake.getApplicationByNameAndSpaceArgsForCall = append(fake.getApplicationByNameAndSpaceArgsForCall, struct {
appName string
spaceGUID string
}{appName, spaceGUID})
fake.recordInvocation("GetApplicationByNameAndSpace", []interface{}{appName, spaceGUID})
fake.getApplicationByNameAndSpaceMutex.Unlock()
if fake.GetApplicationByNameAndSpaceStub != nil {
return fake.GetApplicationByNameAndSpaceStub(appName, spaceGUID)
}
if specificReturn {
return ret.result1, ret.result2, ret.result3
}
return fake.getApplicationByNameAndSpaceReturns.result1, fake.getApplicationByNameAndSpaceReturns.result2, fake.getApplicationByNameAndSpaceReturns.result3
}
func (fake *FakeV3StopActor) GetApplicationByNameAndSpaceCallCount() int {
fake.getApplicationByNameAndSpaceMutex.RLock()
defer fake.getApplicationByNameAndSpaceMutex.RUnlock()
return len(fake.getApplicationByNameAndSpaceArgsForCall)
}
func (fake *FakeV3StopActor) GetApplicationByNameAndSpaceArgsForCall(i int) (string, string) {
fake.getApplicationByNameAndSpaceMutex.RLock()
defer fake.getApplicationByNameAndSpaceMutex.RUnlock()
return fake.getApplicationByNameAndSpaceArgsForCall[i].appName, fake.getApplicationByNameAndSpaceArgsForCall[i].spaceGUID
}
func (fake *FakeV3StopActor) GetApplicationByNameAndSpaceReturns(result1 v3action.Application, result2 v3action.Warnings, result3 error) {
fake.GetApplicationByNameAndSpaceStub = nil
fake.getApplicationByNameAndSpaceReturns = struct {
result1 v3action.Application
result2 v3action.Warnings
result3 error
}{result1, result2, result3}
}
func (fake *FakeV3StopActor) GetApplicationByNameAndSpaceReturnsOnCall(i int, result1 v3action.Application, result2 v3action.Warnings, result3 error) {
fake.GetApplicationByNameAndSpaceStub = nil
if fake.getApplicationByNameAndSpaceReturnsOnCall == nil {
fake.getApplicationByNameAndSpaceReturnsOnCall = make(map[int]struct {
result1 v3action.Application
result2 v3action.Warnings
result3 error
})
}
fake.getApplicationByNameAndSpaceReturnsOnCall[i] = struct {
result1 v3action.Application
result2 v3action.Warnings
result3 error
}{result1, result2, result3}
}
func (fake *FakeV3StopActor) StopApplication(appGUID string, spaceGUID string) (v3action.Warnings, error) {
fake.stopApplicationMutex.Lock()
ret, specificReturn := fake.stopApplicationReturnsOnCall[len(fake.stopApplicationArgsForCall)]
fake.stopApplicationArgsForCall = append(fake.stopApplicationArgsForCall, struct {
appGUID string
spaceGUID string
}{appGUID, spaceGUID})
fake.recordInvocation("StopApplication", []interface{}{appGUID, spaceGUID})
fake.stopApplicationMutex.Unlock()
if fake.StopApplicationStub != nil {
return fake.StopApplicationStub(appGUID, spaceGUID)
}
if specificReturn {
return ret.result1, ret.result2
}
return fake.stopApplicationReturns.result1, fake.stopApplicationReturns.result2
}
func (fake *FakeV3StopActor) StopApplicationCallCount() int {
fake.stopApplicationMutex.RLock()
defer fake.stopApplicationMutex.RUnlock()
return len(fake.stopApplicationArgsForCall)
}
func (fake *FakeV3StopActor) StopApplicationArgsForCall(i int) (string, string) {
fake.stopApplicationMutex.RLock()
defer fake.stopApplicationMutex.RUnlock()
return fake.stopApplicationArgsForCall[i].appGUID, fake.stopApplicationArgsForCall[i].spaceGUID
}
func (fake *FakeV3StopActor) StopApplicationReturns(result1 v3action.Warnings, result2 error) {
fake.StopApplicationStub = nil
fake.stopApplicationReturns = struct {
result1 v3action.Warnings
result2 error
}{result1, result2}
}
func (fake *FakeV3StopActor) StopApplicationReturnsOnCall(i int, result1 v3action.Warnings, result2 error) {
fake.StopApplicationStub = nil
if fake.stopApplicationReturnsOnCall == nil {
fake.stopApplicationReturnsOnCall = make(map[int]struct {
result1 v3action.Warnings
result2 error
})
}
fake.stopApplicationReturnsOnCall[i] = struct {
result1 v3action.Warnings
result2 error
}{result1, result2}
}
func (fake *FakeV3StopActor) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.getApplicationByNameAndSpaceMutex.RLock()
defer fake.getApplicationByNameAndSpaceMutex.RUnlock()
fake.stopApplicationMutex.RLock()
defer fake.stopApplicationMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *FakeV3StopActor) 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 _ v3.V3StopActor = new(FakeV3StopActor)