forked from hyperledger/fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
access_control.go
101 lines (90 loc) · 2.59 KB
/
access_control.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
// Code generated by counterfeiter. DO NOT EDIT.
package mock
import (
"sync"
"github.com/hyperledger/fabric/protos/token"
"github.com/hyperledger/fabric/token/server"
)
type PolicyChecker struct {
CheckStub func(sc *token.SignedCommand, c *token.Command) error
checkMutex sync.RWMutex
checkArgsForCall []struct {
sc *token.SignedCommand
c *token.Command
}
checkReturns struct {
result1 error
}
checkReturnsOnCall map[int]struct {
result1 error
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *PolicyChecker) Check(sc *token.SignedCommand, c *token.Command) error {
fake.checkMutex.Lock()
ret, specificReturn := fake.checkReturnsOnCall[len(fake.checkArgsForCall)]
fake.checkArgsForCall = append(fake.checkArgsForCall, struct {
sc *token.SignedCommand
c *token.Command
}{sc, c})
fake.recordInvocation("Check", []interface{}{sc, c})
fake.checkMutex.Unlock()
if fake.CheckStub != nil {
return fake.CheckStub(sc, c)
}
if specificReturn {
return ret.result1
}
return fake.checkReturns.result1
}
func (fake *PolicyChecker) CheckCallCount() int {
fake.checkMutex.RLock()
defer fake.checkMutex.RUnlock()
return len(fake.checkArgsForCall)
}
func (fake *PolicyChecker) CheckArgsForCall(i int) (*token.SignedCommand, *token.Command) {
fake.checkMutex.RLock()
defer fake.checkMutex.RUnlock()
return fake.checkArgsForCall[i].sc, fake.checkArgsForCall[i].c
}
func (fake *PolicyChecker) CheckReturns(result1 error) {
fake.CheckStub = nil
fake.checkReturns = struct {
result1 error
}{result1}
}
func (fake *PolicyChecker) CheckReturnsOnCall(i int, result1 error) {
fake.CheckStub = nil
if fake.checkReturnsOnCall == nil {
fake.checkReturnsOnCall = make(map[int]struct {
result1 error
})
}
fake.checkReturnsOnCall[i] = struct {
result1 error
}{result1}
}
func (fake *PolicyChecker) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.checkMutex.RLock()
defer fake.checkMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *PolicyChecker) 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.PolicyChecker = new(PolicyChecker)