-
Notifications
You must be signed in to change notification settings - Fork 801
/
handler_mock.go
160 lines (135 loc) · 6.58 KB
/
handler_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
// 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: handler.go
// Package domain is a generated GoMock package.
package domain
import (
context "context"
reflect "reflect"
gomock "github.com/golang/mock/gomock"
types "github.com/uber/cadence/common/types"
)
// MockHandler is a mock of Handler interface.
type MockHandler struct {
ctrl *gomock.Controller
recorder *MockHandlerMockRecorder
}
// MockHandlerMockRecorder is the mock recorder for MockHandler.
type MockHandlerMockRecorder struct {
mock *MockHandler
}
// NewMockHandler creates a new mock instance.
func NewMockHandler(ctrl *gomock.Controller) *MockHandler {
mock := &MockHandler{ctrl: ctrl}
mock.recorder = &MockHandlerMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use.
func (m *MockHandler) EXPECT() *MockHandlerMockRecorder {
return m.recorder
}
// DeprecateDomain mocks base method.
func (m *MockHandler) DeprecateDomain(ctx context.Context, deprecateRequest *types.DeprecateDomainRequest) error {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "DeprecateDomain", ctx, deprecateRequest)
ret0, _ := ret[0].(error)
return ret0
}
// DeprecateDomain indicates an expected call of DeprecateDomain.
func (mr *MockHandlerMockRecorder) DeprecateDomain(ctx, deprecateRequest interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeprecateDomain", reflect.TypeOf((*MockHandler)(nil).DeprecateDomain), ctx, deprecateRequest)
}
// DescribeDomain mocks base method.
func (m *MockHandler) DescribeDomain(ctx context.Context, describeRequest *types.DescribeDomainRequest) (*types.DescribeDomainResponse, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "DescribeDomain", ctx, describeRequest)
ret0, _ := ret[0].(*types.DescribeDomainResponse)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// DescribeDomain indicates an expected call of DescribeDomain.
func (mr *MockHandlerMockRecorder) DescribeDomain(ctx, describeRequest interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DescribeDomain", reflect.TypeOf((*MockHandler)(nil).DescribeDomain), ctx, describeRequest)
}
// ListDomains mocks base method.
func (m *MockHandler) ListDomains(ctx context.Context, listRequest *types.ListDomainsRequest) (*types.ListDomainsResponse, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "ListDomains", ctx, listRequest)
ret0, _ := ret[0].(*types.ListDomainsResponse)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// ListDomains indicates an expected call of ListDomains.
func (mr *MockHandlerMockRecorder) ListDomains(ctx, listRequest interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListDomains", reflect.TypeOf((*MockHandler)(nil).ListDomains), ctx, listRequest)
}
// RegisterDomain mocks base method.
func (m *MockHandler) RegisterDomain(ctx context.Context, registerRequest *types.RegisterDomainRequest) error {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "RegisterDomain", ctx, registerRequest)
ret0, _ := ret[0].(error)
return ret0
}
// RegisterDomain indicates an expected call of RegisterDomain.
func (mr *MockHandlerMockRecorder) RegisterDomain(ctx, registerRequest interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RegisterDomain", reflect.TypeOf((*MockHandler)(nil).RegisterDomain), ctx, registerRequest)
}
// UpdateAsyncWorkflowConfiguraton mocks base method.
func (m *MockHandler) UpdateAsyncWorkflowConfiguraton(ctx context.Context, updateRequest types.UpdateDomainAsyncWorkflowConfiguratonRequest) error {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "UpdateAsyncWorkflowConfiguraton", ctx, updateRequest)
ret0, _ := ret[0].(error)
return ret0
}
// UpdateAsyncWorkflowConfiguraton indicates an expected call of UpdateAsyncWorkflowConfiguraton.
func (mr *MockHandlerMockRecorder) UpdateAsyncWorkflowConfiguraton(ctx, updateRequest interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateAsyncWorkflowConfiguraton", reflect.TypeOf((*MockHandler)(nil).UpdateAsyncWorkflowConfiguraton), ctx, updateRequest)
}
// UpdateDomain mocks base method.
func (m *MockHandler) UpdateDomain(ctx context.Context, updateRequest *types.UpdateDomainRequest) (*types.UpdateDomainResponse, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "UpdateDomain", ctx, updateRequest)
ret0, _ := ret[0].(*types.UpdateDomainResponse)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// UpdateDomain indicates an expected call of UpdateDomain.
func (mr *MockHandlerMockRecorder) UpdateDomain(ctx, updateRequest interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateDomain", reflect.TypeOf((*MockHandler)(nil).UpdateDomain), ctx, updateRequest)
}
// UpdateIsolationGroups mocks base method.
func (m *MockHandler) UpdateIsolationGroups(ctx context.Context, updateRequest types.UpdateDomainIsolationGroupsRequest) error {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "UpdateIsolationGroups", ctx, updateRequest)
ret0, _ := ret[0].(error)
return ret0
}
// UpdateIsolationGroups indicates an expected call of UpdateIsolationGroups.
func (mr *MockHandlerMockRecorder) UpdateIsolationGroups(ctx, updateRequest interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateIsolationGroups", reflect.TypeOf((*MockHandler)(nil).UpdateIsolationGroups), ctx, updateRequest)
}