forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fake_buildpack_repository.go
261 lines (235 loc) · 7.73 KB
/
fake_buildpack_repository.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
// This file was generated by counterfeiter
package apifakes
import (
"sync"
"code.cloudfoundry.org/cli/cf/api"
"code.cloudfoundry.org/cli/cf/models"
)
type FakeBuildpackRepository struct {
FindByNameStub func(name string) (buildpack models.Buildpack, apiErr error)
findByNameMutex sync.RWMutex
findByNameArgsForCall []struct {
name string
}
findByNameReturns struct {
result1 models.Buildpack
result2 error
}
ListBuildpacksStub func(func(models.Buildpack) bool) error
listBuildpacksMutex sync.RWMutex
listBuildpacksArgsForCall []struct {
arg1 func(models.Buildpack) bool
}
listBuildpacksReturns struct {
result1 error
}
CreateStub func(name string, position *int, enabled *bool, locked *bool) (createdBuildpack models.Buildpack, apiErr error)
createMutex sync.RWMutex
createArgsForCall []struct {
name string
position *int
enabled *bool
locked *bool
}
createReturns struct {
result1 models.Buildpack
result2 error
}
DeleteStub func(buildpackGUID string) (apiErr error)
deleteMutex sync.RWMutex
deleteArgsForCall []struct {
buildpackGUID string
}
deleteReturns struct {
result1 error
}
UpdateStub func(buildpack models.Buildpack) (updatedBuildpack models.Buildpack, apiErr error)
updateMutex sync.RWMutex
updateArgsForCall []struct {
buildpack models.Buildpack
}
updateReturns struct {
result1 models.Buildpack
result2 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *FakeBuildpackRepository) FindByName(name string) (buildpack models.Buildpack, apiErr error) {
fake.findByNameMutex.Lock()
fake.findByNameArgsForCall = append(fake.findByNameArgsForCall, struct {
name string
}{name})
fake.recordInvocation("FindByName", []interface{}{name})
fake.findByNameMutex.Unlock()
if fake.FindByNameStub != nil {
return fake.FindByNameStub(name)
} else {
return fake.findByNameReturns.result1, fake.findByNameReturns.result2
}
}
func (fake *FakeBuildpackRepository) FindByNameCallCount() int {
fake.findByNameMutex.RLock()
defer fake.findByNameMutex.RUnlock()
return len(fake.findByNameArgsForCall)
}
func (fake *FakeBuildpackRepository) FindByNameArgsForCall(i int) string {
fake.findByNameMutex.RLock()
defer fake.findByNameMutex.RUnlock()
return fake.findByNameArgsForCall[i].name
}
func (fake *FakeBuildpackRepository) FindByNameReturns(result1 models.Buildpack, result2 error) {
fake.FindByNameStub = nil
fake.findByNameReturns = struct {
result1 models.Buildpack
result2 error
}{result1, result2}
}
func (fake *FakeBuildpackRepository) ListBuildpacks(arg1 func(models.Buildpack) bool) error {
fake.listBuildpacksMutex.Lock()
fake.listBuildpacksArgsForCall = append(fake.listBuildpacksArgsForCall, struct {
arg1 func(models.Buildpack) bool
}{arg1})
fake.recordInvocation("ListBuildpacks", []interface{}{arg1})
fake.listBuildpacksMutex.Unlock()
if fake.ListBuildpacksStub != nil {
return fake.ListBuildpacksStub(arg1)
} else {
return fake.listBuildpacksReturns.result1
}
}
func (fake *FakeBuildpackRepository) ListBuildpacksCallCount() int {
fake.listBuildpacksMutex.RLock()
defer fake.listBuildpacksMutex.RUnlock()
return len(fake.listBuildpacksArgsForCall)
}
func (fake *FakeBuildpackRepository) ListBuildpacksArgsForCall(i int) func(models.Buildpack) bool {
fake.listBuildpacksMutex.RLock()
defer fake.listBuildpacksMutex.RUnlock()
return fake.listBuildpacksArgsForCall[i].arg1
}
func (fake *FakeBuildpackRepository) ListBuildpacksReturns(result1 error) {
fake.ListBuildpacksStub = nil
fake.listBuildpacksReturns = struct {
result1 error
}{result1}
}
func (fake *FakeBuildpackRepository) Create(name string, position *int, enabled *bool, locked *bool) (createdBuildpack models.Buildpack, apiErr error) {
fake.createMutex.Lock()
fake.createArgsForCall = append(fake.createArgsForCall, struct {
name string
position *int
enabled *bool
locked *bool
}{name, position, enabled, locked})
fake.recordInvocation("Create", []interface{}{name, position, enabled, locked})
fake.createMutex.Unlock()
if fake.CreateStub != nil {
return fake.CreateStub(name, position, enabled, locked)
} else {
return fake.createReturns.result1, fake.createReturns.result2
}
}
func (fake *FakeBuildpackRepository) CreateCallCount() int {
fake.createMutex.RLock()
defer fake.createMutex.RUnlock()
return len(fake.createArgsForCall)
}
func (fake *FakeBuildpackRepository) CreateArgsForCall(i int) (string, *int, *bool, *bool) {
fake.createMutex.RLock()
defer fake.createMutex.RUnlock()
return fake.createArgsForCall[i].name, fake.createArgsForCall[i].position, fake.createArgsForCall[i].enabled, fake.createArgsForCall[i].locked
}
func (fake *FakeBuildpackRepository) CreateReturns(result1 models.Buildpack, result2 error) {
fake.CreateStub = nil
fake.createReturns = struct {
result1 models.Buildpack
result2 error
}{result1, result2}
}
func (fake *FakeBuildpackRepository) Delete(buildpackGUID string) (apiErr error) {
fake.deleteMutex.Lock()
fake.deleteArgsForCall = append(fake.deleteArgsForCall, struct {
buildpackGUID string
}{buildpackGUID})
fake.recordInvocation("Delete", []interface{}{buildpackGUID})
fake.deleteMutex.Unlock()
if fake.DeleteStub != nil {
return fake.DeleteStub(buildpackGUID)
} else {
return fake.deleteReturns.result1
}
}
func (fake *FakeBuildpackRepository) DeleteCallCount() int {
fake.deleteMutex.RLock()
defer fake.deleteMutex.RUnlock()
return len(fake.deleteArgsForCall)
}
func (fake *FakeBuildpackRepository) DeleteArgsForCall(i int) string {
fake.deleteMutex.RLock()
defer fake.deleteMutex.RUnlock()
return fake.deleteArgsForCall[i].buildpackGUID
}
func (fake *FakeBuildpackRepository) DeleteReturns(result1 error) {
fake.DeleteStub = nil
fake.deleteReturns = struct {
result1 error
}{result1}
}
func (fake *FakeBuildpackRepository) Update(buildpack models.Buildpack) (updatedBuildpack models.Buildpack, apiErr error) {
fake.updateMutex.Lock()
fake.updateArgsForCall = append(fake.updateArgsForCall, struct {
buildpack models.Buildpack
}{buildpack})
fake.recordInvocation("Update", []interface{}{buildpack})
fake.updateMutex.Unlock()
if fake.UpdateStub != nil {
return fake.UpdateStub(buildpack)
} else {
return fake.updateReturns.result1, fake.updateReturns.result2
}
}
func (fake *FakeBuildpackRepository) UpdateCallCount() int {
fake.updateMutex.RLock()
defer fake.updateMutex.RUnlock()
return len(fake.updateArgsForCall)
}
func (fake *FakeBuildpackRepository) UpdateArgsForCall(i int) models.Buildpack {
fake.updateMutex.RLock()
defer fake.updateMutex.RUnlock()
return fake.updateArgsForCall[i].buildpack
}
func (fake *FakeBuildpackRepository) UpdateReturns(result1 models.Buildpack, result2 error) {
fake.UpdateStub = nil
fake.updateReturns = struct {
result1 models.Buildpack
result2 error
}{result1, result2}
}
func (fake *FakeBuildpackRepository) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.findByNameMutex.RLock()
defer fake.findByNameMutex.RUnlock()
fake.listBuildpacksMutex.RLock()
defer fake.listBuildpacksMutex.RUnlock()
fake.createMutex.RLock()
defer fake.createMutex.RUnlock()
fake.deleteMutex.RLock()
defer fake.deleteMutex.RUnlock()
fake.updateMutex.RLock()
defer fake.updateMutex.RUnlock()
return fake.invocations
}
func (fake *FakeBuildpackRepository) 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 _ api.BuildpackRepository = new(FakeBuildpackRepository)