-
Notifications
You must be signed in to change notification settings - Fork 9
/
User.go
240 lines (191 loc) · 4.54 KB
/
User.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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
// Code generated by mockery v1.0.0. DO NOT EDIT.
package mocks
import api "github.com/VoneChain-CS/fabric-ca-gm/api"
import mock "github.com/stretchr/testify/mock"
// User is an autogenerated mock type for the User type
type User struct {
mock.Mock
}
// GetAffiliationPath provides a mock function with given fields:
func (_m *User) GetAffiliationPath() []string {
ret := _m.Called()
var r0 []string
if rf, ok := ret.Get(0).(func() []string); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]string)
}
}
return r0
}
// GetAttribute provides a mock function with given fields: name
func (_m *User) GetAttribute(name string) (*api.Attribute, error) {
ret := _m.Called(name)
var r0 *api.Attribute
if rf, ok := ret.Get(0).(func(string) *api.Attribute); ok {
r0 = rf(name)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*api.Attribute)
}
}
var r1 error
if rf, ok := ret.Get(1).(func(string) error); ok {
r1 = rf(name)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// GetAttributes provides a mock function with given fields: attrNames
func (_m *User) GetAttributes(attrNames []string) ([]api.Attribute, error) {
ret := _m.Called(attrNames)
var r0 []api.Attribute
if rf, ok := ret.Get(0).(func([]string) []api.Attribute); ok {
r0 = rf(attrNames)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]api.Attribute)
}
}
var r1 error
if rf, ok := ret.Get(1).(func([]string) error); ok {
r1 = rf(attrNames)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// GetFailedLoginAttempts provides a mock function with given fields:
func (_m *User) GetFailedLoginAttempts() int {
ret := _m.Called()
var r0 int
if rf, ok := ret.Get(0).(func() int); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(int)
}
return r0
}
// GetLevel provides a mock function with given fields:
func (_m *User) GetLevel() int {
ret := _m.Called()
var r0 int
if rf, ok := ret.Get(0).(func() int); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(int)
}
return r0
}
// GetMaxEnrollments provides a mock function with given fields:
func (_m *User) GetMaxEnrollments() int {
ret := _m.Called()
var r0 int
if rf, ok := ret.Get(0).(func() int); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(int)
}
return r0
}
// GetName provides a mock function with given fields:
func (_m *User) GetName() 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
}
// GetType provides a mock function with given fields:
func (_m *User) GetType() 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
}
// IncrementIncorrectPasswordAttempts provides a mock function with given fields:
func (_m *User) IncrementIncorrectPasswordAttempts() 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
}
// IsRevoked provides a mock function with given fields:
func (_m *User) IsRevoked() 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
}
// Login provides a mock function with given fields: password, caMaxEnrollment
func (_m *User) Login(password string, caMaxEnrollment int) error {
ret := _m.Called(password, caMaxEnrollment)
var r0 error
if rf, ok := ret.Get(0).(func(string, int) error); ok {
r0 = rf(password, caMaxEnrollment)
} else {
r0 = ret.Error(0)
}
return r0
}
// LoginComplete provides a mock function with given fields:
func (_m *User) LoginComplete() 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
}
// ModifyAttributes provides a mock function with given fields: attrs
func (_m *User) ModifyAttributes(attrs []api.Attribute) error {
ret := _m.Called(attrs)
var r0 error
if rf, ok := ret.Get(0).(func([]api.Attribute) error); ok {
r0 = rf(attrs)
} else {
r0 = ret.Error(0)
}
return r0
}
// Revoke provides a mock function with given fields:
func (_m *User) Revoke() 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
}
// SetLevel provides a mock function with given fields: level
func (_m *User) SetLevel(level int) error {
ret := _m.Called(level)
var r0 error
if rf, ok := ret.Get(0).(func(int) error); ok {
r0 = rf(level)
} else {
r0 = ret.Error(0)
}
return r0
}