-
Notifications
You must be signed in to change notification settings - Fork 64
/
status_writer.go
276 lines (252 loc) · 7.82 KB
/
status_writer.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
// Code generated by counterfeiter. DO NOT EDIT.
package fake
import (
"context"
"sync"
"sigs.k8s.io/controller-runtime/pkg/client"
)
type StatusWriter struct {
CreateStub func(context.Context, client.Object, client.Object, ...client.SubResourceCreateOption) error
createMutex sync.RWMutex
createArgsForCall []struct {
arg1 context.Context
arg2 client.Object
arg3 client.Object
arg4 []client.SubResourceCreateOption
}
createReturns struct {
result1 error
}
createReturnsOnCall map[int]struct {
result1 error
}
PatchStub func(context.Context, client.Object, client.Patch, ...client.SubResourcePatchOption) error
patchMutex sync.RWMutex
patchArgsForCall []struct {
arg1 context.Context
arg2 client.Object
arg3 client.Patch
arg4 []client.SubResourcePatchOption
}
patchReturns struct {
result1 error
}
patchReturnsOnCall map[int]struct {
result1 error
}
UpdateStub func(context.Context, client.Object, ...client.SubResourceUpdateOption) error
updateMutex sync.RWMutex
updateArgsForCall []struct {
arg1 context.Context
arg2 client.Object
arg3 []client.SubResourceUpdateOption
}
updateReturns struct {
result1 error
}
updateReturnsOnCall map[int]struct {
result1 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *StatusWriter) Create(arg1 context.Context, arg2 client.Object, arg3 client.Object, arg4 ...client.SubResourceCreateOption) error {
fake.createMutex.Lock()
ret, specificReturn := fake.createReturnsOnCall[len(fake.createArgsForCall)]
fake.createArgsForCall = append(fake.createArgsForCall, struct {
arg1 context.Context
arg2 client.Object
arg3 client.Object
arg4 []client.SubResourceCreateOption
}{arg1, arg2, arg3, arg4})
stub := fake.CreateStub
fakeReturns := fake.createReturns
fake.recordInvocation("Create", []interface{}{arg1, arg2, arg3, arg4})
fake.createMutex.Unlock()
if stub != nil {
return stub(arg1, arg2, arg3, arg4...)
}
if specificReturn {
return ret.result1
}
return fakeReturns.result1
}
func (fake *StatusWriter) CreateCallCount() int {
fake.createMutex.RLock()
defer fake.createMutex.RUnlock()
return len(fake.createArgsForCall)
}
func (fake *StatusWriter) CreateCalls(stub func(context.Context, client.Object, client.Object, ...client.SubResourceCreateOption) error) {
fake.createMutex.Lock()
defer fake.createMutex.Unlock()
fake.CreateStub = stub
}
func (fake *StatusWriter) CreateArgsForCall(i int) (context.Context, client.Object, client.Object, []client.SubResourceCreateOption) {
fake.createMutex.RLock()
defer fake.createMutex.RUnlock()
argsForCall := fake.createArgsForCall[i]
return argsForCall.arg1, argsForCall.arg2, argsForCall.arg3, argsForCall.arg4
}
func (fake *StatusWriter) CreateReturns(result1 error) {
fake.createMutex.Lock()
defer fake.createMutex.Unlock()
fake.CreateStub = nil
fake.createReturns = struct {
result1 error
}{result1}
}
func (fake *StatusWriter) CreateReturnsOnCall(i int, result1 error) {
fake.createMutex.Lock()
defer fake.createMutex.Unlock()
fake.CreateStub = nil
if fake.createReturnsOnCall == nil {
fake.createReturnsOnCall = make(map[int]struct {
result1 error
})
}
fake.createReturnsOnCall[i] = struct {
result1 error
}{result1}
}
func (fake *StatusWriter) Patch(arg1 context.Context, arg2 client.Object, arg3 client.Patch, arg4 ...client.SubResourcePatchOption) error {
fake.patchMutex.Lock()
ret, specificReturn := fake.patchReturnsOnCall[len(fake.patchArgsForCall)]
fake.patchArgsForCall = append(fake.patchArgsForCall, struct {
arg1 context.Context
arg2 client.Object
arg3 client.Patch
arg4 []client.SubResourcePatchOption
}{arg1, arg2, arg3, arg4})
stub := fake.PatchStub
fakeReturns := fake.patchReturns
fake.recordInvocation("Patch", []interface{}{arg1, arg2, arg3, arg4})
fake.patchMutex.Unlock()
if stub != nil {
return stub(arg1, arg2, arg3, arg4...)
}
if specificReturn {
return ret.result1
}
return fakeReturns.result1
}
func (fake *StatusWriter) PatchCallCount() int {
fake.patchMutex.RLock()
defer fake.patchMutex.RUnlock()
return len(fake.patchArgsForCall)
}
func (fake *StatusWriter) PatchCalls(stub func(context.Context, client.Object, client.Patch, ...client.SubResourcePatchOption) error) {
fake.patchMutex.Lock()
defer fake.patchMutex.Unlock()
fake.PatchStub = stub
}
func (fake *StatusWriter) PatchArgsForCall(i int) (context.Context, client.Object, client.Patch, []client.SubResourcePatchOption) {
fake.patchMutex.RLock()
defer fake.patchMutex.RUnlock()
argsForCall := fake.patchArgsForCall[i]
return argsForCall.arg1, argsForCall.arg2, argsForCall.arg3, argsForCall.arg4
}
func (fake *StatusWriter) PatchReturns(result1 error) {
fake.patchMutex.Lock()
defer fake.patchMutex.Unlock()
fake.PatchStub = nil
fake.patchReturns = struct {
result1 error
}{result1}
}
func (fake *StatusWriter) PatchReturnsOnCall(i int, result1 error) {
fake.patchMutex.Lock()
defer fake.patchMutex.Unlock()
fake.PatchStub = nil
if fake.patchReturnsOnCall == nil {
fake.patchReturnsOnCall = make(map[int]struct {
result1 error
})
}
fake.patchReturnsOnCall[i] = struct {
result1 error
}{result1}
}
func (fake *StatusWriter) Update(arg1 context.Context, arg2 client.Object, arg3 ...client.SubResourceUpdateOption) error {
fake.updateMutex.Lock()
ret, specificReturn := fake.updateReturnsOnCall[len(fake.updateArgsForCall)]
fake.updateArgsForCall = append(fake.updateArgsForCall, struct {
arg1 context.Context
arg2 client.Object
arg3 []client.SubResourceUpdateOption
}{arg1, arg2, arg3})
stub := fake.UpdateStub
fakeReturns := fake.updateReturns
fake.recordInvocation("Update", []interface{}{arg1, arg2, arg3})
fake.updateMutex.Unlock()
if stub != nil {
return stub(arg1, arg2, arg3...)
}
if specificReturn {
return ret.result1
}
return fakeReturns.result1
}
func (fake *StatusWriter) UpdateCallCount() int {
fake.updateMutex.RLock()
defer fake.updateMutex.RUnlock()
return len(fake.updateArgsForCall)
}
func (fake *StatusWriter) UpdateCalls(stub func(context.Context, client.Object, ...client.SubResourceUpdateOption) error) {
fake.updateMutex.Lock()
defer fake.updateMutex.Unlock()
fake.UpdateStub = stub
}
func (fake *StatusWriter) UpdateArgsForCall(i int) (context.Context, client.Object, []client.SubResourceUpdateOption) {
fake.updateMutex.RLock()
defer fake.updateMutex.RUnlock()
argsForCall := fake.updateArgsForCall[i]
return argsForCall.arg1, argsForCall.arg2, argsForCall.arg3
}
func (fake *StatusWriter) UpdateReturns(result1 error) {
fake.updateMutex.Lock()
defer fake.updateMutex.Unlock()
fake.UpdateStub = nil
fake.updateReturns = struct {
result1 error
}{result1}
}
func (fake *StatusWriter) UpdateReturnsOnCall(i int, result1 error) {
fake.updateMutex.Lock()
defer fake.updateMutex.Unlock()
fake.UpdateStub = nil
if fake.updateReturnsOnCall == nil {
fake.updateReturnsOnCall = make(map[int]struct {
result1 error
})
}
fake.updateReturnsOnCall[i] = struct {
result1 error
}{result1}
}
func (fake *StatusWriter) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.createMutex.RLock()
defer fake.createMutex.RUnlock()
fake.patchMutex.RLock()
defer fake.patchMutex.RUnlock()
fake.updateMutex.RLock()
defer fake.updateMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *StatusWriter) 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 _ client.StatusWriter = new(StatusWriter)