forked from uber/cadence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clientBean_mock.go
231 lines (194 loc) · 8.69 KB
/
clientBean_mock.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
// The MIT License (MIT)
// Copyright (c) 2017-2020 Uber Technologies Inc.
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
// Code generated by MockGen. DO NOT EDIT.
// Source: clientBean.go
// Package client is a generated GoMock package.
package client
import (
reflect "reflect"
gomock "github.com/golang/mock/gomock"
yarpc "go.uber.org/yarpc"
admin "github.com/uber/cadence/client/admin"
frontend "github.com/uber/cadence/client/frontend"
history "github.com/uber/cadence/client/history"
matching "github.com/uber/cadence/client/matching"
)
// MockBean is a mock of Bean interface
type MockBean struct {
ctrl *gomock.Controller
recorder *MockBeanMockRecorder
}
// MockBeanMockRecorder is the mock recorder for MockBean
type MockBeanMockRecorder struct {
mock *MockBean
}
// NewMockBean creates a new mock instance
func NewMockBean(ctrl *gomock.Controller) *MockBean {
mock := &MockBean{ctrl: ctrl}
mock.recorder = &MockBeanMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use
func (m *MockBean) EXPECT() *MockBeanMockRecorder {
return m.recorder
}
// GetHistoryClient mocks base method
func (m *MockBean) GetHistoryClient() history.Client {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetHistoryClient")
ret0, _ := ret[0].(history.Client)
return ret0
}
// GetHistoryClient indicates an expected call of GetHistoryClient
func (mr *MockBeanMockRecorder) GetHistoryClient() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetHistoryClient", reflect.TypeOf((*MockBean)(nil).GetHistoryClient))
}
// SetHistoryClient mocks base method
func (m *MockBean) SetHistoryClient(client history.Client) {
m.ctrl.T.Helper()
m.ctrl.Call(m, "SetHistoryClient", client)
}
// SetHistoryClient indicates an expected call of SetHistoryClient
func (mr *MockBeanMockRecorder) SetHistoryClient(client interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SetHistoryClient", reflect.TypeOf((*MockBean)(nil).SetHistoryClient), client)
}
// GetMatchingClient mocks base method
func (m *MockBean) GetMatchingClient(domainIDToName DomainIDToNameFunc) (matching.Client, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetMatchingClient", domainIDToName)
ret0, _ := ret[0].(matching.Client)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// GetMatchingClient indicates an expected call of GetMatchingClient
func (mr *MockBeanMockRecorder) GetMatchingClient(domainIDToName interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetMatchingClient", reflect.TypeOf((*MockBean)(nil).GetMatchingClient), domainIDToName)
}
// SetMatchingClient mocks base method
func (m *MockBean) SetMatchingClient(client matching.Client) {
m.ctrl.T.Helper()
m.ctrl.Call(m, "SetMatchingClient", client)
}
// SetMatchingClient indicates an expected call of SetMatchingClient
func (mr *MockBeanMockRecorder) SetMatchingClient(client interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SetMatchingClient", reflect.TypeOf((*MockBean)(nil).SetMatchingClient), client)
}
// GetFrontendClient mocks base method
func (m *MockBean) GetFrontendClient() frontend.Client {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetFrontendClient")
ret0, _ := ret[0].(frontend.Client)
return ret0
}
// GetFrontendClient indicates an expected call of GetFrontendClient
func (mr *MockBeanMockRecorder) GetFrontendClient() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetFrontendClient", reflect.TypeOf((*MockBean)(nil).GetFrontendClient))
}
// SetFrontendClient mocks base method
func (m *MockBean) SetFrontendClient(client frontend.Client) {
m.ctrl.T.Helper()
m.ctrl.Call(m, "SetFrontendClient", client)
}
// SetFrontendClient indicates an expected call of SetFrontendClient
func (mr *MockBeanMockRecorder) SetFrontendClient(client interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SetFrontendClient", reflect.TypeOf((*MockBean)(nil).SetFrontendClient), client)
}
// GetRemoteAdminClient mocks base method
func (m *MockBean) GetRemoteAdminClient(cluster string) admin.Client {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetRemoteAdminClient", cluster)
ret0, _ := ret[0].(admin.Client)
return ret0
}
// GetRemoteAdminClient indicates an expected call of GetRemoteAdminClient
func (mr *MockBeanMockRecorder) GetRemoteAdminClient(cluster interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetRemoteAdminClient", reflect.TypeOf((*MockBean)(nil).GetRemoteAdminClient), cluster)
}
// SetRemoteAdminClient mocks base method
func (m *MockBean) SetRemoteAdminClient(cluster string, client admin.Client) {
m.ctrl.T.Helper()
m.ctrl.Call(m, "SetRemoteAdminClient", cluster, client)
}
// SetRemoteAdminClient indicates an expected call of SetRemoteAdminClient
func (mr *MockBeanMockRecorder) SetRemoteAdminClient(cluster, client interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SetRemoteAdminClient", reflect.TypeOf((*MockBean)(nil).SetRemoteAdminClient), cluster, client)
}
// GetRemoteFrontendClient mocks base method
func (m *MockBean) GetRemoteFrontendClient(cluster string) frontend.Client {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetRemoteFrontendClient", cluster)
ret0, _ := ret[0].(frontend.Client)
return ret0
}
// GetRemoteFrontendClient indicates an expected call of GetRemoteFrontendClient
func (mr *MockBeanMockRecorder) GetRemoteFrontendClient(cluster interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetRemoteFrontendClient", reflect.TypeOf((*MockBean)(nil).GetRemoteFrontendClient), cluster)
}
// SetRemoteFrontendClient mocks base method
func (m *MockBean) SetRemoteFrontendClient(cluster string, client frontend.Client) {
m.ctrl.T.Helper()
m.ctrl.Call(m, "SetRemoteFrontendClient", cluster, client)
}
// SetRemoteFrontendClient indicates an expected call of SetRemoteFrontendClient
func (mr *MockBeanMockRecorder) SetRemoteFrontendClient(cluster, client interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SetRemoteFrontendClient", reflect.TypeOf((*MockBean)(nil).SetRemoteFrontendClient), cluster, client)
}
// MockDispatcherProvider is a mock of DispatcherProvider interface
type MockDispatcherProvider struct {
ctrl *gomock.Controller
recorder *MockDispatcherProviderMockRecorder
}
// MockDispatcherProviderMockRecorder is the mock recorder for MockDispatcherProvider
type MockDispatcherProviderMockRecorder struct {
mock *MockDispatcherProvider
}
// NewMockDispatcherProvider creates a new mock instance
func NewMockDispatcherProvider(ctrl *gomock.Controller) *MockDispatcherProvider {
mock := &MockDispatcherProvider{ctrl: ctrl}
mock.recorder = &MockDispatcherProviderMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use
func (m *MockDispatcherProvider) EXPECT() *MockDispatcherProviderMockRecorder {
return m.recorder
}
// Get mocks base method
func (m *MockDispatcherProvider) Get(name, address string) (*yarpc.Dispatcher, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "Get", name, address)
ret0, _ := ret[0].(*yarpc.Dispatcher)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// Get indicates an expected call of Get
func (mr *MockDispatcherProviderMockRecorder) Get(name, address interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Get", reflect.TypeOf((*MockDispatcherProvider)(nil).Get), name, address)
}