-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmock_imageRegistry_test.go
More file actions
96 lines (77 loc) · 2.81 KB
/
mock_imageRegistry_test.go
File metadata and controls
96 lines (77 loc) · 2.81 KB
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
// Code generated by mockery v2.53.6. DO NOT EDIT.
package main
import (
context "context"
v1 "github.com/google/go-containerregistry/pkg/v1"
mock "github.com/stretchr/testify/mock"
)
// mockImageRegistry is an autogenerated mock type for the imageRegistry type
type mockImageRegistry struct {
mock.Mock
}
type mockImageRegistry_Expecter struct {
mock *mock.Mock
}
func (_m *mockImageRegistry) EXPECT() *mockImageRegistry_Expecter {
return &mockImageRegistry_Expecter{mock: &_m.Mock}
}
// PullImageConfig provides a mock function with given fields: ctx, image
func (_m *mockImageRegistry) PullImageConfig(ctx context.Context, image string) (*v1.ConfigFile, error) {
ret := _m.Called(ctx, image)
if len(ret) == 0 {
panic("no return value specified for PullImageConfig")
}
var r0 *v1.ConfigFile
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, string) (*v1.ConfigFile, error)); ok {
return rf(ctx, image)
}
if rf, ok := ret.Get(0).(func(context.Context, string) *v1.ConfigFile); ok {
r0 = rf(ctx, image)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*v1.ConfigFile)
}
}
if rf, ok := ret.Get(1).(func(context.Context, string) error); ok {
r1 = rf(ctx, image)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// mockImageRegistry_PullImageConfig_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'PullImageConfig'
type mockImageRegistry_PullImageConfig_Call struct {
*mock.Call
}
// PullImageConfig is a helper method to define mock.On call
// - ctx context.Context
// - image string
func (_e *mockImageRegistry_Expecter) PullImageConfig(ctx interface{}, image interface{}) *mockImageRegistry_PullImageConfig_Call {
return &mockImageRegistry_PullImageConfig_Call{Call: _e.mock.On("PullImageConfig", ctx, image)}
}
func (_c *mockImageRegistry_PullImageConfig_Call) Run(run func(ctx context.Context, image string)) *mockImageRegistry_PullImageConfig_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(context.Context), args[1].(string))
})
return _c
}
func (_c *mockImageRegistry_PullImageConfig_Call) Return(_a0 *v1.ConfigFile, _a1 error) *mockImageRegistry_PullImageConfig_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *mockImageRegistry_PullImageConfig_Call) RunAndReturn(run func(context.Context, string) (*v1.ConfigFile, error)) *mockImageRegistry_PullImageConfig_Call {
_c.Call.Return(run)
return _c
}
// newMockImageRegistry creates a new instance of mockImageRegistry. 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 newMockImageRegistry(t interface {
mock.TestingT
Cleanup(func())
}) *mockImageRegistry {
mock := &mockImageRegistry{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}