-
Notifications
You must be signed in to change notification settings - Fork 37
/
reenroller.go
117 lines (105 loc) · 3.21 KB
/
reenroller.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
// Code generated by counterfeiter. DO NOT EDIT.
package mocks
import (
"sync"
"github.com/IBM-Blockchain/fabric-operator/pkg/action"
"github.com/IBM-Blockchain/fabric-operator/pkg/initializer/common"
"k8s.io/apimachinery/pkg/runtime"
)
type Reenroller struct {
RenewCertStub func(common.SecretType, runtime.Object, bool) error
renewCertMutex sync.RWMutex
renewCertArgsForCall []struct {
arg1 common.SecretType
arg2 runtime.Object
arg3 bool
}
renewCertReturns struct {
result1 error
}
renewCertReturnsOnCall map[int]struct {
result1 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *Reenroller) RenewCert(arg1 common.SecretType, arg2 runtime.Object, arg3 bool) error {
fake.renewCertMutex.Lock()
ret, specificReturn := fake.renewCertReturnsOnCall[len(fake.renewCertArgsForCall)]
fake.renewCertArgsForCall = append(fake.renewCertArgsForCall, struct {
arg1 common.SecretType
arg2 runtime.Object
arg3 bool
}{arg1, arg2, arg3})
stub := fake.RenewCertStub
fakeReturns := fake.renewCertReturns
fake.recordInvocation("RenewCert", []interface{}{arg1, arg2, arg3})
fake.renewCertMutex.Unlock()
if stub != nil {
return stub(arg1, arg2, arg3)
}
if specificReturn {
return ret.result1
}
return fakeReturns.result1
}
func (fake *Reenroller) RenewCertCallCount() int {
fake.renewCertMutex.RLock()
defer fake.renewCertMutex.RUnlock()
return len(fake.renewCertArgsForCall)
}
func (fake *Reenroller) RenewCertCalls(stub func(common.SecretType, runtime.Object, bool) error) {
fake.renewCertMutex.Lock()
defer fake.renewCertMutex.Unlock()
fake.RenewCertStub = stub
}
func (fake *Reenroller) RenewCertArgsForCall(i int) (common.SecretType, runtime.Object, bool) {
fake.renewCertMutex.RLock()
defer fake.renewCertMutex.RUnlock()
argsForCall := fake.renewCertArgsForCall[i]
return argsForCall.arg1, argsForCall.arg2, argsForCall.arg3
}
func (fake *Reenroller) RenewCertReturns(result1 error) {
fake.renewCertMutex.Lock()
defer fake.renewCertMutex.Unlock()
fake.RenewCertStub = nil
fake.renewCertReturns = struct {
result1 error
}{result1}
}
func (fake *Reenroller) RenewCertReturnsOnCall(i int, result1 error) {
fake.renewCertMutex.Lock()
defer fake.renewCertMutex.Unlock()
fake.RenewCertStub = nil
if fake.renewCertReturnsOnCall == nil {
fake.renewCertReturnsOnCall = make(map[int]struct {
result1 error
})
}
fake.renewCertReturnsOnCall[i] = struct {
result1 error
}{result1}
}
func (fake *Reenroller) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.renewCertMutex.RLock()
defer fake.renewCertMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *Reenroller) 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 _ action.Reenroller = new(Reenroller)