2018-07-09 18:43:13 +01:00
|
|
|
// Copyright (C) 2018 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
2018-07-03 09:35:01 +01:00
|
|
|
// Code generated by MockGen. DO NOT EDIT.
|
|
|
|
// Source: storj.io/storj/pkg/piecestore/rpc/client (interfaces: PSClient)
|
|
|
|
|
2018-09-11 13:40:45 +01:00
|
|
|
// mockgen -destination=pkg/storage/ec/psclient_mock_test.go storj.io/storj/pkg/piecestore/rpc/client PSClient
|
|
|
|
|
2018-07-03 09:35:01 +01:00
|
|
|
// Package ecclient is a generated GoMock package.
|
|
|
|
package ecclient
|
|
|
|
|
|
|
|
import (
|
|
|
|
context "context"
|
2018-09-25 17:49:55 +01:00
|
|
|
gomock "github.com/golang/mock/gomock"
|
2018-07-03 09:35:01 +01:00
|
|
|
io "io"
|
|
|
|
reflect "reflect"
|
2018-09-18 05:39:06 +01:00
|
|
|
pb "storj.io/storj/pkg/pb"
|
2018-07-03 09:35:01 +01:00
|
|
|
client "storj.io/storj/pkg/piecestore/rpc/client"
|
|
|
|
ranger "storj.io/storj/pkg/ranger"
|
2018-09-25 17:49:55 +01:00
|
|
|
time "time"
|
2018-07-03 09:35:01 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// MockPSClient is a mock of PSClient interface
|
|
|
|
type MockPSClient struct {
|
|
|
|
ctrl *gomock.Controller
|
|
|
|
recorder *MockPSClientMockRecorder
|
|
|
|
}
|
|
|
|
|
|
|
|
// MockPSClientMockRecorder is the mock recorder for MockPSClient
|
|
|
|
type MockPSClientMockRecorder struct {
|
|
|
|
mock *MockPSClient
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewMockPSClient creates a new mock instance
|
|
|
|
func NewMockPSClient(ctrl *gomock.Controller) *MockPSClient {
|
|
|
|
mock := &MockPSClient{ctrl: ctrl}
|
|
|
|
mock.recorder = &MockPSClientMockRecorder{mock}
|
|
|
|
return mock
|
|
|
|
}
|
|
|
|
|
|
|
|
// EXPECT returns an object that allows the caller to indicate expected use
|
|
|
|
func (m *MockPSClient) EXPECT() *MockPSClientMockRecorder {
|
|
|
|
return m.recorder
|
|
|
|
}
|
|
|
|
|
2018-08-20 16:11:54 +01:00
|
|
|
// Close mocks base method
|
|
|
|
func (m *MockPSClient) Close() error {
|
|
|
|
ret := m.ctrl.Call(m, "Close")
|
2018-07-03 09:35:01 +01:00
|
|
|
ret0, _ := ret[0].(error)
|
|
|
|
return ret0
|
|
|
|
}
|
|
|
|
|
2018-08-20 16:11:54 +01:00
|
|
|
// Close indicates an expected call of Close
|
|
|
|
func (mr *MockPSClientMockRecorder) Close() *gomock.Call {
|
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Close", reflect.TypeOf((*MockPSClient)(nil).Close))
|
2018-07-03 09:35:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Delete mocks base method
|
|
|
|
func (m *MockPSClient) Delete(arg0 context.Context, arg1 client.PieceID) error {
|
|
|
|
ret := m.ctrl.Call(m, "Delete", arg0, arg1)
|
|
|
|
ret0, _ := ret[0].(error)
|
|
|
|
return ret0
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete indicates an expected call of Delete
|
|
|
|
func (mr *MockPSClientMockRecorder) Delete(arg0, arg1 interface{}) *gomock.Call {
|
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Delete", reflect.TypeOf((*MockPSClient)(nil).Delete), arg0, arg1)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get mocks base method
|
2018-09-18 05:39:06 +01:00
|
|
|
func (m *MockPSClient) Get(arg0 context.Context, arg1 client.PieceID, arg2 int64, arg3 *pb.PayerBandwidthAllocation) (ranger.Ranger, error) {
|
2018-08-17 18:40:15 +01:00
|
|
|
ret := m.ctrl.Call(m, "Get", arg0, arg1, arg2, arg3)
|
2018-09-14 15:10:43 +01:00
|
|
|
ret0, _ := ret[0].(ranger.Ranger)
|
2018-07-03 09:35:01 +01:00
|
|
|
ret1, _ := ret[1].(error)
|
|
|
|
return ret0, ret1
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get indicates an expected call of Get
|
2018-08-17 18:40:15 +01:00
|
|
|
func (mr *MockPSClientMockRecorder) Get(arg0, arg1, arg2, arg3 interface{}) *gomock.Call {
|
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Get", reflect.TypeOf((*MockPSClient)(nil).Get), arg0, arg1, arg2, arg3)
|
2018-07-03 09:35:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Meta mocks base method
|
2018-09-18 05:39:06 +01:00
|
|
|
func (m *MockPSClient) Meta(arg0 context.Context, arg1 client.PieceID) (*pb.PieceSummary, error) {
|
2018-07-03 09:35:01 +01:00
|
|
|
ret := m.ctrl.Call(m, "Meta", arg0, arg1)
|
2018-09-18 05:39:06 +01:00
|
|
|
ret0, _ := ret[0].(*pb.PieceSummary)
|
2018-07-03 09:35:01 +01:00
|
|
|
ret1, _ := ret[1].(error)
|
|
|
|
return ret0, ret1
|
|
|
|
}
|
|
|
|
|
|
|
|
// Meta indicates an expected call of Meta
|
|
|
|
func (mr *MockPSClientMockRecorder) Meta(arg0, arg1 interface{}) *gomock.Call {
|
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Meta", reflect.TypeOf((*MockPSClient)(nil).Meta), arg0, arg1)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Put mocks base method
|
2018-09-18 05:39:06 +01:00
|
|
|
func (m *MockPSClient) Put(arg0 context.Context, arg1 client.PieceID, arg2 io.Reader, arg3 time.Time, arg4 *pb.PayerBandwidthAllocation) error {
|
2018-08-17 18:40:15 +01:00
|
|
|
ret := m.ctrl.Call(m, "Put", arg0, arg1, arg2, arg3, arg4)
|
2018-07-03 09:35:01 +01:00
|
|
|
ret0, _ := ret[0].(error)
|
|
|
|
return ret0
|
|
|
|
}
|
|
|
|
|
|
|
|
// Put indicates an expected call of Put
|
2018-08-17 18:40:15 +01:00
|
|
|
func (mr *MockPSClientMockRecorder) Put(arg0, arg1, arg2, arg3, arg4 interface{}) *gomock.Call {
|
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Put", reflect.TypeOf((*MockPSClient)(nil).Put), arg0, arg1, arg2, arg3, arg4)
|
2018-07-03 09:35:01 +01:00
|
|
|
}
|
2018-09-11 13:40:45 +01:00
|
|
|
|
|
|
|
// Stats mocks base method
|
2018-09-25 17:49:55 +01:00
|
|
|
func (m *MockPSClient) Stats(arg0 context.Context) (*pb.StatSummary, error) {
|
2018-09-11 13:40:45 +01:00
|
|
|
ret := m.ctrl.Call(m, "Stats", arg0)
|
2018-09-25 17:49:55 +01:00
|
|
|
ret0, _ := ret[0].(*pb.StatSummary)
|
|
|
|
ret1, _ := ret[1].(error)
|
|
|
|
return ret0, ret1
|
2018-09-11 13:40:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Stats indicates an expected call of Stats
|
|
|
|
func (mr *MockPSClientMockRecorder) Stats(arg0 interface{}) *gomock.Call {
|
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Stats", reflect.TypeOf((*MockPSClient)(nil).Stats), arg0)
|
|
|
|
}
|