forked from hyperledger/fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
identity.go
153 lines (121 loc) · 3.04 KB
/
identity.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
// Code generated by mockery v1.0.0. DO NOT EDIT.
package mocks
import fabric_protos_gomsp "github.com/hyperledger/fabric-protos-go/msp"
import mock "github.com/stretchr/testify/mock"
import msp "github.com/hyperledger/fabric/msp"
import time "time"
// Identity is an autogenerated mock type for the Identity type
type Identity struct {
mock.Mock
}
// Anonymous provides a mock function with given fields:
func (_m *Identity) Anonymous() bool {
ret := _m.Called()
var r0 bool
if rf, ok := ret.Get(0).(func() bool); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(bool)
}
return r0
}
// ExpiresAt provides a mock function with given fields:
func (_m *Identity) ExpiresAt() time.Time {
ret := _m.Called()
var r0 time.Time
if rf, ok := ret.Get(0).(func() time.Time); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(time.Time)
}
return r0
}
// GetIdentifier provides a mock function with given fields:
func (_m *Identity) GetIdentifier() *msp.IdentityIdentifier {
ret := _m.Called()
var r0 *msp.IdentityIdentifier
if rf, ok := ret.Get(0).(func() *msp.IdentityIdentifier); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*msp.IdentityIdentifier)
}
}
return r0
}
// GetMSPIdentifier provides a mock function with given fields:
func (_m *Identity) GetMSPIdentifier() string {
ret := _m.Called()
var r0 string
if rf, ok := ret.Get(0).(func() string); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(string)
}
return r0
}
// GetOrganizationalUnits provides a mock function with given fields:
func (_m *Identity) GetOrganizationalUnits() []*msp.OUIdentifier {
ret := _m.Called()
var r0 []*msp.OUIdentifier
if rf, ok := ret.Get(0).(func() []*msp.OUIdentifier); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]*msp.OUIdentifier)
}
}
return r0
}
// SatisfiesPrincipal provides a mock function with given fields: principal
func (_m *Identity) SatisfiesPrincipal(principal *fabric_protos_gomsp.MSPPrincipal) error {
ret := _m.Called(principal)
var r0 error
if rf, ok := ret.Get(0).(func(*fabric_protos_gomsp.MSPPrincipal) error); ok {
r0 = rf(principal)
} else {
r0 = ret.Error(0)
}
return r0
}
// Serialize provides a mock function with given fields:
func (_m *Identity) Serialize() ([]byte, error) {
ret := _m.Called()
var r0 []byte
if rf, ok := ret.Get(0).(func() []byte); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]byte)
}
}
var r1 error
if rf, ok := ret.Get(1).(func() error); ok {
r1 = rf()
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// Validate provides a mock function with given fields:
func (_m *Identity) Validate() error {
ret := _m.Called()
var r0 error
if rf, ok := ret.Get(0).(func() error); ok {
r0 = rf()
} else {
r0 = ret.Error(0)
}
return r0
}
// Verify provides a mock function with given fields: msg, sig
func (_m *Identity) Verify(msg []byte, sig []byte) error {
ret := _m.Called(msg, sig)
var r0 error
if rf, ok := ret.Get(0).(func([]byte, []byte) error); ok {
r0 = rf(msg, sig)
} else {
r0 = ret.Error(0)
}
return r0
}