-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfake_application_stopper.go
205 lines (183 loc) · 6.78 KB
/
fake_application_stopper.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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
// This file was generated by counterfeiter
package applicationfakes
import (
"sync"
"github.com/cloudfoundry/cli/cf/commandregistry"
"github.com/cloudfoundry/cli/cf/commands/application"
"github.com/cloudfoundry/cli/cf/models"
"github.com/cloudfoundry/cli/cf/requirements"
"github.com/cloudfoundry/cli/flags"
)
type FakeApplicationStopper struct {
MetaDataStub func() commandregistry.CommandMetadata
metaDataMutex sync.RWMutex
metaDataArgsForCall []struct{}
metaDataReturns struct {
result1 commandregistry.CommandMetadata
}
SetDependencyStub func(deps commandregistry.Dependency, pluginCall bool) commandregistry.Command
setDependencyMutex sync.RWMutex
setDependencyArgsForCall []struct {
deps commandregistry.Dependency
pluginCall bool
}
setDependencyReturns struct {
result1 commandregistry.Command
}
RequirementsStub func(requirementsFactory requirements.Factory, context flags.FlagContext) []requirements.Requirement
requirementsMutex sync.RWMutex
requirementsArgsForCall []struct {
requirementsFactory requirements.Factory
context flags.FlagContext
}
requirementsReturns struct {
result1 []requirements.Requirement
}
ExecuteStub func(context flags.FlagContext)
executeMutex sync.RWMutex
executeArgsForCall []struct {
context flags.FlagContext
}
ApplicationStopStub func(app models.Application, orgName string, spaceName string) (updatedApp models.Application, err error)
applicationStopMutex sync.RWMutex
applicationStopArgsForCall []struct {
app models.Application
orgName string
spaceName string
}
applicationStopReturns struct {
result1 models.Application
result2 error
}
}
func (fake *FakeApplicationStopper) MetaData() commandregistry.CommandMetadata {
fake.metaDataMutex.Lock()
fake.metaDataArgsForCall = append(fake.metaDataArgsForCall, struct{}{})
fake.metaDataMutex.Unlock()
if fake.MetaDataStub != nil {
return fake.MetaDataStub()
} else {
return fake.metaDataReturns.result1
}
}
func (fake *FakeApplicationStopper) MetaDataCallCount() int {
fake.metaDataMutex.RLock()
defer fake.metaDataMutex.RUnlock()
return len(fake.metaDataArgsForCall)
}
func (fake *FakeApplicationStopper) MetaDataReturns(result1 commandregistry.CommandMetadata) {
fake.MetaDataStub = nil
fake.metaDataReturns = struct {
result1 commandregistry.CommandMetadata
}{result1}
}
func (fake *FakeApplicationStopper) SetDependency(deps commandregistry.Dependency, pluginCall bool) commandregistry.Command {
fake.setDependencyMutex.Lock()
fake.setDependencyArgsForCall = append(fake.setDependencyArgsForCall, struct {
deps commandregistry.Dependency
pluginCall bool
}{deps, pluginCall})
fake.setDependencyMutex.Unlock()
if fake.SetDependencyStub != nil {
return fake.SetDependencyStub(deps, pluginCall)
} else {
return fake.setDependencyReturns.result1
}
}
func (fake *FakeApplicationStopper) SetDependencyCallCount() int {
fake.setDependencyMutex.RLock()
defer fake.setDependencyMutex.RUnlock()
return len(fake.setDependencyArgsForCall)
}
func (fake *FakeApplicationStopper) SetDependencyArgsForCall(i int) (commandregistry.Dependency, bool) {
fake.setDependencyMutex.RLock()
defer fake.setDependencyMutex.RUnlock()
return fake.setDependencyArgsForCall[i].deps, fake.setDependencyArgsForCall[i].pluginCall
}
func (fake *FakeApplicationStopper) SetDependencyReturns(result1 commandregistry.Command) {
fake.SetDependencyStub = nil
fake.setDependencyReturns = struct {
result1 commandregistry.Command
}{result1}
}
func (fake *FakeApplicationStopper) Requirements(requirementsFactory requirements.Factory, context flags.FlagContext) []requirements.Requirement {
fake.requirementsMutex.Lock()
fake.requirementsArgsForCall = append(fake.requirementsArgsForCall, struct {
requirementsFactory requirements.Factory
context flags.FlagContext
}{requirementsFactory, context})
fake.requirementsMutex.Unlock()
if fake.RequirementsStub != nil {
return fake.RequirementsStub(requirementsFactory, context)
} else {
return fake.requirementsReturns.result1
}
}
func (fake *FakeApplicationStopper) RequirementsCallCount() int {
fake.requirementsMutex.RLock()
defer fake.requirementsMutex.RUnlock()
return len(fake.requirementsArgsForCall)
}
func (fake *FakeApplicationStopper) RequirementsArgsForCall(i int) (requirements.Factory, flags.FlagContext) {
fake.requirementsMutex.RLock()
defer fake.requirementsMutex.RUnlock()
return fake.requirementsArgsForCall[i].requirementsFactory, fake.requirementsArgsForCall[i].context
}
func (fake *FakeApplicationStopper) RequirementsReturns(result1 []requirements.Requirement) {
fake.RequirementsStub = nil
fake.requirementsReturns = struct {
result1 []requirements.Requirement
}{result1}
}
func (fake *FakeApplicationStopper) Execute(context flags.FlagContext) {
fake.executeMutex.Lock()
fake.executeArgsForCall = append(fake.executeArgsForCall, struct {
context flags.FlagContext
}{context})
fake.executeMutex.Unlock()
if fake.ExecuteStub != nil {
fake.ExecuteStub(context)
}
}
func (fake *FakeApplicationStopper) ExecuteCallCount() int {
fake.executeMutex.RLock()
defer fake.executeMutex.RUnlock()
return len(fake.executeArgsForCall)
}
func (fake *FakeApplicationStopper) ExecuteArgsForCall(i int) flags.FlagContext {
fake.executeMutex.RLock()
defer fake.executeMutex.RUnlock()
return fake.executeArgsForCall[i].context
}
func (fake *FakeApplicationStopper) ApplicationStop(app models.Application, orgName string, spaceName string) (updatedApp models.Application, err error) {
fake.applicationStopMutex.Lock()
fake.applicationStopArgsForCall = append(fake.applicationStopArgsForCall, struct {
app models.Application
orgName string
spaceName string
}{app, orgName, spaceName})
fake.applicationStopMutex.Unlock()
if fake.ApplicationStopStub != nil {
return fake.ApplicationStopStub(app, orgName, spaceName)
} else {
return fake.applicationStopReturns.result1, fake.applicationStopReturns.result2
}
}
func (fake *FakeApplicationStopper) ApplicationStopCallCount() int {
fake.applicationStopMutex.RLock()
defer fake.applicationStopMutex.RUnlock()
return len(fake.applicationStopArgsForCall)
}
func (fake *FakeApplicationStopper) ApplicationStopArgsForCall(i int) (models.Application, string, string) {
fake.applicationStopMutex.RLock()
defer fake.applicationStopMutex.RUnlock()
return fake.applicationStopArgsForCall[i].app, fake.applicationStopArgsForCall[i].orgName, fake.applicationStopArgsForCall[i].spaceName
}
func (fake *FakeApplicationStopper) ApplicationStopReturns(result1 models.Application, result2 error) {
fake.ApplicationStopStub = nil
fake.applicationStopReturns = struct {
result1 models.Application
result2 error
}{result1, result2}
}
var _ application.ApplicationStopper = new(FakeApplicationStopper)