forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fake_push_actor.go
284 lines (258 loc) · 9.41 KB
/
fake_push_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
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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
// This file was generated by counterfeiter
package actorsfakes
import (
"os"
"sync"
"code.cloudfoundry.org/cli/cf/actors"
"code.cloudfoundry.org/cli/cf/api/resources"
"code.cloudfoundry.org/cli/cf/models"
)
type FakePushActor struct {
UploadAppStub func(appGUID string, zipFile *os.File, presentFiles []resources.AppFileResource) error
uploadAppMutex sync.RWMutex
uploadAppArgsForCall []struct {
appGUID string
zipFile *os.File
presentFiles []resources.AppFileResource
}
uploadAppReturns struct {
result1 error
}
ProcessPathStub func(dirOrZipFile string, f func(string) error) error
processPathMutex sync.RWMutex
processPathArgsForCall []struct {
dirOrZipFile string
f func(string) error
}
processPathReturns struct {
result1 error
}
GatherFilesStub func(localFiles []models.AppFileFields, appDir string, uploadDir string) ([]resources.AppFileResource, bool, error)
gatherFilesMutex sync.RWMutex
gatherFilesArgsForCall []struct {
localFiles []models.AppFileFields
appDir string
uploadDir string
}
gatherFilesReturns struct {
result1 []resources.AppFileResource
result2 bool
result3 error
}
ValidateAppParamsStub func(apps []models.AppParams) []error
validateAppParamsMutex sync.RWMutex
validateAppParamsArgsForCall []struct {
apps []models.AppParams
}
validateAppParamsReturns struct {
result1 []error
}
MapManifestRouteStub func(routeName string, app models.Application, appParamsFromContext models.AppParams) error
mapManifestRouteMutex sync.RWMutex
mapManifestRouteArgsForCall []struct {
routeName string
app models.Application
appParamsFromContext models.AppParams
}
mapManifestRouteReturns struct {
result1 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *FakePushActor) UploadApp(appGUID string, zipFile *os.File, presentFiles []resources.AppFileResource) error {
var presentFilesCopy []resources.AppFileResource
if presentFiles != nil {
presentFilesCopy = make([]resources.AppFileResource, len(presentFiles))
copy(presentFilesCopy, presentFiles)
}
fake.uploadAppMutex.Lock()
fake.uploadAppArgsForCall = append(fake.uploadAppArgsForCall, struct {
appGUID string
zipFile *os.File
presentFiles []resources.AppFileResource
}{appGUID, zipFile, presentFilesCopy})
fake.recordInvocation("UploadApp", []interface{}{appGUID, zipFile, presentFilesCopy})
fake.uploadAppMutex.Unlock()
if fake.UploadAppStub != nil {
return fake.UploadAppStub(appGUID, zipFile, presentFiles)
} else {
return fake.uploadAppReturns.result1
}
}
func (fake *FakePushActor) UploadAppCallCount() int {
fake.uploadAppMutex.RLock()
defer fake.uploadAppMutex.RUnlock()
return len(fake.uploadAppArgsForCall)
}
func (fake *FakePushActor) UploadAppArgsForCall(i int) (string, *os.File, []resources.AppFileResource) {
fake.uploadAppMutex.RLock()
defer fake.uploadAppMutex.RUnlock()
return fake.uploadAppArgsForCall[i].appGUID, fake.uploadAppArgsForCall[i].zipFile, fake.uploadAppArgsForCall[i].presentFiles
}
func (fake *FakePushActor) UploadAppReturns(result1 error) {
fake.UploadAppStub = nil
fake.uploadAppReturns = struct {
result1 error
}{result1}
}
func (fake *FakePushActor) ProcessPath(dirOrZipFile string, f func(string) error) error {
fake.processPathMutex.Lock()
fake.processPathArgsForCall = append(fake.processPathArgsForCall, struct {
dirOrZipFile string
f func(string) error
}{dirOrZipFile, f})
fake.recordInvocation("ProcessPath", []interface{}{dirOrZipFile, f})
fake.processPathMutex.Unlock()
if fake.ProcessPathStub != nil {
return fake.ProcessPathStub(dirOrZipFile, f)
} else {
return fake.processPathReturns.result1
}
}
func (fake *FakePushActor) ProcessPathCallCount() int {
fake.processPathMutex.RLock()
defer fake.processPathMutex.RUnlock()
return len(fake.processPathArgsForCall)
}
func (fake *FakePushActor) ProcessPathArgsForCall(i int) (string, func(string) error) {
fake.processPathMutex.RLock()
defer fake.processPathMutex.RUnlock()
return fake.processPathArgsForCall[i].dirOrZipFile, fake.processPathArgsForCall[i].f
}
func (fake *FakePushActor) ProcessPathReturns(result1 error) {
fake.ProcessPathStub = nil
fake.processPathReturns = struct {
result1 error
}{result1}
}
func (fake *FakePushActor) GatherFiles(localFiles []models.AppFileFields, appDir string, uploadDir string) ([]resources.AppFileResource, bool, error) {
var localFilesCopy []models.AppFileFields
if localFiles != nil {
localFilesCopy = make([]models.AppFileFields, len(localFiles))
copy(localFilesCopy, localFiles)
}
fake.gatherFilesMutex.Lock()
fake.gatherFilesArgsForCall = append(fake.gatherFilesArgsForCall, struct {
localFiles []models.AppFileFields
appDir string
uploadDir string
}{localFilesCopy, appDir, uploadDir})
fake.recordInvocation("GatherFiles", []interface{}{localFilesCopy, appDir, uploadDir})
fake.gatherFilesMutex.Unlock()
if fake.GatherFilesStub != nil {
return fake.GatherFilesStub(localFiles, appDir, uploadDir)
} else {
return fake.gatherFilesReturns.result1, fake.gatherFilesReturns.result2, fake.gatherFilesReturns.result3
}
}
func (fake *FakePushActor) GatherFilesCallCount() int {
fake.gatherFilesMutex.RLock()
defer fake.gatherFilesMutex.RUnlock()
return len(fake.gatherFilesArgsForCall)
}
func (fake *FakePushActor) GatherFilesArgsForCall(i int) ([]models.AppFileFields, string, string) {
fake.gatherFilesMutex.RLock()
defer fake.gatherFilesMutex.RUnlock()
return fake.gatherFilesArgsForCall[i].localFiles, fake.gatherFilesArgsForCall[i].appDir, fake.gatherFilesArgsForCall[i].uploadDir
}
func (fake *FakePushActor) GatherFilesReturns(result1 []resources.AppFileResource, result2 bool, result3 error) {
fake.GatherFilesStub = nil
fake.gatherFilesReturns = struct {
result1 []resources.AppFileResource
result2 bool
result3 error
}{result1, result2, result3}
}
func (fake *FakePushActor) ValidateAppParams(apps []models.AppParams) []error {
var appsCopy []models.AppParams
if apps != nil {
appsCopy = make([]models.AppParams, len(apps))
copy(appsCopy, apps)
}
fake.validateAppParamsMutex.Lock()
fake.validateAppParamsArgsForCall = append(fake.validateAppParamsArgsForCall, struct {
apps []models.AppParams
}{appsCopy})
fake.recordInvocation("ValidateAppParams", []interface{}{appsCopy})
fake.validateAppParamsMutex.Unlock()
if fake.ValidateAppParamsStub != nil {
return fake.ValidateAppParamsStub(apps)
} else {
return fake.validateAppParamsReturns.result1
}
}
func (fake *FakePushActor) ValidateAppParamsCallCount() int {
fake.validateAppParamsMutex.RLock()
defer fake.validateAppParamsMutex.RUnlock()
return len(fake.validateAppParamsArgsForCall)
}
func (fake *FakePushActor) ValidateAppParamsArgsForCall(i int) []models.AppParams {
fake.validateAppParamsMutex.RLock()
defer fake.validateAppParamsMutex.RUnlock()
return fake.validateAppParamsArgsForCall[i].apps
}
func (fake *FakePushActor) ValidateAppParamsReturns(result1 []error) {
fake.ValidateAppParamsStub = nil
fake.validateAppParamsReturns = struct {
result1 []error
}{result1}
}
func (fake *FakePushActor) MapManifestRoute(routeName string, app models.Application, appParamsFromContext models.AppParams) error {
fake.mapManifestRouteMutex.Lock()
fake.mapManifestRouteArgsForCall = append(fake.mapManifestRouteArgsForCall, struct {
routeName string
app models.Application
appParamsFromContext models.AppParams
}{routeName, app, appParamsFromContext})
fake.recordInvocation("MapManifestRoute", []interface{}{routeName, app, appParamsFromContext})
fake.mapManifestRouteMutex.Unlock()
if fake.MapManifestRouteStub != nil {
return fake.MapManifestRouteStub(routeName, app, appParamsFromContext)
} else {
return fake.mapManifestRouteReturns.result1
}
}
func (fake *FakePushActor) MapManifestRouteCallCount() int {
fake.mapManifestRouteMutex.RLock()
defer fake.mapManifestRouteMutex.RUnlock()
return len(fake.mapManifestRouteArgsForCall)
}
func (fake *FakePushActor) MapManifestRouteArgsForCall(i int) (string, models.Application, models.AppParams) {
fake.mapManifestRouteMutex.RLock()
defer fake.mapManifestRouteMutex.RUnlock()
return fake.mapManifestRouteArgsForCall[i].routeName, fake.mapManifestRouteArgsForCall[i].app, fake.mapManifestRouteArgsForCall[i].appParamsFromContext
}
func (fake *FakePushActor) MapManifestRouteReturns(result1 error) {
fake.MapManifestRouteStub = nil
fake.mapManifestRouteReturns = struct {
result1 error
}{result1}
}
func (fake *FakePushActor) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.uploadAppMutex.RLock()
defer fake.uploadAppMutex.RUnlock()
fake.processPathMutex.RLock()
defer fake.processPathMutex.RUnlock()
fake.gatherFilesMutex.RLock()
defer fake.gatherFilesMutex.RUnlock()
fake.validateAppParamsMutex.RLock()
defer fake.validateAppParamsMutex.RUnlock()
fake.mapManifestRouteMutex.RLock()
defer fake.mapManifestRouteMutex.RUnlock()
return fake.invocations
}
func (fake *FakePushActor) 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 _ actors.PushActor = new(FakePushActor)