-
Notifications
You must be signed in to change notification settings - Fork 43
/
function.go
108 lines (92 loc) · 3.89 KB
/
function.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
// Code generated by MockGen. DO NOT EDIT.
// Source: github.com/baetyl/baetyl-cloud/v2/service (interfaces: FunctionService)
// Package service is a generated GoMock package.
package service
import (
models "github.com/baetyl/baetyl-cloud/v2/models"
gomock "github.com/golang/mock/gomock"
reflect "reflect"
)
// MockFunctionService is a mock of FunctionService interface
type MockFunctionService struct {
ctrl *gomock.Controller
recorder *MockFunctionServiceMockRecorder
}
// MockFunctionServiceMockRecorder is the mock recorder for MockFunctionService
type MockFunctionServiceMockRecorder struct {
mock *MockFunctionService
}
// NewMockFunctionService creates a new mock instance
func NewMockFunctionService(ctrl *gomock.Controller) *MockFunctionService {
mock := &MockFunctionService{ctrl: ctrl}
mock.recorder = &MockFunctionServiceMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use
func (m *MockFunctionService) EXPECT() *MockFunctionServiceMockRecorder {
return m.recorder
}
// GetFunction mocks base method
func (m *MockFunctionService) GetFunction(arg0, arg1, arg2, arg3 string) (*models.Function, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetFunction", arg0, arg1, arg2, arg3)
ret0, _ := ret[0].(*models.Function)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// GetFunction indicates an expected call of GetFunction
func (mr *MockFunctionServiceMockRecorder) GetFunction(arg0, arg1, arg2, arg3 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetFunction", reflect.TypeOf((*MockFunctionService)(nil).GetFunction), arg0, arg1, arg2, arg3)
}
// List mocks base method
func (m *MockFunctionService) List(arg0, arg1 string) ([]models.Function, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "List", arg0, arg1)
ret0, _ := ret[0].([]models.Function)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// List indicates an expected call of List
func (mr *MockFunctionServiceMockRecorder) List(arg0, arg1 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "List", reflect.TypeOf((*MockFunctionService)(nil).List), arg0, arg1)
}
// ListFunctionVersions mocks base method
func (m *MockFunctionService) ListFunctionVersions(arg0, arg1, arg2 string) ([]models.Function, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "ListFunctionVersions", arg0, arg1, arg2)
ret0, _ := ret[0].([]models.Function)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// ListFunctionVersions indicates an expected call of ListFunctionVersions
func (mr *MockFunctionServiceMockRecorder) ListFunctionVersions(arg0, arg1, arg2 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListFunctionVersions", reflect.TypeOf((*MockFunctionService)(nil).ListFunctionVersions), arg0, arg1, arg2)
}
// ListRuntimes mocks base method
func (m *MockFunctionService) ListRuntimes() (map[string]string, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "ListRuntimes")
ret0, _ := ret[0].(map[string]string)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// ListRuntimes indicates an expected call of ListRuntimes
func (mr *MockFunctionServiceMockRecorder) ListRuntimes() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListRuntimes", reflect.TypeOf((*MockFunctionService)(nil).ListRuntimes))
}
// ListSources mocks base method
func (m *MockFunctionService) ListSources() []models.FunctionSource {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "ListSources")
ret0, _ := ret[0].([]models.FunctionSource)
return ret0
}
// ListSources indicates an expected call of ListSources
func (mr *MockFunctionServiceMockRecorder) ListSources() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListSources", reflect.TypeOf((*MockFunctionService)(nil).ListSources))
}