-
Notifications
You must be signed in to change notification settings - Fork 3
/
mock_User.go
252 lines (202 loc) Β· 6.6 KB
/
mock_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
241
242
243
244
245
246
247
248
249
250
251
252
// Code generated by mockery v2.49.0. DO NOT EDIT.
package passkey
import (
webauthn "github.com/go-webauthn/webauthn/webauthn"
mock "github.com/stretchr/testify/mock"
)
// MockUser is an autogenerated mock type for the User type
type MockUser struct {
mock.Mock
}
type MockUser_Expecter struct {
mock *mock.Mock
}
func (_m *MockUser) EXPECT() *MockUser_Expecter {
return &MockUser_Expecter{mock: &_m.Mock}
}
// PutCredential provides a mock function with given fields: _a0
func (_m *MockUser) PutCredential(_a0 webauthn.Credential) {
_m.Called(_a0)
}
// MockUser_PutCredential_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'PutCredential'
type MockUser_PutCredential_Call struct {
*mock.Call
}
// PutCredential is a helper method to define mock.On call
// - _a0 webauthn.Credential
func (_e *MockUser_Expecter) PutCredential(_a0 interface{}) *MockUser_PutCredential_Call {
return &MockUser_PutCredential_Call{Call: _e.mock.On("PutCredential", _a0)}
}
func (_c *MockUser_PutCredential_Call) Run(run func(_a0 webauthn.Credential)) *MockUser_PutCredential_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(webauthn.Credential))
})
return _c
}
func (_c *MockUser_PutCredential_Call) Return() *MockUser_PutCredential_Call {
_c.Call.Return()
return _c
}
func (_c *MockUser_PutCredential_Call) RunAndReturn(run func(webauthn.Credential)) *MockUser_PutCredential_Call {
_c.Call.Return(run)
return _c
}
// WebAuthnCredentials provides a mock function with given fields:
func (_m *MockUser) WebAuthnCredentials() []webauthn.Credential {
ret := _m.Called()
if len(ret) == 0 {
panic("no return value specified for WebAuthnCredentials")
}
var r0 []webauthn.Credential
if rf, ok := ret.Get(0).(func() []webauthn.Credential); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]webauthn.Credential)
}
}
return r0
}
// MockUser_WebAuthnCredentials_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WebAuthnCredentials'
type MockUser_WebAuthnCredentials_Call struct {
*mock.Call
}
// WebAuthnCredentials is a helper method to define mock.On call
func (_e *MockUser_Expecter) WebAuthnCredentials() *MockUser_WebAuthnCredentials_Call {
return &MockUser_WebAuthnCredentials_Call{Call: _e.mock.On("WebAuthnCredentials")}
}
func (_c *MockUser_WebAuthnCredentials_Call) Run(run func()) *MockUser_WebAuthnCredentials_Call {
_c.Call.Run(func(args mock.Arguments) {
run()
})
return _c
}
func (_c *MockUser_WebAuthnCredentials_Call) Return(_a0 []webauthn.Credential) *MockUser_WebAuthnCredentials_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *MockUser_WebAuthnCredentials_Call) RunAndReturn(run func() []webauthn.Credential) *MockUser_WebAuthnCredentials_Call {
_c.Call.Return(run)
return _c
}
// WebAuthnDisplayName provides a mock function with given fields:
func (_m *MockUser) WebAuthnDisplayName() string {
ret := _m.Called()
if len(ret) == 0 {
panic("no return value specified for WebAuthnDisplayName")
}
var r0 string
if rf, ok := ret.Get(0).(func() string); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(string)
}
return r0
}
// MockUser_WebAuthnDisplayName_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WebAuthnDisplayName'
type MockUser_WebAuthnDisplayName_Call struct {
*mock.Call
}
// WebAuthnDisplayName is a helper method to define mock.On call
func (_e *MockUser_Expecter) WebAuthnDisplayName() *MockUser_WebAuthnDisplayName_Call {
return &MockUser_WebAuthnDisplayName_Call{Call: _e.mock.On("WebAuthnDisplayName")}
}
func (_c *MockUser_WebAuthnDisplayName_Call) Run(run func()) *MockUser_WebAuthnDisplayName_Call {
_c.Call.Run(func(args mock.Arguments) {
run()
})
return _c
}
func (_c *MockUser_WebAuthnDisplayName_Call) Return(_a0 string) *MockUser_WebAuthnDisplayName_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *MockUser_WebAuthnDisplayName_Call) RunAndReturn(run func() string) *MockUser_WebAuthnDisplayName_Call {
_c.Call.Return(run)
return _c
}
// WebAuthnID provides a mock function with given fields:
func (_m *MockUser) WebAuthnID() []byte {
ret := _m.Called()
if len(ret) == 0 {
panic("no return value specified for WebAuthnID")
}
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)
}
}
return r0
}
// MockUser_WebAuthnID_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WebAuthnID'
type MockUser_WebAuthnID_Call struct {
*mock.Call
}
// WebAuthnID is a helper method to define mock.On call
func (_e *MockUser_Expecter) WebAuthnID() *MockUser_WebAuthnID_Call {
return &MockUser_WebAuthnID_Call{Call: _e.mock.On("WebAuthnID")}
}
func (_c *MockUser_WebAuthnID_Call) Run(run func()) *MockUser_WebAuthnID_Call {
_c.Call.Run(func(args mock.Arguments) {
run()
})
return _c
}
func (_c *MockUser_WebAuthnID_Call) Return(_a0 []byte) *MockUser_WebAuthnID_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *MockUser_WebAuthnID_Call) RunAndReturn(run func() []byte) *MockUser_WebAuthnID_Call {
_c.Call.Return(run)
return _c
}
// WebAuthnName provides a mock function with given fields:
func (_m *MockUser) WebAuthnName() string {
ret := _m.Called()
if len(ret) == 0 {
panic("no return value specified for WebAuthnName")
}
var r0 string
if rf, ok := ret.Get(0).(func() string); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(string)
}
return r0
}
// MockUser_WebAuthnName_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WebAuthnName'
type MockUser_WebAuthnName_Call struct {
*mock.Call
}
// WebAuthnName is a helper method to define mock.On call
func (_e *MockUser_Expecter) WebAuthnName() *MockUser_WebAuthnName_Call {
return &MockUser_WebAuthnName_Call{Call: _e.mock.On("WebAuthnName")}
}
func (_c *MockUser_WebAuthnName_Call) Run(run func()) *MockUser_WebAuthnName_Call {
_c.Call.Run(func(args mock.Arguments) {
run()
})
return _c
}
func (_c *MockUser_WebAuthnName_Call) Return(_a0 string) *MockUser_WebAuthnName_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *MockUser_WebAuthnName_Call) RunAndReturn(run func() string) *MockUser_WebAuthnName_Call {
_c.Call.Return(run)
return _c
}
// NewMockUser creates a new instance of MockUser. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
// The first argument is typically a *testing.T value.
func NewMockUser(t interface {
mock.TestingT
Cleanup(func())
}) *MockUser {
mock := &MockUser{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}