forked from hyperledger/fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
capability_checker.go
103 lines (92 loc) · 2.72 KB
/
capability_checker.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
// Code generated by counterfeiter. DO NOT EDIT.
package mock
import (
"sync"
"github.com/hyperledger/fabric/token/server"
)
type CapabilityChecker struct {
FabTokenStub func(channelId string) (bool, error)
fabTokenMutex sync.RWMutex
fabTokenArgsForCall []struct {
channelId string
}
fabTokenReturns struct {
result1 bool
result2 error
}
fabTokenReturnsOnCall map[int]struct {
result1 bool
result2 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *CapabilityChecker) FabToken(channelId string) (bool, error) {
fake.fabTokenMutex.Lock()
ret, specificReturn := fake.fabTokenReturnsOnCall[len(fake.fabTokenArgsForCall)]
fake.fabTokenArgsForCall = append(fake.fabTokenArgsForCall, struct {
channelId string
}{channelId})
fake.recordInvocation("FabToken", []interface{}{channelId})
fake.fabTokenMutex.Unlock()
if fake.FabTokenStub != nil {
return fake.FabTokenStub(channelId)
}
if specificReturn {
return ret.result1, ret.result2
}
return fake.fabTokenReturns.result1, fake.fabTokenReturns.result2
}
func (fake *CapabilityChecker) FabTokenCallCount() int {
fake.fabTokenMutex.RLock()
defer fake.fabTokenMutex.RUnlock()
return len(fake.fabTokenArgsForCall)
}
func (fake *CapabilityChecker) FabTokenArgsForCall(i int) string {
fake.fabTokenMutex.RLock()
defer fake.fabTokenMutex.RUnlock()
return fake.fabTokenArgsForCall[i].channelId
}
func (fake *CapabilityChecker) FabTokenReturns(result1 bool, result2 error) {
fake.FabTokenStub = nil
fake.fabTokenReturns = struct {
result1 bool
result2 error
}{result1, result2}
}
func (fake *CapabilityChecker) FabTokenReturnsOnCall(i int, result1 bool, result2 error) {
fake.FabTokenStub = nil
if fake.fabTokenReturnsOnCall == nil {
fake.fabTokenReturnsOnCall = make(map[int]struct {
result1 bool
result2 error
})
}
fake.fabTokenReturnsOnCall[i] = struct {
result1 bool
result2 error
}{result1, result2}
}
func (fake *CapabilityChecker) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.fabTokenMutex.RLock()
defer fake.fabTokenMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *CapabilityChecker) 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 _ server.CapabilityChecker = new(CapabilityChecker)