-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathinstance_mock.go
181 lines (146 loc) · 5.37 KB
/
instance_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
// Code generated by mockery v2.12.3. DO NOT EDIT.
package instance
import (
context "context"
mock "github.com/stretchr/testify/mock"
)
// MockInstance is an autogenerated mock type for the Instance type
type MockInstance struct {
mock.Mock
}
// GetMetrics provides a mock function with given fields: ctx, metric, service, groupByOperation, quantile, ratePer, step, spanKinds, timeStart, timeEnd
func (_m *MockInstance) GetMetrics(ctx context.Context, metric string, service string, groupByOperation string, quantile string, ratePer string, step string, spanKinds []string, timeStart int64, timeEnd int64) (map[string]interface{}, error) {
ret := _m.Called(ctx, metric, service, groupByOperation, quantile, ratePer, step, spanKinds, timeStart, timeEnd)
var r0 map[string]interface{}
if rf, ok := ret.Get(0).(func(context.Context, string, string, string, string, string, string, []string, int64, int64) map[string]interface{}); ok {
r0 = rf(ctx, metric, service, groupByOperation, quantile, ratePer, step, spanKinds, timeStart, timeEnd)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(map[string]interface{})
}
}
var r1 error
if rf, ok := ret.Get(1).(func(context.Context, string, string, string, string, string, string, []string, int64, int64) error); ok {
r1 = rf(ctx, metric, service, groupByOperation, quantile, ratePer, step, spanKinds, timeStart, timeEnd)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// GetName provides a mock function with given fields:
func (_m *MockInstance) GetName() string {
ret := _m.Called()
var r0 string
if rf, ok := ret.Get(0).(func() string); ok {
r0 = rf()
} else {
r0 = ret.Get(0).(string)
}
return r0
}
// GetOperations provides a mock function with given fields: ctx, service
func (_m *MockInstance) GetOperations(ctx context.Context, service string) (map[string]interface{}, error) {
ret := _m.Called(ctx, service)
var r0 map[string]interface{}
if rf, ok := ret.Get(0).(func(context.Context, string) map[string]interface{}); ok {
r0 = rf(ctx, service)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(map[string]interface{})
}
}
var r1 error
if rf, ok := ret.Get(1).(func(context.Context, string) error); ok {
r1 = rf(ctx, service)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// GetServices provides a mock function with given fields: ctx
func (_m *MockInstance) GetServices(ctx context.Context) (map[string]interface{}, error) {
ret := _m.Called(ctx)
var r0 map[string]interface{}
if rf, ok := ret.Get(0).(func(context.Context) map[string]interface{}); ok {
r0 = rf(ctx)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(map[string]interface{})
}
}
var r1 error
if rf, ok := ret.Get(1).(func(context.Context) error); ok {
r1 = rf(ctx)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// GetTrace provides a mock function with given fields: ctx, traceID
func (_m *MockInstance) GetTrace(ctx context.Context, traceID string) (map[string]interface{}, error) {
ret := _m.Called(ctx, traceID)
var r0 map[string]interface{}
if rf, ok := ret.Get(0).(func(context.Context, string) map[string]interface{}); ok {
r0 = rf(ctx, traceID)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(map[string]interface{})
}
}
var r1 error
if rf, ok := ret.Get(1).(func(context.Context, string) error); ok {
r1 = rf(ctx, traceID)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// GetTraces provides a mock function with given fields: ctx, limit, maxDuration, minDuration, operation, service, tags, timeStart, timeEnd
func (_m *MockInstance) GetTraces(ctx context.Context, limit string, maxDuration string, minDuration string, operation string, service string, tags string, timeStart int64, timeEnd int64) (map[string]interface{}, error) {
ret := _m.Called(ctx, limit, maxDuration, minDuration, operation, service, tags, timeStart, timeEnd)
var r0 map[string]interface{}
if rf, ok := ret.Get(0).(func(context.Context, string, string, string, string, string, string, int64, int64) map[string]interface{}); ok {
r0 = rf(ctx, limit, maxDuration, minDuration, operation, service, tags, timeStart, timeEnd)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(map[string]interface{})
}
}
var r1 error
if rf, ok := ret.Get(1).(func(context.Context, string, string, string, string, string, string, int64, int64) error); ok {
r1 = rf(ctx, limit, maxDuration, minDuration, operation, service, tags, timeStart, timeEnd)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// doRequest provides a mock function with given fields: ctx, url
func (_m *MockInstance) doRequest(ctx context.Context, url string) (map[string]interface{}, error) {
ret := _m.Called(ctx, url)
var r0 map[string]interface{}
if rf, ok := ret.Get(0).(func(context.Context, string) map[string]interface{}); ok {
r0 = rf(ctx, url)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(map[string]interface{})
}
}
var r1 error
if rf, ok := ret.Get(1).(func(context.Context, string) error); ok {
r1 = rf(ctx, url)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
type NewMockInstanceT interface {
mock.TestingT
Cleanup(func())
}
// NewMockInstance creates a new instance of MockInstance. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
func NewMockInstance(t NewMockInstanceT) *MockInstance {
mock := &MockInstance{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}