forked from oapi-codegen/oapi-codegen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server_moq.gen.go
524 lines (489 loc) · 17.2 KB
/
server_moq.gen.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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
// Code generated by moq; DO NOT EDIT.
// github.com/matryer/moq
package server
import (
"net/http"
"sync"
)
var (
lockServerInterfaceMockCreateResource sync.RWMutex
lockServerInterfaceMockCreateResource2 sync.RWMutex
lockServerInterfaceMockGetEveryTypeOptional sync.RWMutex
lockServerInterfaceMockGetReservedKeyword sync.RWMutex
lockServerInterfaceMockGetResponseWithReference sync.RWMutex
lockServerInterfaceMockGetSimple sync.RWMutex
lockServerInterfaceMockGetWithArgs sync.RWMutex
lockServerInterfaceMockGetWithContentType sync.RWMutex
lockServerInterfaceMockGetWithReferences sync.RWMutex
lockServerInterfaceMockUpdateResource3 sync.RWMutex
)
// Ensure, that ServerInterfaceMock does implement ServerInterface.
// If this is not the case, regenerate this file with moq.
var _ ServerInterface = &ServerInterfaceMock{}
// ServerInterfaceMock is a mock implementation of ServerInterface.
//
// func TestSomethingThatUsesServerInterface(t *testing.T) {
//
// // make and configure a mocked ServerInterface
// mockedServerInterface := &ServerInterfaceMock{
// CreateResourceFunc: func(w http.ResponseWriter, r *http.Request) {
// panic("mock out the CreateResource method")
// },
// CreateResource2Func: func(w http.ResponseWriter, r *http.Request) {
// panic("mock out the CreateResource2 method")
// },
// GetEveryTypeOptionalFunc: func(w http.ResponseWriter, r *http.Request) {
// panic("mock out the GetEveryTypeOptional method")
// },
// GetReservedKeywordFunc: func(w http.ResponseWriter, r *http.Request) {
// panic("mock out the GetReservedKeyword method")
// },
// GetResponseWithReferenceFunc: func(w http.ResponseWriter, r *http.Request) {
// panic("mock out the GetResponseWithReference method")
// },
// GetSimpleFunc: func(w http.ResponseWriter, r *http.Request) {
// panic("mock out the GetSimple method")
// },
// GetWithArgsFunc: func(w http.ResponseWriter, r *http.Request) {
// panic("mock out the GetWithArgs method")
// },
// GetWithContentTypeFunc: func(w http.ResponseWriter, r *http.Request) {
// panic("mock out the GetWithContentType method")
// },
// GetWithReferencesFunc: func(w http.ResponseWriter, r *http.Request) {
// panic("mock out the GetWithReferences method")
// },
// UpdateResource3Func: func(w http.ResponseWriter, r *http.Request) {
// panic("mock out the UpdateResource3 method")
// },
// }
//
// // use mockedServerInterface in code that requires ServerInterface
// // and then make assertions.
//
// }
type ServerInterfaceMock struct {
// CreateResourceFunc mocks the CreateResource method.
CreateResourceFunc func(w http.ResponseWriter, r *http.Request)
// CreateResource2Func mocks the CreateResource2 method.
CreateResource2Func func(w http.ResponseWriter, r *http.Request)
// GetEveryTypeOptionalFunc mocks the GetEveryTypeOptional method.
GetEveryTypeOptionalFunc func(w http.ResponseWriter, r *http.Request)
// GetReservedKeywordFunc mocks the GetReservedKeyword method.
GetReservedKeywordFunc func(w http.ResponseWriter, r *http.Request)
// GetResponseWithReferenceFunc mocks the GetResponseWithReference method.
GetResponseWithReferenceFunc func(w http.ResponseWriter, r *http.Request)
// GetSimpleFunc mocks the GetSimple method.
GetSimpleFunc func(w http.ResponseWriter, r *http.Request)
// GetWithArgsFunc mocks the GetWithArgs method.
GetWithArgsFunc func(w http.ResponseWriter, r *http.Request)
// GetWithContentTypeFunc mocks the GetWithContentType method.
GetWithContentTypeFunc func(w http.ResponseWriter, r *http.Request)
// GetWithReferencesFunc mocks the GetWithReferences method.
GetWithReferencesFunc func(w http.ResponseWriter, r *http.Request)
// UpdateResource3Func mocks the UpdateResource3 method.
UpdateResource3Func func(w http.ResponseWriter, r *http.Request)
// calls tracks calls to the methods.
calls struct {
// CreateResource holds details about calls to the CreateResource method.
CreateResource []struct {
// W is the w argument value.
W http.ResponseWriter
// R is the r argument value.
R *http.Request
}
// CreateResource2 holds details about calls to the CreateResource2 method.
CreateResource2 []struct {
// W is the w argument value.
W http.ResponseWriter
// R is the r argument value.
R *http.Request
}
// GetEveryTypeOptional holds details about calls to the GetEveryTypeOptional method.
GetEveryTypeOptional []struct {
// W is the w argument value.
W http.ResponseWriter
// R is the r argument value.
R *http.Request
}
// GetReservedKeyword holds details about calls to the GetReservedKeyword method.
GetReservedKeyword []struct {
// W is the w argument value.
W http.ResponseWriter
// R is the r argument value.
R *http.Request
}
// GetResponseWithReference holds details about calls to the GetResponseWithReference method.
GetResponseWithReference []struct {
// W is the w argument value.
W http.ResponseWriter
// R is the r argument value.
R *http.Request
}
// GetSimple holds details about calls to the GetSimple method.
GetSimple []struct {
// W is the w argument value.
W http.ResponseWriter
// R is the r argument value.
R *http.Request
}
// GetWithArgs holds details about calls to the GetWithArgs method.
GetWithArgs []struct {
// W is the w argument value.
W http.ResponseWriter
// R is the r argument value.
R *http.Request
}
// GetWithContentType holds details about calls to the GetWithContentType method.
GetWithContentType []struct {
// W is the w argument value.
W http.ResponseWriter
// R is the r argument value.
R *http.Request
}
// GetWithReferences holds details about calls to the GetWithReferences method.
GetWithReferences []struct {
// W is the w argument value.
W http.ResponseWriter
// R is the r argument value.
R *http.Request
}
// UpdateResource3 holds details about calls to the UpdateResource3 method.
UpdateResource3 []struct {
// W is the w argument value.
W http.ResponseWriter
// R is the r argument value.
R *http.Request
}
}
}
// CreateResource calls CreateResourceFunc.
func (mock *ServerInterfaceMock) CreateResource(w http.ResponseWriter, r *http.Request) {
if mock.CreateResourceFunc == nil {
panic("ServerInterfaceMock.CreateResourceFunc: method is nil but ServerInterface.CreateResource was just called")
}
callInfo := struct {
W http.ResponseWriter
R *http.Request
}{
W: w,
R: r,
}
lockServerInterfaceMockCreateResource.Lock()
mock.calls.CreateResource = append(mock.calls.CreateResource, callInfo)
lockServerInterfaceMockCreateResource.Unlock()
mock.CreateResourceFunc(w, r)
}
// CreateResourceCalls gets all the calls that were made to CreateResource.
// Check the length with:
// len(mockedServerInterface.CreateResourceCalls())
func (mock *ServerInterfaceMock) CreateResourceCalls() []struct {
W http.ResponseWriter
R *http.Request
} {
var calls []struct {
W http.ResponseWriter
R *http.Request
}
lockServerInterfaceMockCreateResource.RLock()
calls = mock.calls.CreateResource
lockServerInterfaceMockCreateResource.RUnlock()
return calls
}
// CreateResource2 calls CreateResource2Func.
func (mock *ServerInterfaceMock) CreateResource2(w http.ResponseWriter, r *http.Request) {
if mock.CreateResource2Func == nil {
panic("ServerInterfaceMock.CreateResource2Func: method is nil but ServerInterface.CreateResource2 was just called")
}
callInfo := struct {
W http.ResponseWriter
R *http.Request
}{
W: w,
R: r,
}
lockServerInterfaceMockCreateResource2.Lock()
mock.calls.CreateResource2 = append(mock.calls.CreateResource2, callInfo)
lockServerInterfaceMockCreateResource2.Unlock()
mock.CreateResource2Func(w, r)
}
// CreateResource2Calls gets all the calls that were made to CreateResource2.
// Check the length with:
// len(mockedServerInterface.CreateResource2Calls())
func (mock *ServerInterfaceMock) CreateResource2Calls() []struct {
W http.ResponseWriter
R *http.Request
} {
var calls []struct {
W http.ResponseWriter
R *http.Request
}
lockServerInterfaceMockCreateResource2.RLock()
calls = mock.calls.CreateResource2
lockServerInterfaceMockCreateResource2.RUnlock()
return calls
}
// GetEveryTypeOptional calls GetEveryTypeOptionalFunc.
func (mock *ServerInterfaceMock) GetEveryTypeOptional(w http.ResponseWriter, r *http.Request) {
if mock.GetEveryTypeOptionalFunc == nil {
panic("ServerInterfaceMock.GetEveryTypeOptionalFunc: method is nil but ServerInterface.GetEveryTypeOptional was just called")
}
callInfo := struct {
W http.ResponseWriter
R *http.Request
}{
W: w,
R: r,
}
lockServerInterfaceMockGetEveryTypeOptional.Lock()
mock.calls.GetEveryTypeOptional = append(mock.calls.GetEveryTypeOptional, callInfo)
lockServerInterfaceMockGetEveryTypeOptional.Unlock()
mock.GetEveryTypeOptionalFunc(w, r)
}
// GetEveryTypeOptionalCalls gets all the calls that were made to GetEveryTypeOptional.
// Check the length with:
// len(mockedServerInterface.GetEveryTypeOptionalCalls())
func (mock *ServerInterfaceMock) GetEveryTypeOptionalCalls() []struct {
W http.ResponseWriter
R *http.Request
} {
var calls []struct {
W http.ResponseWriter
R *http.Request
}
lockServerInterfaceMockGetEveryTypeOptional.RLock()
calls = mock.calls.GetEveryTypeOptional
lockServerInterfaceMockGetEveryTypeOptional.RUnlock()
return calls
}
// GetReservedKeyword calls GetReservedKeywordFunc.
func (mock *ServerInterfaceMock) GetReservedKeyword(w http.ResponseWriter, r *http.Request) {
if mock.GetReservedKeywordFunc == nil {
panic("ServerInterfaceMock.GetReservedKeywordFunc: method is nil but ServerInterface.GetReservedKeyword was just called")
}
callInfo := struct {
W http.ResponseWriter
R *http.Request
}{
W: w,
R: r,
}
lockServerInterfaceMockGetReservedKeyword.Lock()
mock.calls.GetReservedKeyword = append(mock.calls.GetReservedKeyword, callInfo)
lockServerInterfaceMockGetReservedKeyword.Unlock()
mock.GetReservedKeywordFunc(w, r)
}
// GetReservedKeywordCalls gets all the calls that were made to GetReservedKeyword.
// Check the length with:
// len(mockedServerInterface.GetReservedKeywordCalls())
func (mock *ServerInterfaceMock) GetReservedKeywordCalls() []struct {
W http.ResponseWriter
R *http.Request
} {
var calls []struct {
W http.ResponseWriter
R *http.Request
}
lockServerInterfaceMockGetReservedKeyword.RLock()
calls = mock.calls.GetReservedKeyword
lockServerInterfaceMockGetReservedKeyword.RUnlock()
return calls
}
// GetResponseWithReference calls GetResponseWithReferenceFunc.
func (mock *ServerInterfaceMock) GetResponseWithReference(w http.ResponseWriter, r *http.Request) {
if mock.GetResponseWithReferenceFunc == nil {
panic("ServerInterfaceMock.GetResponseWithReferenceFunc: method is nil but ServerInterface.GetResponseWithReference was just called")
}
callInfo := struct {
W http.ResponseWriter
R *http.Request
}{
W: w,
R: r,
}
lockServerInterfaceMockGetResponseWithReference.Lock()
mock.calls.GetResponseWithReference = append(mock.calls.GetResponseWithReference, callInfo)
lockServerInterfaceMockGetResponseWithReference.Unlock()
mock.GetResponseWithReferenceFunc(w, r)
}
// GetResponseWithReferenceCalls gets all the calls that were made to GetResponseWithReference.
// Check the length with:
// len(mockedServerInterface.GetResponseWithReferenceCalls())
func (mock *ServerInterfaceMock) GetResponseWithReferenceCalls() []struct {
W http.ResponseWriter
R *http.Request
} {
var calls []struct {
W http.ResponseWriter
R *http.Request
}
lockServerInterfaceMockGetResponseWithReference.RLock()
calls = mock.calls.GetResponseWithReference
lockServerInterfaceMockGetResponseWithReference.RUnlock()
return calls
}
// GetSimple calls GetSimpleFunc.
func (mock *ServerInterfaceMock) GetSimple(w http.ResponseWriter, r *http.Request) {
if mock.GetSimpleFunc == nil {
panic("ServerInterfaceMock.GetSimpleFunc: method is nil but ServerInterface.GetSimple was just called")
}
callInfo := struct {
W http.ResponseWriter
R *http.Request
}{
W: w,
R: r,
}
lockServerInterfaceMockGetSimple.Lock()
mock.calls.GetSimple = append(mock.calls.GetSimple, callInfo)
lockServerInterfaceMockGetSimple.Unlock()
mock.GetSimpleFunc(w, r)
}
// GetSimpleCalls gets all the calls that were made to GetSimple.
// Check the length with:
// len(mockedServerInterface.GetSimpleCalls())
func (mock *ServerInterfaceMock) GetSimpleCalls() []struct {
W http.ResponseWriter
R *http.Request
} {
var calls []struct {
W http.ResponseWriter
R *http.Request
}
lockServerInterfaceMockGetSimple.RLock()
calls = mock.calls.GetSimple
lockServerInterfaceMockGetSimple.RUnlock()
return calls
}
// GetWithArgs calls GetWithArgsFunc.
func (mock *ServerInterfaceMock) GetWithArgs(w http.ResponseWriter, r *http.Request) {
if mock.GetWithArgsFunc == nil {
panic("ServerInterfaceMock.GetWithArgsFunc: method is nil but ServerInterface.GetWithArgs was just called")
}
callInfo := struct {
W http.ResponseWriter
R *http.Request
}{
W: w,
R: r,
}
lockServerInterfaceMockGetWithArgs.Lock()
mock.calls.GetWithArgs = append(mock.calls.GetWithArgs, callInfo)
lockServerInterfaceMockGetWithArgs.Unlock()
mock.GetWithArgsFunc(w, r)
}
// GetWithArgsCalls gets all the calls that were made to GetWithArgs.
// Check the length with:
// len(mockedServerInterface.GetWithArgsCalls())
func (mock *ServerInterfaceMock) GetWithArgsCalls() []struct {
W http.ResponseWriter
R *http.Request
} {
var calls []struct {
W http.ResponseWriter
R *http.Request
}
lockServerInterfaceMockGetWithArgs.RLock()
calls = mock.calls.GetWithArgs
lockServerInterfaceMockGetWithArgs.RUnlock()
return calls
}
// GetWithContentType calls GetWithContentTypeFunc.
func (mock *ServerInterfaceMock) GetWithContentType(w http.ResponseWriter, r *http.Request) {
if mock.GetWithContentTypeFunc == nil {
panic("ServerInterfaceMock.GetWithContentTypeFunc: method is nil but ServerInterface.GetWithContentType was just called")
}
callInfo := struct {
W http.ResponseWriter
R *http.Request
}{
W: w,
R: r,
}
lockServerInterfaceMockGetWithContentType.Lock()
mock.calls.GetWithContentType = append(mock.calls.GetWithContentType, callInfo)
lockServerInterfaceMockGetWithContentType.Unlock()
mock.GetWithContentTypeFunc(w, r)
}
// GetWithContentTypeCalls gets all the calls that were made to GetWithContentType.
// Check the length with:
// len(mockedServerInterface.GetWithContentTypeCalls())
func (mock *ServerInterfaceMock) GetWithContentTypeCalls() []struct {
W http.ResponseWriter
R *http.Request
} {
var calls []struct {
W http.ResponseWriter
R *http.Request
}
lockServerInterfaceMockGetWithContentType.RLock()
calls = mock.calls.GetWithContentType
lockServerInterfaceMockGetWithContentType.RUnlock()
return calls
}
// GetWithReferences calls GetWithReferencesFunc.
func (mock *ServerInterfaceMock) GetWithReferences(w http.ResponseWriter, r *http.Request) {
if mock.GetWithReferencesFunc == nil {
panic("ServerInterfaceMock.GetWithReferencesFunc: method is nil but ServerInterface.GetWithReferences was just called")
}
callInfo := struct {
W http.ResponseWriter
R *http.Request
}{
W: w,
R: r,
}
lockServerInterfaceMockGetWithReferences.Lock()
mock.calls.GetWithReferences = append(mock.calls.GetWithReferences, callInfo)
lockServerInterfaceMockGetWithReferences.Unlock()
mock.GetWithReferencesFunc(w, r)
}
// GetWithReferencesCalls gets all the calls that were made to GetWithReferences.
// Check the length with:
// len(mockedServerInterface.GetWithReferencesCalls())
func (mock *ServerInterfaceMock) GetWithReferencesCalls() []struct {
W http.ResponseWriter
R *http.Request
} {
var calls []struct {
W http.ResponseWriter
R *http.Request
}
lockServerInterfaceMockGetWithReferences.RLock()
calls = mock.calls.GetWithReferences
lockServerInterfaceMockGetWithReferences.RUnlock()
return calls
}
// UpdateResource3 calls UpdateResource3Func.
func (mock *ServerInterfaceMock) UpdateResource3(w http.ResponseWriter, r *http.Request) {
if mock.UpdateResource3Func == nil {
panic("ServerInterfaceMock.UpdateResource3Func: method is nil but ServerInterface.UpdateResource3 was just called")
}
callInfo := struct {
W http.ResponseWriter
R *http.Request
}{
W: w,
R: r,
}
lockServerInterfaceMockUpdateResource3.Lock()
mock.calls.UpdateResource3 = append(mock.calls.UpdateResource3, callInfo)
lockServerInterfaceMockUpdateResource3.Unlock()
mock.UpdateResource3Func(w, r)
}
// UpdateResource3Calls gets all the calls that were made to UpdateResource3.
// Check the length with:
// len(mockedServerInterface.UpdateResource3Calls())
func (mock *ServerInterfaceMock) UpdateResource3Calls() []struct {
W http.ResponseWriter
R *http.Request
} {
var calls []struct {
W http.ResponseWriter
R *http.Request
}
lockServerInterfaceMockUpdateResource3.RLock()
calls = mock.calls.UpdateResource3
lockServerInterfaceMockUpdateResource3.RUnlock()
return calls
}