-
Notifications
You must be signed in to change notification settings - Fork 458
/
Copy pathindex_mock.go
199 lines (170 loc) · 6.53 KB
/
index_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
// Code generated by MockGen. DO NOT EDIT.
// Source: github.com/m3db/m3/src/m3ninx/index (interfaces: Reader,DocRetriever)
// Copyright (c) 2018 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 index is a generated GoMock package.
package index
import (
"reflect"
"github.com/m3db/m3/src/m3ninx/doc"
"github.com/m3db/m3/src/m3ninx/postings"
"github.com/golang/mock/gomock"
)
// MockReader is a mock of Reader interface
type MockReader struct {
ctrl *gomock.Controller
recorder *MockReaderMockRecorder
}
// MockReaderMockRecorder is the mock recorder for MockReader
type MockReaderMockRecorder struct {
mock *MockReader
}
// NewMockReader creates a new mock instance
func NewMockReader(ctrl *gomock.Controller) *MockReader {
mock := &MockReader{ctrl: ctrl}
mock.recorder = &MockReaderMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use
func (m *MockReader) EXPECT() *MockReaderMockRecorder {
return m.recorder
}
// AllDocs mocks base method
func (m *MockReader) AllDocs() (IDDocIterator, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "AllDocs")
ret0, _ := ret[0].(IDDocIterator)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// AllDocs indicates an expected call of AllDocs
func (mr *MockReaderMockRecorder) AllDocs() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "AllDocs", reflect.TypeOf((*MockReader)(nil).AllDocs))
}
// Close mocks base method
func (m *MockReader) Close() error {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "Close")
ret0, _ := ret[0].(error)
return ret0
}
// Close indicates an expected call of Close
func (mr *MockReaderMockRecorder) Close() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Close", reflect.TypeOf((*MockReader)(nil).Close))
}
// Doc mocks base method
func (m *MockReader) Doc(arg0 postings.ID) (doc.Document, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "Doc", arg0)
ret0, _ := ret[0].(doc.Document)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// Doc indicates an expected call of Doc
func (mr *MockReaderMockRecorder) Doc(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Doc", reflect.TypeOf((*MockReader)(nil).Doc), arg0)
}
// Docs mocks base method
func (m *MockReader) Docs(arg0 postings.List) (doc.Iterator, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "Docs", arg0)
ret0, _ := ret[0].(doc.Iterator)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// Docs indicates an expected call of Docs
func (mr *MockReaderMockRecorder) Docs(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Docs", reflect.TypeOf((*MockReader)(nil).Docs), arg0)
}
// MatchAll mocks base method
func (m *MockReader) MatchAll() (postings.MutableList, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "MatchAll")
ret0, _ := ret[0].(postings.MutableList)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// MatchAll indicates an expected call of MatchAll
func (mr *MockReaderMockRecorder) MatchAll() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "MatchAll", reflect.TypeOf((*MockReader)(nil).MatchAll))
}
// MatchRegexp mocks base method
func (m *MockReader) MatchRegexp(arg0 []byte, arg1 CompiledRegex) (postings.List, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "MatchRegexp", arg0, arg1)
ret0, _ := ret[0].(postings.List)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// MatchRegexp indicates an expected call of MatchRegexp
func (mr *MockReaderMockRecorder) MatchRegexp(arg0, arg1 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "MatchRegexp", reflect.TypeOf((*MockReader)(nil).MatchRegexp), arg0, arg1)
}
// MatchTerm mocks base method
func (m *MockReader) MatchTerm(arg0, arg1 []byte) (postings.List, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "MatchTerm", arg0, arg1)
ret0, _ := ret[0].(postings.List)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// MatchTerm indicates an expected call of MatchTerm
func (mr *MockReaderMockRecorder) MatchTerm(arg0, arg1 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "MatchTerm", reflect.TypeOf((*MockReader)(nil).MatchTerm), arg0, arg1)
}
// MockDocRetriever is a mock of DocRetriever interface
type MockDocRetriever struct {
ctrl *gomock.Controller
recorder *MockDocRetrieverMockRecorder
}
// MockDocRetrieverMockRecorder is the mock recorder for MockDocRetriever
type MockDocRetrieverMockRecorder struct {
mock *MockDocRetriever
}
// NewMockDocRetriever creates a new mock instance
func NewMockDocRetriever(ctrl *gomock.Controller) *MockDocRetriever {
mock := &MockDocRetriever{ctrl: ctrl}
mock.recorder = &MockDocRetrieverMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use
func (m *MockDocRetriever) EXPECT() *MockDocRetrieverMockRecorder {
return m.recorder
}
// Doc mocks base method
func (m *MockDocRetriever) Doc(arg0 postings.ID) (doc.Document, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "Doc", arg0)
ret0, _ := ret[0].(doc.Document)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// Doc indicates an expected call of Doc
func (mr *MockDocRetrieverMockRecorder) Doc(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Doc", reflect.TypeOf((*MockDocRetriever)(nil).Doc), arg0)
}