This repository was archived by the owner on Sep 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathmocks_temp.go
683 lines (601 loc) · 24.8 KB
/
mocks_temp.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
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
// Code generated by go-mockgen 1.3.7; DO NOT EDIT.
//
// This file was generated by running `sg generate` (or `go-mockgen`) at the root of
// this repository. To add additional mocks to this or another package, add a new entry
// to the mockgen.yaml file in the root of this repository.
package authz
import (
"context"
"net/netip"
"sync"
api "github.com/sourcegraph/sourcegraph/internal/api"
)
// MockSubRepoPermissionChecker is a mock implementation of the
// SubRepoPermissionChecker interface (from the package
// github.com/sourcegraph/sourcegraph/internal/authz) used for unit testing.
type MockSubRepoPermissionChecker struct {
// EnabledFunc is an instance of a mock function object controlling the
// behavior of the method Enabled.
EnabledFunc *SubRepoPermissionCheckerEnabledFunc
// EnabledForRepoFunc is an instance of a mock function object
// controlling the behavior of the method EnabledForRepo.
EnabledForRepoFunc *SubRepoPermissionCheckerEnabledForRepoFunc
// EnabledForRepoIDFunc is an instance of a mock function object
// controlling the behavior of the method EnabledForRepoID.
EnabledForRepoIDFunc *SubRepoPermissionCheckerEnabledForRepoIDFunc
// FilePermissionsFuncFunc is an instance of a mock function object
// controlling the behavior of the method FilePermissionsFunc.
FilePermissionsFuncFunc *SubRepoPermissionCheckerFilePermissionsFuncFunc
// PermissionsFunc is an instance of a mock function object controlling
// the behavior of the method Permissions.
PermissionsFunc *SubRepoPermissionCheckerPermissionsFunc
}
// NewMockSubRepoPermissionChecker creates a new mock of the
// SubRepoPermissionChecker interface. All methods return zero values for
// all results, unless overwritten.
func NewMockSubRepoPermissionChecker() *MockSubRepoPermissionChecker {
return &MockSubRepoPermissionChecker{
EnabledFunc: &SubRepoPermissionCheckerEnabledFunc{
defaultHook: func() (r0 bool) {
return
},
},
EnabledForRepoFunc: &SubRepoPermissionCheckerEnabledForRepoFunc{
defaultHook: func(context.Context, api.RepoName) (r0 bool, r1 error) {
return
},
},
EnabledForRepoIDFunc: &SubRepoPermissionCheckerEnabledForRepoIDFunc{
defaultHook: func(context.Context, api.RepoID) (r0 bool, r1 error) {
return
},
},
FilePermissionsFuncFunc: &SubRepoPermissionCheckerFilePermissionsFuncFunc{
defaultHook: func(context.Context, int32, api.RepoName) (r0 FilePermissionFunc, r1 error) {
return
},
},
PermissionsFunc: &SubRepoPermissionCheckerPermissionsFunc{
defaultHook: func(context.Context, int32, netip.Addr, RepoContent) (r0 Perms, r1 error) {
return
},
},
}
}
// NewStrictMockSubRepoPermissionChecker creates a new mock of the
// SubRepoPermissionChecker interface. All methods panic on invocation,
// unless overwritten.
func NewStrictMockSubRepoPermissionChecker() *MockSubRepoPermissionChecker {
return &MockSubRepoPermissionChecker{
EnabledFunc: &SubRepoPermissionCheckerEnabledFunc{
defaultHook: func() bool {
panic("unexpected invocation of MockSubRepoPermissionChecker.Enabled")
},
},
EnabledForRepoFunc: &SubRepoPermissionCheckerEnabledForRepoFunc{
defaultHook: func(context.Context, api.RepoName) (bool, error) {
panic("unexpected invocation of MockSubRepoPermissionChecker.EnabledForRepo")
},
},
EnabledForRepoIDFunc: &SubRepoPermissionCheckerEnabledForRepoIDFunc{
defaultHook: func(context.Context, api.RepoID) (bool, error) {
panic("unexpected invocation of MockSubRepoPermissionChecker.EnabledForRepoID")
},
},
FilePermissionsFuncFunc: &SubRepoPermissionCheckerFilePermissionsFuncFunc{
defaultHook: func(context.Context, int32, api.RepoName) (FilePermissionFunc, error) {
panic("unexpected invocation of MockSubRepoPermissionChecker.FilePermissionsFunc")
},
},
PermissionsFunc: &SubRepoPermissionCheckerPermissionsFunc{
defaultHook: func(context.Context, int32, netip.Addr, RepoContent) (Perms, error) {
panic("unexpected invocation of MockSubRepoPermissionChecker.Permissions")
},
},
}
}
// NewMockSubRepoPermissionCheckerFrom creates a new mock of the
// MockSubRepoPermissionChecker interface. All methods delegate to the given
// implementation, unless overwritten.
func NewMockSubRepoPermissionCheckerFrom(i SubRepoPermissionChecker) *MockSubRepoPermissionChecker {
return &MockSubRepoPermissionChecker{
EnabledFunc: &SubRepoPermissionCheckerEnabledFunc{
defaultHook: i.Enabled,
},
EnabledForRepoFunc: &SubRepoPermissionCheckerEnabledForRepoFunc{
defaultHook: i.EnabledForRepo,
},
EnabledForRepoIDFunc: &SubRepoPermissionCheckerEnabledForRepoIDFunc{
defaultHook: i.EnabledForRepoID,
},
FilePermissionsFuncFunc: &SubRepoPermissionCheckerFilePermissionsFuncFunc{
defaultHook: i.FilePermissionsFunc,
},
PermissionsFunc: &SubRepoPermissionCheckerPermissionsFunc{
defaultHook: i.Permissions,
},
}
}
// SubRepoPermissionCheckerEnabledFunc describes the behavior when the
// Enabled method of the parent MockSubRepoPermissionChecker instance is
// invoked.
type SubRepoPermissionCheckerEnabledFunc struct {
defaultHook func() bool
hooks []func() bool
history []SubRepoPermissionCheckerEnabledFuncCall
mutex sync.Mutex
}
// Enabled delegates to the next hook function in the queue and stores the
// parameter and result values of this invocation.
func (m *MockSubRepoPermissionChecker) Enabled() bool {
r0 := m.EnabledFunc.nextHook()()
m.EnabledFunc.appendCall(SubRepoPermissionCheckerEnabledFuncCall{r0})
return r0
}
// SetDefaultHook sets function that is called when the Enabled method of
// the parent MockSubRepoPermissionChecker instance is invoked and the hook
// queue is empty.
func (f *SubRepoPermissionCheckerEnabledFunc) SetDefaultHook(hook func() bool) {
f.defaultHook = hook
}
// PushHook adds a function to the end of hook queue. Each invocation of the
// Enabled method of the parent MockSubRepoPermissionChecker instance
// invokes the hook at the front of the queue and discards it. After the
// queue is empty, the default hook function is invoked for any future
// action.
func (f *SubRepoPermissionCheckerEnabledFunc) PushHook(hook func() bool) {
f.mutex.Lock()
f.hooks = append(f.hooks, hook)
f.mutex.Unlock()
}
// SetDefaultReturn calls SetDefaultHook with a function that returns the
// given values.
func (f *SubRepoPermissionCheckerEnabledFunc) SetDefaultReturn(r0 bool) {
f.SetDefaultHook(func() bool {
return r0
})
}
// PushReturn calls PushHook with a function that returns the given values.
func (f *SubRepoPermissionCheckerEnabledFunc) PushReturn(r0 bool) {
f.PushHook(func() bool {
return r0
})
}
func (f *SubRepoPermissionCheckerEnabledFunc) nextHook() func() bool {
f.mutex.Lock()
defer f.mutex.Unlock()
if len(f.hooks) == 0 {
return f.defaultHook
}
hook := f.hooks[0]
f.hooks = f.hooks[1:]
return hook
}
func (f *SubRepoPermissionCheckerEnabledFunc) appendCall(r0 SubRepoPermissionCheckerEnabledFuncCall) {
f.mutex.Lock()
f.history = append(f.history, r0)
f.mutex.Unlock()
}
// History returns a sequence of SubRepoPermissionCheckerEnabledFuncCall
// objects describing the invocations of this function.
func (f *SubRepoPermissionCheckerEnabledFunc) History() []SubRepoPermissionCheckerEnabledFuncCall {
f.mutex.Lock()
history := make([]SubRepoPermissionCheckerEnabledFuncCall, len(f.history))
copy(history, f.history)
f.mutex.Unlock()
return history
}
// SubRepoPermissionCheckerEnabledFuncCall is an object that describes an
// invocation of method Enabled on an instance of
// MockSubRepoPermissionChecker.
type SubRepoPermissionCheckerEnabledFuncCall struct {
// Result0 is the value of the 1st result returned from this method
// invocation.
Result0 bool
}
// Args returns an interface slice containing the arguments of this
// invocation.
func (c SubRepoPermissionCheckerEnabledFuncCall) Args() []interface{} {
return []interface{}{}
}
// Results returns an interface slice containing the results of this
// invocation.
func (c SubRepoPermissionCheckerEnabledFuncCall) Results() []interface{} {
return []interface{}{c.Result0}
}
// SubRepoPermissionCheckerEnabledForRepoFunc describes the behavior when
// the EnabledForRepo method of the parent MockSubRepoPermissionChecker
// instance is invoked.
type SubRepoPermissionCheckerEnabledForRepoFunc struct {
defaultHook func(context.Context, api.RepoName) (bool, error)
hooks []func(context.Context, api.RepoName) (bool, error)
history []SubRepoPermissionCheckerEnabledForRepoFuncCall
mutex sync.Mutex
}
// EnabledForRepo delegates to the next hook function in the queue and
// stores the parameter and result values of this invocation.
func (m *MockSubRepoPermissionChecker) EnabledForRepo(v0 context.Context, v1 api.RepoName) (bool, error) {
r0, r1 := m.EnabledForRepoFunc.nextHook()(v0, v1)
m.EnabledForRepoFunc.appendCall(SubRepoPermissionCheckerEnabledForRepoFuncCall{v0, v1, r0, r1})
return r0, r1
}
// SetDefaultHook sets function that is called when the EnabledForRepo
// method of the parent MockSubRepoPermissionChecker instance is invoked and
// the hook queue is empty.
func (f *SubRepoPermissionCheckerEnabledForRepoFunc) SetDefaultHook(hook func(context.Context, api.RepoName) (bool, error)) {
f.defaultHook = hook
}
// PushHook adds a function to the end of hook queue. Each invocation of the
// EnabledForRepo method of the parent MockSubRepoPermissionChecker instance
// invokes the hook at the front of the queue and discards it. After the
// queue is empty, the default hook function is invoked for any future
// action.
func (f *SubRepoPermissionCheckerEnabledForRepoFunc) PushHook(hook func(context.Context, api.RepoName) (bool, error)) {
f.mutex.Lock()
f.hooks = append(f.hooks, hook)
f.mutex.Unlock()
}
// SetDefaultReturn calls SetDefaultHook with a function that returns the
// given values.
func (f *SubRepoPermissionCheckerEnabledForRepoFunc) SetDefaultReturn(r0 bool, r1 error) {
f.SetDefaultHook(func(context.Context, api.RepoName) (bool, error) {
return r0, r1
})
}
// PushReturn calls PushHook with a function that returns the given values.
func (f *SubRepoPermissionCheckerEnabledForRepoFunc) PushReturn(r0 bool, r1 error) {
f.PushHook(func(context.Context, api.RepoName) (bool, error) {
return r0, r1
})
}
func (f *SubRepoPermissionCheckerEnabledForRepoFunc) nextHook() func(context.Context, api.RepoName) (bool, error) {
f.mutex.Lock()
defer f.mutex.Unlock()
if len(f.hooks) == 0 {
return f.defaultHook
}
hook := f.hooks[0]
f.hooks = f.hooks[1:]
return hook
}
func (f *SubRepoPermissionCheckerEnabledForRepoFunc) appendCall(r0 SubRepoPermissionCheckerEnabledForRepoFuncCall) {
f.mutex.Lock()
f.history = append(f.history, r0)
f.mutex.Unlock()
}
// History returns a sequence of
// SubRepoPermissionCheckerEnabledForRepoFuncCall objects describing the
// invocations of this function.
func (f *SubRepoPermissionCheckerEnabledForRepoFunc) History() []SubRepoPermissionCheckerEnabledForRepoFuncCall {
f.mutex.Lock()
history := make([]SubRepoPermissionCheckerEnabledForRepoFuncCall, len(f.history))
copy(history, f.history)
f.mutex.Unlock()
return history
}
// SubRepoPermissionCheckerEnabledForRepoFuncCall is an object that
// describes an invocation of method EnabledForRepo on an instance of
// MockSubRepoPermissionChecker.
type SubRepoPermissionCheckerEnabledForRepoFuncCall struct {
// Arg0 is the value of the 1st argument passed to this method
// invocation.
Arg0 context.Context
// Arg1 is the value of the 2nd argument passed to this method
// invocation.
Arg1 api.RepoName
// Result0 is the value of the 1st result returned from this method
// invocation.
Result0 bool
// Result1 is the value of the 2nd result returned from this method
// invocation.
Result1 error
}
// Args returns an interface slice containing the arguments of this
// invocation.
func (c SubRepoPermissionCheckerEnabledForRepoFuncCall) Args() []interface{} {
return []interface{}{c.Arg0, c.Arg1}
}
// Results returns an interface slice containing the results of this
// invocation.
func (c SubRepoPermissionCheckerEnabledForRepoFuncCall) Results() []interface{} {
return []interface{}{c.Result0, c.Result1}
}
// SubRepoPermissionCheckerEnabledForRepoIDFunc describes the behavior when
// the EnabledForRepoID method of the parent MockSubRepoPermissionChecker
// instance is invoked.
type SubRepoPermissionCheckerEnabledForRepoIDFunc struct {
defaultHook func(context.Context, api.RepoID) (bool, error)
hooks []func(context.Context, api.RepoID) (bool, error)
history []SubRepoPermissionCheckerEnabledForRepoIDFuncCall
mutex sync.Mutex
}
// EnabledForRepoID delegates to the next hook function in the queue and
// stores the parameter and result values of this invocation.
func (m *MockSubRepoPermissionChecker) EnabledForRepoID(v0 context.Context, v1 api.RepoID) (bool, error) {
r0, r1 := m.EnabledForRepoIDFunc.nextHook()(v0, v1)
m.EnabledForRepoIDFunc.appendCall(SubRepoPermissionCheckerEnabledForRepoIDFuncCall{v0, v1, r0, r1})
return r0, r1
}
// SetDefaultHook sets function that is called when the EnabledForRepoID
// method of the parent MockSubRepoPermissionChecker instance is invoked and
// the hook queue is empty.
func (f *SubRepoPermissionCheckerEnabledForRepoIDFunc) SetDefaultHook(hook func(context.Context, api.RepoID) (bool, error)) {
f.defaultHook = hook
}
// PushHook adds a function to the end of hook queue. Each invocation of the
// EnabledForRepoID method of the parent MockSubRepoPermissionChecker
// instance invokes the hook at the front of the queue and discards it.
// After the queue is empty, the default hook function is invoked for any
// future action.
func (f *SubRepoPermissionCheckerEnabledForRepoIDFunc) PushHook(hook func(context.Context, api.RepoID) (bool, error)) {
f.mutex.Lock()
f.hooks = append(f.hooks, hook)
f.mutex.Unlock()
}
// SetDefaultReturn calls SetDefaultHook with a function that returns the
// given values.
func (f *SubRepoPermissionCheckerEnabledForRepoIDFunc) SetDefaultReturn(r0 bool, r1 error) {
f.SetDefaultHook(func(context.Context, api.RepoID) (bool, error) {
return r0, r1
})
}
// PushReturn calls PushHook with a function that returns the given values.
func (f *SubRepoPermissionCheckerEnabledForRepoIDFunc) PushReturn(r0 bool, r1 error) {
f.PushHook(func(context.Context, api.RepoID) (bool, error) {
return r0, r1
})
}
func (f *SubRepoPermissionCheckerEnabledForRepoIDFunc) nextHook() func(context.Context, api.RepoID) (bool, error) {
f.mutex.Lock()
defer f.mutex.Unlock()
if len(f.hooks) == 0 {
return f.defaultHook
}
hook := f.hooks[0]
f.hooks = f.hooks[1:]
return hook
}
func (f *SubRepoPermissionCheckerEnabledForRepoIDFunc) appendCall(r0 SubRepoPermissionCheckerEnabledForRepoIDFuncCall) {
f.mutex.Lock()
f.history = append(f.history, r0)
f.mutex.Unlock()
}
// History returns a sequence of
// SubRepoPermissionCheckerEnabledForRepoIDFuncCall objects describing the
// invocations of this function.
func (f *SubRepoPermissionCheckerEnabledForRepoIDFunc) History() []SubRepoPermissionCheckerEnabledForRepoIDFuncCall {
f.mutex.Lock()
history := make([]SubRepoPermissionCheckerEnabledForRepoIDFuncCall, len(f.history))
copy(history, f.history)
f.mutex.Unlock()
return history
}
// SubRepoPermissionCheckerEnabledForRepoIDFuncCall is an object that
// describes an invocation of method EnabledForRepoID on an instance of
// MockSubRepoPermissionChecker.
type SubRepoPermissionCheckerEnabledForRepoIDFuncCall struct {
// Arg0 is the value of the 1st argument passed to this method
// invocation.
Arg0 context.Context
// Arg1 is the value of the 2nd argument passed to this method
// invocation.
Arg1 api.RepoID
// Result0 is the value of the 1st result returned from this method
// invocation.
Result0 bool
// Result1 is the value of the 2nd result returned from this method
// invocation.
Result1 error
}
// Args returns an interface slice containing the arguments of this
// invocation.
func (c SubRepoPermissionCheckerEnabledForRepoIDFuncCall) Args() []interface{} {
return []interface{}{c.Arg0, c.Arg1}
}
// Results returns an interface slice containing the results of this
// invocation.
func (c SubRepoPermissionCheckerEnabledForRepoIDFuncCall) Results() []interface{} {
return []interface{}{c.Result0, c.Result1}
}
// SubRepoPermissionCheckerFilePermissionsFuncFunc describes the behavior
// when the FilePermissionsFunc method of the parent
// MockSubRepoPermissionChecker instance is invoked.
type SubRepoPermissionCheckerFilePermissionsFuncFunc struct {
defaultHook func(context.Context, int32, api.RepoName) (FilePermissionFunc, error)
hooks []func(context.Context, int32, api.RepoName) (FilePermissionFunc, error)
history []SubRepoPermissionCheckerFilePermissionsFuncFuncCall
mutex sync.Mutex
}
// FilePermissionsFunc delegates to the next hook function in the queue and
// stores the parameter and result values of this invocation.
func (m *MockSubRepoPermissionChecker) FilePermissionsFunc(v0 context.Context, v1 int32, v2 api.RepoName) (FilePermissionFunc, error) {
r0, r1 := m.FilePermissionsFuncFunc.nextHook()(v0, v1, v2)
m.FilePermissionsFuncFunc.appendCall(SubRepoPermissionCheckerFilePermissionsFuncFuncCall{v0, v1, v2, r0, r1})
return r0, r1
}
// SetDefaultHook sets function that is called when the FilePermissionsFunc
// method of the parent MockSubRepoPermissionChecker instance is invoked and
// the hook queue is empty.
func (f *SubRepoPermissionCheckerFilePermissionsFuncFunc) SetDefaultHook(hook func(context.Context, int32, api.RepoName) (FilePermissionFunc, error)) {
f.defaultHook = hook
}
// PushHook adds a function to the end of hook queue. Each invocation of the
// FilePermissionsFunc method of the parent MockSubRepoPermissionChecker
// instance invokes the hook at the front of the queue and discards it.
// After the queue is empty, the default hook function is invoked for any
// future action.
func (f *SubRepoPermissionCheckerFilePermissionsFuncFunc) PushHook(hook func(context.Context, int32, api.RepoName) (FilePermissionFunc, error)) {
f.mutex.Lock()
f.hooks = append(f.hooks, hook)
f.mutex.Unlock()
}
// SetDefaultReturn calls SetDefaultHook with a function that returns the
// given values.
func (f *SubRepoPermissionCheckerFilePermissionsFuncFunc) SetDefaultReturn(r0 FilePermissionFunc, r1 error) {
f.SetDefaultHook(func(context.Context, int32, api.RepoName) (FilePermissionFunc, error) {
return r0, r1
})
}
// PushReturn calls PushHook with a function that returns the given values.
func (f *SubRepoPermissionCheckerFilePermissionsFuncFunc) PushReturn(r0 FilePermissionFunc, r1 error) {
f.PushHook(func(context.Context, int32, api.RepoName) (FilePermissionFunc, error) {
return r0, r1
})
}
func (f *SubRepoPermissionCheckerFilePermissionsFuncFunc) nextHook() func(context.Context, int32, api.RepoName) (FilePermissionFunc, error) {
f.mutex.Lock()
defer f.mutex.Unlock()
if len(f.hooks) == 0 {
return f.defaultHook
}
hook := f.hooks[0]
f.hooks = f.hooks[1:]
return hook
}
func (f *SubRepoPermissionCheckerFilePermissionsFuncFunc) appendCall(r0 SubRepoPermissionCheckerFilePermissionsFuncFuncCall) {
f.mutex.Lock()
f.history = append(f.history, r0)
f.mutex.Unlock()
}
// History returns a sequence of
// SubRepoPermissionCheckerFilePermissionsFuncFuncCall objects describing
// the invocations of this function.
func (f *SubRepoPermissionCheckerFilePermissionsFuncFunc) History() []SubRepoPermissionCheckerFilePermissionsFuncFuncCall {
f.mutex.Lock()
history := make([]SubRepoPermissionCheckerFilePermissionsFuncFuncCall, len(f.history))
copy(history, f.history)
f.mutex.Unlock()
return history
}
// SubRepoPermissionCheckerFilePermissionsFuncFuncCall is an object that
// describes an invocation of method FilePermissionsFunc on an instance of
// MockSubRepoPermissionChecker.
type SubRepoPermissionCheckerFilePermissionsFuncFuncCall struct {
// Arg0 is the value of the 1st argument passed to this method
// invocation.
Arg0 context.Context
// Arg1 is the value of the 2nd argument passed to this method
// invocation.
Arg1 int32
// Arg2 is the value of the 3rd argument passed to this method
// invocation.
Arg2 api.RepoName
// Result0 is the value of the 1st result returned from this method
// invocation.
Result0 FilePermissionFunc
// Result1 is the value of the 2nd result returned from this method
// invocation.
Result1 error
}
// Args returns an interface slice containing the arguments of this
// invocation.
func (c SubRepoPermissionCheckerFilePermissionsFuncFuncCall) Args() []interface{} {
return []interface{}{c.Arg0, c.Arg1, c.Arg2}
}
// Results returns an interface slice containing the results of this
// invocation.
func (c SubRepoPermissionCheckerFilePermissionsFuncFuncCall) Results() []interface{} {
return []interface{}{c.Result0, c.Result1}
}
// SubRepoPermissionCheckerPermissionsFunc describes the behavior when the
// Permissions method of the parent MockSubRepoPermissionChecker instance is
// invoked.
type SubRepoPermissionCheckerPermissionsFunc struct {
defaultHook func(context.Context, int32, netip.Addr, RepoContent) (Perms, error)
hooks []func(context.Context, int32, netip.Addr, RepoContent) (Perms, error)
history []SubRepoPermissionCheckerPermissionsFuncCall
mutex sync.Mutex
}
// Permissions delegates to the next hook function in the queue and stores
// the parameter and result values of this invocation.
func (m *MockSubRepoPermissionChecker) Permissions(v0 context.Context, v1 int32, v2 netip.Addr, v3 RepoContent) (Perms, error) {
r0, r1 := m.PermissionsFunc.nextHook()(v0, v1, v2, v3)
m.PermissionsFunc.appendCall(SubRepoPermissionCheckerPermissionsFuncCall{v0, v1, v2, v3, r0, r1})
return r0, r1
}
// SetDefaultHook sets function that is called when the Permissions method
// of the parent MockSubRepoPermissionChecker instance is invoked and the
// hook queue is empty.
func (f *SubRepoPermissionCheckerPermissionsFunc) SetDefaultHook(hook func(context.Context, int32, netip.Addr, RepoContent) (Perms, error)) {
f.defaultHook = hook
}
// PushHook adds a function to the end of hook queue. Each invocation of the
// Permissions method of the parent MockSubRepoPermissionChecker instance
// invokes the hook at the front of the queue and discards it. After the
// queue is empty, the default hook function is invoked for any future
// action.
func (f *SubRepoPermissionCheckerPermissionsFunc) PushHook(hook func(context.Context, int32, netip.Addr, RepoContent) (Perms, error)) {
f.mutex.Lock()
f.hooks = append(f.hooks, hook)
f.mutex.Unlock()
}
// SetDefaultReturn calls SetDefaultHook with a function that returns the
// given values.
func (f *SubRepoPermissionCheckerPermissionsFunc) SetDefaultReturn(r0 Perms, r1 error) {
f.SetDefaultHook(func(context.Context, int32, netip.Addr, RepoContent) (Perms, error) {
return r0, r1
})
}
// PushReturn calls PushHook with a function that returns the given values.
func (f *SubRepoPermissionCheckerPermissionsFunc) PushReturn(r0 Perms, r1 error) {
f.PushHook(func(context.Context, int32, netip.Addr, RepoContent) (Perms, error) {
return r0, r1
})
}
func (f *SubRepoPermissionCheckerPermissionsFunc) nextHook() func(context.Context, int32, netip.Addr, RepoContent) (Perms, error) {
f.mutex.Lock()
defer f.mutex.Unlock()
if len(f.hooks) == 0 {
return f.defaultHook
}
hook := f.hooks[0]
f.hooks = f.hooks[1:]
return hook
}
func (f *SubRepoPermissionCheckerPermissionsFunc) appendCall(r0 SubRepoPermissionCheckerPermissionsFuncCall) {
f.mutex.Lock()
f.history = append(f.history, r0)
f.mutex.Unlock()
}
// History returns a sequence of SubRepoPermissionCheckerPermissionsFuncCall
// objects describing the invocations of this function.
func (f *SubRepoPermissionCheckerPermissionsFunc) History() []SubRepoPermissionCheckerPermissionsFuncCall {
f.mutex.Lock()
history := make([]SubRepoPermissionCheckerPermissionsFuncCall, len(f.history))
copy(history, f.history)
f.mutex.Unlock()
return history
}
// SubRepoPermissionCheckerPermissionsFuncCall is an object that describes
// an invocation of method Permissions on an instance of
// MockSubRepoPermissionChecker.
type SubRepoPermissionCheckerPermissionsFuncCall struct {
// Arg0 is the value of the 1st argument passed to this method
// invocation.
Arg0 context.Context
// Arg1 is the value of the 2nd argument passed to this method
// invocation.
Arg1 int32
// Arg2 is the value of the 3rd argument passed to this method
// invocation.
Arg2 netip.Addr
// Arg3 is the value of the 4th argument passed to this method
// invocation.
Arg3 RepoContent
// Result0 is the value of the 1st result returned from this method
// invocation.
Result0 Perms
// Result1 is the value of the 2nd result returned from this method
// invocation.
Result1 error
}
// Args returns an interface slice containing the arguments of this
// invocation.
func (c SubRepoPermissionCheckerPermissionsFuncCall) Args() []interface{} {
return []interface{}{c.Arg0, c.Arg1, c.Arg2, c.Arg3}
}
// Results returns an interface slice containing the results of this
// invocation.
func (c SubRepoPermissionCheckerPermissionsFuncCall) Results() []interface{} {
return []interface{}{c.Result0, c.Result1}
}