2021-08-30 22:27:11 +00:00
|
|
|
// Code generated by MockGen. DO NOT EDIT.
|
|
|
|
// Source: github.com/influxdata/influxdb/v2 (interfaces: DBRPMappingService)
|
|
|
|
|
|
|
|
// Package mocks is a generated GoMock package.
|
|
|
|
package mocks
|
|
|
|
|
|
|
|
import (
|
|
|
|
context "context"
|
2021-09-13 19:12:35 +00:00
|
|
|
reflect "reflect"
|
|
|
|
|
2021-08-30 22:27:11 +00:00
|
|
|
gomock "github.com/golang/mock/gomock"
|
|
|
|
influxdb "github.com/influxdata/influxdb/v2"
|
|
|
|
"github.com/influxdata/influxdb/v2/kit/platform"
|
|
|
|
)
|
|
|
|
|
|
|
|
// MockDBRPMappingService is a mock of DBRPMappingService interface
|
|
|
|
type MockDBRPMappingService struct {
|
|
|
|
ctrl *gomock.Controller
|
|
|
|
recorder *MockDBRPMappingServiceMockRecorder
|
|
|
|
}
|
|
|
|
|
|
|
|
// MockDBRPMappingServiceMockRecorder is the mock recorder for MockDBRPMappingService
|
|
|
|
type MockDBRPMappingServiceMockRecorder struct {
|
|
|
|
mock *MockDBRPMappingService
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewMockDBRPMappingService creates a new mock instance
|
|
|
|
func NewMockDBRPMappingService(ctrl *gomock.Controller) *MockDBRPMappingService {
|
|
|
|
mock := &MockDBRPMappingService{ctrl: ctrl}
|
|
|
|
mock.recorder = &MockDBRPMappingServiceMockRecorder{mock}
|
|
|
|
return mock
|
|
|
|
}
|
|
|
|
|
|
|
|
// EXPECT returns an object that allows the caller to indicate expected use
|
|
|
|
func (m *MockDBRPMappingService) EXPECT() *MockDBRPMappingServiceMockRecorder {
|
|
|
|
return m.recorder
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create mocks base method
|
|
|
|
func (m *MockDBRPMappingService) Create(arg0 context.Context, arg1 *influxdb.DBRPMapping) error {
|
|
|
|
m.ctrl.T.Helper()
|
|
|
|
ret := m.ctrl.Call(m, "Create", arg0, arg1)
|
|
|
|
ret0, _ := ret[0].(error)
|
|
|
|
return ret0
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create indicates an expected call of Create
|
|
|
|
func (mr *MockDBRPMappingServiceMockRecorder) Create(arg0, arg1 interface{}) *gomock.Call {
|
|
|
|
mr.mock.ctrl.T.Helper()
|
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Create", reflect.TypeOf((*MockDBRPMappingService)(nil).Create), arg0, arg1)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete mocks base method
|
|
|
|
func (m *MockDBRPMappingService) Delete(arg0 context.Context, arg1, arg2 platform.ID) error {
|
|
|
|
m.ctrl.T.Helper()
|
|
|
|
ret := m.ctrl.Call(m, "Delete", arg0, arg1, arg2)
|
|
|
|
ret0, _ := ret[0].(error)
|
|
|
|
return ret0
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete indicates an expected call of Delete
|
|
|
|
func (mr *MockDBRPMappingServiceMockRecorder) Delete(arg0, arg1, arg2 interface{}) *gomock.Call {
|
|
|
|
mr.mock.ctrl.T.Helper()
|
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Delete", reflect.TypeOf((*MockDBRPMappingService)(nil).Delete), arg0, arg1, arg2)
|
|
|
|
}
|
|
|
|
|
|
|
|
// FindByID mocks base method
|
|
|
|
func (m *MockDBRPMappingService) FindByID(arg0 context.Context, arg1, arg2 platform.ID) (*influxdb.DBRPMapping, error) {
|
|
|
|
m.ctrl.T.Helper()
|
|
|
|
ret := m.ctrl.Call(m, "FindByID", arg0, arg1, arg2)
|
|
|
|
ret0, _ := ret[0].(*influxdb.DBRPMapping)
|
|
|
|
ret1, _ := ret[1].(error)
|
|
|
|
return ret0, ret1
|
|
|
|
}
|
|
|
|
|
|
|
|
// FindByID indicates an expected call of FindByID
|
|
|
|
func (mr *MockDBRPMappingServiceMockRecorder) FindByID(arg0, arg1, arg2 interface{}) *gomock.Call {
|
|
|
|
mr.mock.ctrl.T.Helper()
|
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "FindByID", reflect.TypeOf((*MockDBRPMappingService)(nil).FindByID), arg0, arg1, arg2)
|
|
|
|
}
|
|
|
|
|
|
|
|
// FindMany mocks base method
|
|
|
|
func (m *MockDBRPMappingService) FindMany(arg0 context.Context, arg1 influxdb.DBRPMappingFilter, arg2 ...influxdb.FindOptions) ([]*influxdb.DBRPMapping, int, error) {
|
|
|
|
m.ctrl.T.Helper()
|
|
|
|
varargs := []interface{}{arg0, arg1}
|
|
|
|
for _, a := range arg2 {
|
|
|
|
varargs = append(varargs, a)
|
|
|
|
}
|
|
|
|
ret := m.ctrl.Call(m, "FindMany", varargs...)
|
|
|
|
ret0, _ := ret[0].([]*influxdb.DBRPMapping)
|
|
|
|
ret1, _ := ret[1].(int)
|
|
|
|
ret2, _ := ret[2].(error)
|
|
|
|
return ret0, ret1, ret2
|
|
|
|
}
|
|
|
|
|
|
|
|
// FindMany indicates an expected call of FindMany
|
|
|
|
func (mr *MockDBRPMappingServiceMockRecorder) FindMany(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call {
|
|
|
|
mr.mock.ctrl.T.Helper()
|
|
|
|
varargs := append([]interface{}{arg0, arg1}, arg2...)
|
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "FindMany", reflect.TypeOf((*MockDBRPMappingService)(nil).FindMany), varargs...)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update mocks base method
|
|
|
|
func (m *MockDBRPMappingService) Update(arg0 context.Context, arg1 *influxdb.DBRPMapping) error {
|
|
|
|
m.ctrl.T.Helper()
|
|
|
|
ret := m.ctrl.Call(m, "Update", arg0, arg1)
|
|
|
|
ret0, _ := ret[0].(error)
|
|
|
|
return ret0
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update indicates an expected call of Update
|
|
|
|
func (mr *MockDBRPMappingServiceMockRecorder) Update(arg0, arg1 interface{}) *gomock.Call {
|
|
|
|
mr.mock.ctrl.T.Helper()
|
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Update", reflect.TypeOf((*MockDBRPMappingService)(nil).Update), arg0, arg1)
|
|
|
|
}
|