forked from yarpc/yarpc-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.go
128 lines (114 loc) · 3.77 KB
/
client.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
// Code generated by thriftrw-plugin-yarpc
// @generated
// Copyright (c) 2017 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.
package keyvaluetest
import (
"context"
"go.uber.org/yarpc"
"go.uber.org/yarpc/internal/examples/thrift-keyvalue/keyvalue/kv/keyvalueclient"
"github.com/golang/mock/gomock"
)
// MockClient implements a gomock-compatible mock client for service
// KeyValue.
type MockClient struct {
ctrl *gomock.Controller
recorder *_MockClientRecorder
}
var _ keyvalueclient.Interface = (*MockClient)(nil)
type _MockClientRecorder struct {
mock *MockClient
}
// Build a new mock client for service KeyValue.
//
// mockCtrl := gomock.NewController(t)
// client := keyvaluetest.NewMockClient(mockCtrl)
//
// Use EXPECT() to set expectations on the mock.
func NewMockClient(ctrl *gomock.Controller) *MockClient {
mock := &MockClient{ctrl: ctrl}
mock.recorder = &_MockClientRecorder{mock}
return mock
}
// EXPECT returns an object that allows you to define an expectation on the
// KeyValue mock client.
func (m *MockClient) EXPECT() *_MockClientRecorder {
return m.recorder
}
// GetValue responds to a GetValue call based on the mock expectations. This
// call will fail if the mock does not expect this call. Use EXPECT to expect
// a call to this function.
//
// client.EXPECT().GetValue(gomock.Any(), ...).Return(...)
// ... := client.GetValue(...)
func (m *MockClient) GetValue(
ctx context.Context,
_Key *string,
opts ...yarpc.CallOption,
) (success string, err error) {
args := []interface{}{ctx, _Key}
for _, o := range opts {
args = append(args, o)
}
i := 0
ret := m.ctrl.Call(m, "GetValue", args...)
success, _ = ret[i].(string)
i++
err, _ = ret[i].(error)
return
}
func (mr *_MockClientRecorder) GetValue(
ctx interface{},
_Key interface{},
opts ...interface{},
) *gomock.Call {
args := append([]interface{}{ctx, _Key}, opts...)
return mr.mock.ctrl.RecordCall(mr.mock, "GetValue", args...)
}
// SetValue responds to a SetValue call based on the mock expectations. This
// call will fail if the mock does not expect this call. Use EXPECT to expect
// a call to this function.
//
// client.EXPECT().SetValue(gomock.Any(), ...).Return(...)
// ... := client.SetValue(...)
func (m *MockClient) SetValue(
ctx context.Context,
_Key *string,
_Value *string,
opts ...yarpc.CallOption,
) (err error) {
args := []interface{}{ctx, _Key, _Value}
for _, o := range opts {
args = append(args, o)
}
i := 0
ret := m.ctrl.Call(m, "SetValue", args...)
err, _ = ret[i].(error)
return
}
func (mr *_MockClientRecorder) SetValue(
ctx interface{},
_Key interface{},
_Value interface{},
opts ...interface{},
) *gomock.Call {
args := append([]interface{}{ctx, _Key, _Value}, opts...)
return mr.mock.ctrl.RecordCall(mr.mock, "SetValue", args...)
}