2020-10-27 02:54:57 +00:00
|
|
|
// Code generated by MockGen. DO NOT EDIT.
|
2021-06-07 22:53:29 +00:00
|
|
|
// Source: google.golang.org/genproto/googleapis/longrunning (interfaces: OperationsServer)
|
2020-10-27 02:54:57 +00:00
|
|
|
|
|
|
|
// Package cloudcas is a generated GoMock package.
|
|
|
|
package cloudcas
|
|
|
|
|
|
|
|
import (
|
|
|
|
context "context"
|
|
|
|
gomock "github.com/golang/mock/gomock"
|
|
|
|
longrunning "google.golang.org/genproto/googleapis/longrunning"
|
|
|
|
emptypb "google.golang.org/protobuf/types/known/emptypb"
|
|
|
|
reflect "reflect"
|
|
|
|
)
|
|
|
|
|
|
|
|
// MockOperationsServer is a mock of OperationsServer interface
|
|
|
|
type MockOperationsServer struct {
|
|
|
|
ctrl *gomock.Controller
|
|
|
|
recorder *MockOperationsServerMockRecorder
|
|
|
|
}
|
|
|
|
|
|
|
|
// MockOperationsServerMockRecorder is the mock recorder for MockOperationsServer
|
|
|
|
type MockOperationsServerMockRecorder struct {
|
|
|
|
mock *MockOperationsServer
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewMockOperationsServer creates a new mock instance
|
|
|
|
func NewMockOperationsServer(ctrl *gomock.Controller) *MockOperationsServer {
|
|
|
|
mock := &MockOperationsServer{ctrl: ctrl}
|
|
|
|
mock.recorder = &MockOperationsServerMockRecorder{mock}
|
|
|
|
return mock
|
|
|
|
}
|
|
|
|
|
|
|
|
// EXPECT returns an object that allows the caller to indicate expected use
|
|
|
|
func (m *MockOperationsServer) EXPECT() *MockOperationsServerMockRecorder {
|
|
|
|
return m.recorder
|
|
|
|
}
|
|
|
|
|
2021-06-07 22:53:29 +00:00
|
|
|
// CancelOperation mocks base method
|
|
|
|
func (m *MockOperationsServer) CancelOperation(arg0 context.Context, arg1 *longrunning.CancelOperationRequest) (*emptypb.Empty, error) {
|
2020-10-27 02:54:57 +00:00
|
|
|
m.ctrl.T.Helper()
|
2021-06-07 22:53:29 +00:00
|
|
|
ret := m.ctrl.Call(m, "CancelOperation", arg0, arg1)
|
|
|
|
ret0, _ := ret[0].(*emptypb.Empty)
|
2020-10-27 02:54:57 +00:00
|
|
|
ret1, _ := ret[1].(error)
|
|
|
|
return ret0, ret1
|
|
|
|
}
|
|
|
|
|
2021-06-07 22:53:29 +00:00
|
|
|
// CancelOperation indicates an expected call of CancelOperation
|
|
|
|
func (mr *MockOperationsServerMockRecorder) CancelOperation(arg0, arg1 interface{}) *gomock.Call {
|
2020-10-27 02:54:57 +00:00
|
|
|
mr.mock.ctrl.T.Helper()
|
2021-06-07 22:53:29 +00:00
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CancelOperation", reflect.TypeOf((*MockOperationsServer)(nil).CancelOperation), arg0, arg1)
|
2020-10-27 02:54:57 +00:00
|
|
|
}
|
|
|
|
|
2021-06-07 22:53:29 +00:00
|
|
|
// DeleteOperation mocks base method
|
|
|
|
func (m *MockOperationsServer) DeleteOperation(arg0 context.Context, arg1 *longrunning.DeleteOperationRequest) (*emptypb.Empty, error) {
|
2020-10-27 02:54:57 +00:00
|
|
|
m.ctrl.T.Helper()
|
2021-06-07 22:53:29 +00:00
|
|
|
ret := m.ctrl.Call(m, "DeleteOperation", arg0, arg1)
|
|
|
|
ret0, _ := ret[0].(*emptypb.Empty)
|
2020-10-27 02:54:57 +00:00
|
|
|
ret1, _ := ret[1].(error)
|
|
|
|
return ret0, ret1
|
|
|
|
}
|
|
|
|
|
2021-06-07 22:53:29 +00:00
|
|
|
// DeleteOperation indicates an expected call of DeleteOperation
|
|
|
|
func (mr *MockOperationsServerMockRecorder) DeleteOperation(arg0, arg1 interface{}) *gomock.Call {
|
2020-10-27 02:54:57 +00:00
|
|
|
mr.mock.ctrl.T.Helper()
|
2021-06-07 22:53:29 +00:00
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteOperation", reflect.TypeOf((*MockOperationsServer)(nil).DeleteOperation), arg0, arg1)
|
2020-10-27 02:54:57 +00:00
|
|
|
}
|
|
|
|
|
2021-06-07 22:53:29 +00:00
|
|
|
// GetOperation mocks base method
|
|
|
|
func (m *MockOperationsServer) GetOperation(arg0 context.Context, arg1 *longrunning.GetOperationRequest) (*longrunning.Operation, error) {
|
2020-10-27 02:54:57 +00:00
|
|
|
m.ctrl.T.Helper()
|
2021-06-07 22:53:29 +00:00
|
|
|
ret := m.ctrl.Call(m, "GetOperation", arg0, arg1)
|
|
|
|
ret0, _ := ret[0].(*longrunning.Operation)
|
2020-10-27 02:54:57 +00:00
|
|
|
ret1, _ := ret[1].(error)
|
|
|
|
return ret0, ret1
|
|
|
|
}
|
|
|
|
|
2021-06-07 22:53:29 +00:00
|
|
|
// GetOperation indicates an expected call of GetOperation
|
|
|
|
func (mr *MockOperationsServerMockRecorder) GetOperation(arg0, arg1 interface{}) *gomock.Call {
|
2020-10-27 02:54:57 +00:00
|
|
|
mr.mock.ctrl.T.Helper()
|
2021-06-07 22:53:29 +00:00
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetOperation", reflect.TypeOf((*MockOperationsServer)(nil).GetOperation), arg0, arg1)
|
2020-10-27 02:54:57 +00:00
|
|
|
}
|
|
|
|
|
2021-06-07 22:53:29 +00:00
|
|
|
// ListOperations mocks base method
|
|
|
|
func (m *MockOperationsServer) ListOperations(arg0 context.Context, arg1 *longrunning.ListOperationsRequest) (*longrunning.ListOperationsResponse, error) {
|
2020-10-27 02:54:57 +00:00
|
|
|
m.ctrl.T.Helper()
|
2021-06-07 22:53:29 +00:00
|
|
|
ret := m.ctrl.Call(m, "ListOperations", arg0, arg1)
|
|
|
|
ret0, _ := ret[0].(*longrunning.ListOperationsResponse)
|
2020-10-27 02:54:57 +00:00
|
|
|
ret1, _ := ret[1].(error)
|
|
|
|
return ret0, ret1
|
|
|
|
}
|
|
|
|
|
2021-06-07 22:53:29 +00:00
|
|
|
// ListOperations indicates an expected call of ListOperations
|
|
|
|
func (mr *MockOperationsServerMockRecorder) ListOperations(arg0, arg1 interface{}) *gomock.Call {
|
2020-10-27 02:54:57 +00:00
|
|
|
mr.mock.ctrl.T.Helper()
|
2021-06-07 22:53:29 +00:00
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListOperations", reflect.TypeOf((*MockOperationsServer)(nil).ListOperations), arg0, arg1)
|
2020-10-27 02:54:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// WaitOperation mocks base method
|
|
|
|
func (m *MockOperationsServer) WaitOperation(arg0 context.Context, arg1 *longrunning.WaitOperationRequest) (*longrunning.Operation, error) {
|
|
|
|
m.ctrl.T.Helper()
|
|
|
|
ret := m.ctrl.Call(m, "WaitOperation", arg0, arg1)
|
|
|
|
ret0, _ := ret[0].(*longrunning.Operation)
|
|
|
|
ret1, _ := ret[1].(error)
|
|
|
|
return ret0, ret1
|
|
|
|
}
|
|
|
|
|
|
|
|
// WaitOperation indicates an expected call of WaitOperation
|
|
|
|
func (mr *MockOperationsServerMockRecorder) WaitOperation(arg0, arg1 interface{}) *gomock.Call {
|
|
|
|
mr.mock.ctrl.T.Helper()
|
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "WaitOperation", reflect.TypeOf((*MockOperationsServer)(nil).WaitOperation), arg0, arg1)
|
|
|
|
}
|