forked from ThienLK1/fabric-v2.2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
new_semaphore.go
108 lines (96 loc) · 2.5 KB
/
new_semaphore.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
// Code generated by counterfeiter. DO NOT EDIT.
package mock
import (
sync "sync"
comm "github.com/hyperledger/fabric/core/comm"
)
type NewSemaphore struct {
Stub func(int) comm.Semaphore
mutex sync.RWMutex
argsForCall []struct {
arg1 int
}
returns struct {
result1 comm.Semaphore
}
returnsOnCall map[int]struct {
result1 comm.Semaphore
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *NewSemaphore) Spy(arg1 int) comm.Semaphore {
fake.mutex.Lock()
ret, specificReturn := fake.returnsOnCall[len(fake.argsForCall)]
fake.argsForCall = append(fake.argsForCall, struct {
arg1 int
}{arg1})
fake.recordInvocation("NewSemaphoreFunc", []interface{}{arg1})
fake.mutex.Unlock()
if fake.Stub != nil {
return fake.Stub(arg1)
}
if specificReturn {
return ret.result1
}
return fake.returns.result1
}
func (fake *NewSemaphore) CallCount() int {
fake.mutex.RLock()
defer fake.mutex.RUnlock()
return len(fake.argsForCall)
}
func (fake *NewSemaphore) Calls(stub func(int) comm.Semaphore) {
fake.mutex.Lock()
defer fake.mutex.Unlock()
fake.Stub = stub
}
func (fake *NewSemaphore) ArgsForCall(i int) int {
fake.mutex.RLock()
defer fake.mutex.RUnlock()
return fake.argsForCall[i].arg1
}
func (fake *NewSemaphore) Returns(result1 comm.Semaphore) {
fake.mutex.Lock()
defer fake.mutex.Unlock()
fake.Stub = nil
fake.returns = struct {
result1 comm.Semaphore
}{result1}
}
func (fake *NewSemaphore) ReturnsOnCall(i int, result1 comm.Semaphore) {
fake.mutex.Lock()
defer fake.mutex.Unlock()
fake.Stub = nil
if fake.returnsOnCall == nil {
fake.returnsOnCall = make(map[int]struct {
result1 comm.Semaphore
})
}
fake.returnsOnCall[i] = struct {
result1 comm.Semaphore
}{result1}
}
func (fake *NewSemaphore) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.mutex.RLock()
defer fake.mutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *NewSemaphore) 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 _ comm.NewSemaphoreFunc = new(NewSemaphore).Spy