-
Notifications
You must be signed in to change notification settings - Fork 484
/
DeviceClient.go
394 lines (316 loc) · 9.96 KB
/
DeviceClient.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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
// Code generated by mockery v1.0.0. DO NOT EDIT.
package mocks
import (
context "context"
"github.com/edgexfoundry/go-mod-core-contracts/requests/states/admin"
"github.com/edgexfoundry/go-mod-core-contracts/requests/states/operating"
)
import mock "github.com/stretchr/testify/mock"
import models "github.com/edgexfoundry/go-mod-core-contracts/models"
// DeviceClient is an autogenerated mock type for the DeviceClient type
type DeviceClient struct {
mock.Mock
}
// Add provides a mock function with given fields: ctx, dev
func (_m *DeviceClient) Add(ctx context.Context, dev *models.Device) (string, error) {
ret := _m.Called(ctx, dev)
var r0 string
if rf, ok := ret.Get(0).(func(context.Context, *models.Device) string); ok {
r0 = rf(ctx, dev)
} else {
r0 = ret.Get(0).(string)
}
var r1 error
if rf, ok := ret.Get(1).(func(context.Context, *models.Device) error); ok {
r1 = rf(ctx, dev)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// CheckForDevice provides a mock function with given fields: ctx, token
func (_m *DeviceClient) CheckForDevice(ctx context.Context, token string) (models.Device, error) {
ret := _m.Called(ctx, token)
var r0 models.Device
if rf, ok := ret.Get(0).(func(context.Context, string) models.Device); ok {
r0 = rf(ctx, token)
} else {
r0 = ret.Get(0).(models.Device)
}
var r1 error
if rf, ok := ret.Get(1).(func(context.Context, string) error); ok {
r1 = rf(ctx, token)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// Delete provides a mock function with given fields: ctx, id
func (_m *DeviceClient) Delete(ctx context.Context, id string) error {
ret := _m.Called(ctx, id)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, string) error); ok {
r0 = rf(ctx, id)
} else {
r0 = ret.Error(0)
}
return r0
}
// DeleteByName provides a mock function with given fields: ctx, name
func (_m *DeviceClient) DeleteByName(ctx context.Context, name string) error {
ret := _m.Called(ctx, name)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, string) error); ok {
r0 = rf(ctx, name)
} else {
r0 = ret.Error(0)
}
return r0
}
// Device provides a mock function with given fields: ctx, id
func (_m *DeviceClient) Device(ctx context.Context, id string) (models.Device, error) {
ret := _m.Called(ctx, id)
var r0 models.Device
if rf, ok := ret.Get(0).(func(context.Context, string) models.Device); ok {
r0 = rf(ctx, id)
} else {
r0 = ret.Get(0).(models.Device)
}
var r1 error
if rf, ok := ret.Get(1).(func(context.Context, string) error); ok {
r1 = rf(ctx, id)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// DeviceForName provides a mock function with given fields: ctx, name
func (_m *DeviceClient) DeviceForName(ctx context.Context, name string) (models.Device, error) {
ret := _m.Called(ctx, name)
var r0 models.Device
if rf, ok := ret.Get(0).(func(context.Context, string) models.Device); ok {
r0 = rf(ctx, name)
} else {
r0 = ret.Get(0).(models.Device)
}
var r1 error
if rf, ok := ret.Get(1).(func(context.Context, string) error); ok {
r1 = rf(ctx, name)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// Devices provides a mock function with given fields: ctx
func (_m *DeviceClient) Devices(ctx context.Context) ([]models.Device, error) {
ret := _m.Called(ctx)
var r0 []models.Device
if rf, ok := ret.Get(0).(func(context.Context) []models.Device); ok {
r0 = rf(ctx)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]models.Device)
}
}
var r1 error
if rf, ok := ret.Get(1).(func(context.Context) error); ok {
r1 = rf(ctx)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// DevicesByLabel provides a mock function with given fields: ctx, label
func (_m *DeviceClient) DevicesByLabel(ctx context.Context, label string) ([]models.Device, error) {
ret := _m.Called(ctx, label)
var r0 []models.Device
if rf, ok := ret.Get(0).(func(context.Context, string) []models.Device); ok {
r0 = rf(ctx, label)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]models.Device)
}
}
var r1 error
if rf, ok := ret.Get(1).(func(context.Context, string) error); ok {
r1 = rf(ctx, label)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// DevicesForProfile provides a mock function with given fields: ctx, profileid
func (_m *DeviceClient) DevicesForProfile(ctx context.Context, profileid string) ([]models.Device, error) {
ret := _m.Called(ctx, profileid)
var r0 []models.Device
if rf, ok := ret.Get(0).(func(context.Context, string) []models.Device); ok {
r0 = rf(ctx, profileid)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]models.Device)
}
}
var r1 error
if rf, ok := ret.Get(1).(func(context.Context, string) error); ok {
r1 = rf(ctx, profileid)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// DevicesForProfileByName provides a mock function with given fields: ctx, profileName
func (_m *DeviceClient) DevicesForProfileByName(ctx context.Context, profileName string) ([]models.Device, error) {
ret := _m.Called(ctx, profileName)
var r0 []models.Device
if rf, ok := ret.Get(0).(func(context.Context, string) []models.Device); ok {
r0 = rf(ctx, profileName)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]models.Device)
}
}
var r1 error
if rf, ok := ret.Get(1).(func(context.Context, string) error); ok {
r1 = rf(ctx, profileName)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// DevicesForService provides a mock function with given fields: ctx, serviceid
func (_m *DeviceClient) DevicesForService(ctx context.Context, serviceid string) ([]models.Device, error) {
ret := _m.Called(ctx, serviceid)
var r0 []models.Device
if rf, ok := ret.Get(0).(func(context.Context, string) []models.Device); ok {
r0 = rf(ctx, serviceid)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]models.Device)
}
}
var r1 error
if rf, ok := ret.Get(1).(func(context.Context, string) error); ok {
r1 = rf(ctx, serviceid)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// DevicesForServiceByName provides a mock function with given fields: ctx, serviceName
func (_m *DeviceClient) DevicesForServiceByName(ctx context.Context, serviceName string) ([]models.Device, error) {
ret := _m.Called(ctx, serviceName)
var r0 []models.Device
if rf, ok := ret.Get(0).(func(context.Context, string) []models.Device); ok {
r0 = rf(ctx, serviceName)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]models.Device)
}
}
var r1 error
if rf, ok := ret.Get(1).(func(context.Context, string) error); ok {
r1 = rf(ctx, serviceName)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// Update provides a mock function with given fields: ctx, dev
func (_m *DeviceClient) Update(ctx context.Context, dev models.Device) error {
ret := _m.Called(ctx, dev)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, models.Device) error); ok {
r0 = rf(ctx, dev)
} else {
r0 = ret.Error(0)
}
return r0
}
// UpdateAdminState provides a mock function with given fields: ctx, id, adminState
func (_m *DeviceClient) UpdateAdminState(ctx context.Context, id string, adminState admin.UpdateRequest) error {
ret := _m.Called(ctx, id, adminState)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, string, admin.UpdateRequest) error); ok {
r0 = rf(ctx, id, adminState)
} else {
r0 = ret.Error(0)
}
return r0
}
// UpdateAdminStateByName provides a mock function with given fields: ctx, name, adminState
func (_m *DeviceClient) UpdateAdminStateByName(ctx context.Context, name string, adminState admin.UpdateRequest) error {
ret := _m.Called(ctx, name, adminState)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, string, admin.UpdateRequest) error); ok {
r0 = rf(ctx, name, adminState)
} else {
r0 = ret.Error(0)
}
return r0
}
// UpdateLastConnected provides a mock function with given fields: ctx, id, time
func (_m *DeviceClient) UpdateLastConnected(ctx context.Context, id string, time int64) error {
ret := _m.Called(ctx, id, time)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, string, int64) error); ok {
r0 = rf(ctx, id, time)
} else {
r0 = ret.Error(0)
}
return r0
}
// UpdateLastConnectedByName provides a mock function with given fields: ctx, name, time
func (_m *DeviceClient) UpdateLastConnectedByName(ctx context.Context, name string, time int64) error {
ret := _m.Called(ctx, name, time)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, string, int64) error); ok {
r0 = rf(ctx, name, time)
} else {
r0 = ret.Error(0)
}
return r0
}
// UpdateLastReported provides a mock function with given fields: ctx, id, time
func (_m *DeviceClient) UpdateLastReported(ctx context.Context, id string, time int64) error {
ret := _m.Called(ctx, id, time)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, string, int64) error); ok {
r0 = rf(ctx, id, time)
} else {
r0 = ret.Error(0)
}
return r0
}
// UpdateLastReportedByName provides a mock function with given fields: ctx, name, time
func (_m *DeviceClient) UpdateLastReportedByName(ctx context.Context, name string, time int64) error {
ret := _m.Called(ctx, name, time)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, string, int64) error); ok {
r0 = rf(ctx, name, time)
} else {
r0 = ret.Error(0)
}
return r0
}
// UpdateOpState provides a mock function with given fields: ctx, id, opState
func (_m *DeviceClient) UpdateOpState(ctx context.Context, id string, opState operating.UpdateRequest) error {
ret := _m.Called(ctx, id, opState)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, string, operating.UpdateRequest) error); ok {
r0 = rf(ctx, id, opState)
} else {
r0 = ret.Error(0)
}
return r0
}
// UpdateOpStateByName provides a mock function with given fields: ctx, name, opState
func (_m *DeviceClient) UpdateOpStateByName(ctx context.Context, name string, opState operating.UpdateRequest) error {
ret := _m.Called(ctx, name, opState)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, string, operating.UpdateRequest) error); ok {
r0 = rf(ctx, name, opState)
} else {
r0 = ret.Error(0)
}
return r0
}