This repository has been archived by the owner on Oct 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
status_writer.go
194 lines (176 loc) · 5.39 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
// Code generated by counterfeiter. DO NOT EDIT.
package fakes
import (
"context"
"sync"
"sigs.k8s.io/controller-runtime/pkg/client"
)
type FakeStatusWriter struct {
PatchStub func(context.Context, client.Object, client.Patch, ...client.PatchOption) error
patchMutex sync.RWMutex
patchArgsForCall []struct {
arg1 context.Context
arg2 client.Object
arg3 client.Patch
arg4 []client.PatchOption
}
patchReturns struct {
result1 error
}
patchReturnsOnCall map[int]struct {
result1 error
}
UpdateStub func(context.Context, client.Object, ...client.UpdateOption) error
updateMutex sync.RWMutex
updateArgsForCall []struct {
arg1 context.Context
arg2 client.Object
arg3 []client.UpdateOption
}
updateReturns struct {
result1 error
}
updateReturnsOnCall map[int]struct {
result1 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *FakeStatusWriter) Patch(arg1 context.Context, arg2 client.Object, arg3 client.Patch, arg4 ...client.PatchOption) 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.PatchOption
}{arg1, arg2, arg3, arg4})
fake.recordInvocation("Patch", []interface{}{arg1, arg2, arg3, arg4})
fake.patchMutex.Unlock()
if fake.PatchStub != nil {
return fake.PatchStub(arg1, arg2, arg3, arg4...)
}
if specificReturn {
return ret.result1
}
fakeReturns := fake.patchReturns
return fakeReturns.result1
}
func (fake *FakeStatusWriter) PatchCallCount() int {
fake.patchMutex.RLock()
defer fake.patchMutex.RUnlock()
return len(fake.patchArgsForCall)
}
func (fake *FakeStatusWriter) PatchCalls(stub func(context.Context, client.Object, client.Patch, ...client.PatchOption) error) {
fake.patchMutex.Lock()
defer fake.patchMutex.Unlock()
fake.PatchStub = stub
}
func (fake *FakeStatusWriter) PatchArgsForCall(i int) (context.Context, client.Object, client.Patch, []client.PatchOption) {
fake.patchMutex.RLock()
defer fake.patchMutex.RUnlock()
argsForCall := fake.patchArgsForCall[i]
return argsForCall.arg1, argsForCall.arg2, argsForCall.arg3, argsForCall.arg4
}
func (fake *FakeStatusWriter) PatchReturns(result1 error) {
fake.patchMutex.Lock()
defer fake.patchMutex.Unlock()
fake.PatchStub = nil
fake.patchReturns = struct {
result1 error
}{result1}
}
func (fake *FakeStatusWriter) 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 *FakeStatusWriter) Update(arg1 context.Context, arg2 client.Object, arg3 ...client.UpdateOption) 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.UpdateOption
}{arg1, arg2, arg3})
fake.recordInvocation("Update", []interface{}{arg1, arg2, arg3})
fake.updateMutex.Unlock()
if fake.UpdateStub != nil {
return fake.UpdateStub(arg1, arg2, arg3...)
}
if specificReturn {
return ret.result1
}
fakeReturns := fake.updateReturns
return fakeReturns.result1
}
func (fake *FakeStatusWriter) UpdateCallCount() int {
fake.updateMutex.RLock()
defer fake.updateMutex.RUnlock()
return len(fake.updateArgsForCall)
}
func (fake *FakeStatusWriter) UpdateCalls(stub func(context.Context, client.Object, ...client.UpdateOption) error) {
fake.updateMutex.Lock()
defer fake.updateMutex.Unlock()
fake.UpdateStub = stub
}
func (fake *FakeStatusWriter) UpdateArgsForCall(i int) (context.Context, client.Object, []client.UpdateOption) {
fake.updateMutex.RLock()
defer fake.updateMutex.RUnlock()
argsForCall := fake.updateArgsForCall[i]
return argsForCall.arg1, argsForCall.arg2, argsForCall.arg3
}
func (fake *FakeStatusWriter) UpdateReturns(result1 error) {
fake.updateMutex.Lock()
defer fake.updateMutex.Unlock()
fake.UpdateStub = nil
fake.updateReturns = struct {
result1 error
}{result1}
}
func (fake *FakeStatusWriter) 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 *FakeStatusWriter) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.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 *FakeStatusWriter) 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(FakeStatusWriter)