2021-05-20 11:01:25 +00:00
|
|
|
// Code generated by MockGen. DO NOT EDIT.
|
2021-10-11 19:05:05 +00:00
|
|
|
// Source: github.com/filecoin-project/lotus/extern/sector-storage/stores (interfaces: SectorIndex)
|
2021-05-20 11:01:25 +00:00
|
|
|
|
2021-06-08 13:33:10 +00:00
|
|
|
// Package mocks is a generated GoMock package.
|
2021-05-20 11:01:25 +00:00
|
|
|
package mocks
|
|
|
|
|
|
|
|
import (
|
|
|
|
context "context"
|
|
|
|
reflect "reflect"
|
|
|
|
|
|
|
|
abi "github.com/filecoin-project/go-state-types/abi"
|
|
|
|
fsutil "github.com/filecoin-project/lotus/extern/sector-storage/fsutil"
|
|
|
|
storiface "github.com/filecoin-project/lotus/extern/sector-storage/storiface"
|
|
|
|
gomock "github.com/golang/mock/gomock"
|
|
|
|
)
|
|
|
|
|
|
|
|
// MockSectorIndex is a mock of SectorIndex interface.
|
|
|
|
type MockSectorIndex struct {
|
|
|
|
ctrl *gomock.Controller
|
|
|
|
recorder *MockSectorIndexMockRecorder
|
|
|
|
}
|
|
|
|
|
|
|
|
// MockSectorIndexMockRecorder is the mock recorder for MockSectorIndex.
|
|
|
|
type MockSectorIndexMockRecorder struct {
|
|
|
|
mock *MockSectorIndex
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewMockSectorIndex creates a new mock instance.
|
|
|
|
func NewMockSectorIndex(ctrl *gomock.Controller) *MockSectorIndex {
|
|
|
|
mock := &MockSectorIndex{ctrl: ctrl}
|
|
|
|
mock.recorder = &MockSectorIndexMockRecorder{mock}
|
|
|
|
return mock
|
|
|
|
}
|
|
|
|
|
|
|
|
// EXPECT returns an object that allows the caller to indicate expected use.
|
|
|
|
func (m *MockSectorIndex) EXPECT() *MockSectorIndexMockRecorder {
|
|
|
|
return m.recorder
|
|
|
|
}
|
|
|
|
|
|
|
|
// StorageAttach mocks base method.
|
2022-01-18 10:57:04 +00:00
|
|
|
func (m *MockSectorIndex) StorageAttach(arg0 context.Context, arg1 storiface.StorageInfo, arg2 fsutil.FsStat) error {
|
2021-05-20 11:01:25 +00:00
|
|
|
m.ctrl.T.Helper()
|
|
|
|
ret := m.ctrl.Call(m, "StorageAttach", arg0, arg1, arg2)
|
|
|
|
ret0, _ := ret[0].(error)
|
|
|
|
return ret0
|
|
|
|
}
|
|
|
|
|
|
|
|
// StorageAttach indicates an expected call of StorageAttach.
|
|
|
|
func (mr *MockSectorIndexMockRecorder) StorageAttach(arg0, arg1, arg2 interface{}) *gomock.Call {
|
|
|
|
mr.mock.ctrl.T.Helper()
|
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "StorageAttach", reflect.TypeOf((*MockSectorIndex)(nil).StorageAttach), arg0, arg1, arg2)
|
|
|
|
}
|
|
|
|
|
|
|
|
// StorageBestAlloc mocks base method.
|
2022-01-18 10:57:04 +00:00
|
|
|
func (m *MockSectorIndex) StorageBestAlloc(arg0 context.Context, arg1 storiface.SectorFileType, arg2 abi.SectorSize, arg3 storiface.PathType) ([]storiface.StorageInfo, error) {
|
2021-05-20 11:01:25 +00:00
|
|
|
m.ctrl.T.Helper()
|
2021-10-11 19:05:05 +00:00
|
|
|
ret := m.ctrl.Call(m, "StorageBestAlloc", arg0, arg1, arg2, arg3)
|
2022-01-18 10:57:04 +00:00
|
|
|
ret0, _ := ret[0].([]storiface.StorageInfo)
|
2021-05-20 11:01:25 +00:00
|
|
|
ret1, _ := ret[1].(error)
|
|
|
|
return ret0, ret1
|
|
|
|
}
|
|
|
|
|
|
|
|
// StorageBestAlloc indicates an expected call of StorageBestAlloc.
|
2021-10-11 19:05:05 +00:00
|
|
|
func (mr *MockSectorIndexMockRecorder) StorageBestAlloc(arg0, arg1, arg2, arg3 interface{}) *gomock.Call {
|
2021-05-20 11:01:25 +00:00
|
|
|
mr.mock.ctrl.T.Helper()
|
2021-10-11 19:05:05 +00:00
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "StorageBestAlloc", reflect.TypeOf((*MockSectorIndex)(nil).StorageBestAlloc), arg0, arg1, arg2, arg3)
|
2021-05-20 11:01:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// StorageDeclareSector mocks base method.
|
2022-01-18 10:57:04 +00:00
|
|
|
func (m *MockSectorIndex) StorageDeclareSector(arg0 context.Context, arg1 storiface.ID, arg2 abi.SectorID, arg3 storiface.SectorFileType, arg4 bool) error {
|
2021-05-20 11:01:25 +00:00
|
|
|
m.ctrl.T.Helper()
|
2021-10-11 19:05:05 +00:00
|
|
|
ret := m.ctrl.Call(m, "StorageDeclareSector", arg0, arg1, arg2, arg3, arg4)
|
2021-05-20 11:01:25 +00:00
|
|
|
ret0, _ := ret[0].(error)
|
|
|
|
return ret0
|
|
|
|
}
|
|
|
|
|
|
|
|
// StorageDeclareSector indicates an expected call of StorageDeclareSector.
|
2021-10-11 19:05:05 +00:00
|
|
|
func (mr *MockSectorIndexMockRecorder) StorageDeclareSector(arg0, arg1, arg2, arg3, arg4 interface{}) *gomock.Call {
|
2021-05-20 11:01:25 +00:00
|
|
|
mr.mock.ctrl.T.Helper()
|
2021-10-11 19:05:05 +00:00
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "StorageDeclareSector", reflect.TypeOf((*MockSectorIndex)(nil).StorageDeclareSector), arg0, arg1, arg2, arg3, arg4)
|
2021-05-20 11:01:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// StorageDropSector mocks base method.
|
2022-01-18 10:57:04 +00:00
|
|
|
func (m *MockSectorIndex) StorageDropSector(arg0 context.Context, arg1 storiface.ID, arg2 abi.SectorID, arg3 storiface.SectorFileType) error {
|
2021-05-20 11:01:25 +00:00
|
|
|
m.ctrl.T.Helper()
|
2021-10-11 19:05:05 +00:00
|
|
|
ret := m.ctrl.Call(m, "StorageDropSector", arg0, arg1, arg2, arg3)
|
2021-05-20 11:01:25 +00:00
|
|
|
ret0, _ := ret[0].(error)
|
|
|
|
return ret0
|
|
|
|
}
|
|
|
|
|
|
|
|
// StorageDropSector indicates an expected call of StorageDropSector.
|
2021-10-11 19:05:05 +00:00
|
|
|
func (mr *MockSectorIndexMockRecorder) StorageDropSector(arg0, arg1, arg2, arg3 interface{}) *gomock.Call {
|
2021-05-20 11:01:25 +00:00
|
|
|
mr.mock.ctrl.T.Helper()
|
2021-10-11 19:05:05 +00:00
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "StorageDropSector", reflect.TypeOf((*MockSectorIndex)(nil).StorageDropSector), arg0, arg1, arg2, arg3)
|
2021-05-20 11:01:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// StorageFindSector mocks base method.
|
2022-01-18 10:57:04 +00:00
|
|
|
func (m *MockSectorIndex) StorageFindSector(arg0 context.Context, arg1 abi.SectorID, arg2 storiface.SectorFileType, arg3 abi.SectorSize, arg4 bool) ([]storiface.SectorStorageInfo, error) {
|
2021-05-20 11:01:25 +00:00
|
|
|
m.ctrl.T.Helper()
|
2021-10-11 19:05:05 +00:00
|
|
|
ret := m.ctrl.Call(m, "StorageFindSector", arg0, arg1, arg2, arg3, arg4)
|
2022-01-18 10:57:04 +00:00
|
|
|
ret0, _ := ret[0].([]storiface.SectorStorageInfo)
|
2021-05-20 11:01:25 +00:00
|
|
|
ret1, _ := ret[1].(error)
|
|
|
|
return ret0, ret1
|
|
|
|
}
|
|
|
|
|
|
|
|
// StorageFindSector indicates an expected call of StorageFindSector.
|
2021-10-11 19:05:05 +00:00
|
|
|
func (mr *MockSectorIndexMockRecorder) StorageFindSector(arg0, arg1, arg2, arg3, arg4 interface{}) *gomock.Call {
|
2021-05-20 11:01:25 +00:00
|
|
|
mr.mock.ctrl.T.Helper()
|
2021-10-11 19:05:05 +00:00
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "StorageFindSector", reflect.TypeOf((*MockSectorIndex)(nil).StorageFindSector), arg0, arg1, arg2, arg3, arg4)
|
2021-05-20 11:01:25 +00:00
|
|
|
}
|
|
|
|
|
2021-12-03 11:33:23 +00:00
|
|
|
// StorageGetLocks mocks base method.
|
|
|
|
func (m *MockSectorIndex) StorageGetLocks(arg0 context.Context) (storiface.SectorLocks, error) {
|
|
|
|
m.ctrl.T.Helper()
|
|
|
|
ret := m.ctrl.Call(m, "StorageGetLocks", arg0)
|
|
|
|
ret0, _ := ret[0].(storiface.SectorLocks)
|
|
|
|
ret1, _ := ret[1].(error)
|
|
|
|
return ret0, ret1
|
|
|
|
}
|
|
|
|
|
|
|
|
// StorageGetLocks indicates an expected call of StorageGetLocks.
|
|
|
|
func (mr *MockSectorIndexMockRecorder) StorageGetLocks(arg0 interface{}) *gomock.Call {
|
|
|
|
mr.mock.ctrl.T.Helper()
|
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "StorageGetLocks", reflect.TypeOf((*MockSectorIndex)(nil).StorageGetLocks), arg0)
|
|
|
|
}
|
|
|
|
|
2021-05-20 11:01:25 +00:00
|
|
|
// StorageInfo mocks base method.
|
2022-01-18 10:57:04 +00:00
|
|
|
func (m *MockSectorIndex) StorageInfo(arg0 context.Context, arg1 storiface.ID) (storiface.StorageInfo, error) {
|
2021-05-20 11:01:25 +00:00
|
|
|
m.ctrl.T.Helper()
|
|
|
|
ret := m.ctrl.Call(m, "StorageInfo", arg0, arg1)
|
2022-01-18 10:57:04 +00:00
|
|
|
ret0, _ := ret[0].(storiface.StorageInfo)
|
2021-05-20 11:01:25 +00:00
|
|
|
ret1, _ := ret[1].(error)
|
|
|
|
return ret0, ret1
|
|
|
|
}
|
|
|
|
|
|
|
|
// StorageInfo indicates an expected call of StorageInfo.
|
|
|
|
func (mr *MockSectorIndexMockRecorder) StorageInfo(arg0, arg1 interface{}) *gomock.Call {
|
|
|
|
mr.mock.ctrl.T.Helper()
|
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "StorageInfo", reflect.TypeOf((*MockSectorIndex)(nil).StorageInfo), arg0, arg1)
|
|
|
|
}
|
|
|
|
|
2021-06-08 13:33:10 +00:00
|
|
|
// StorageList mocks base method.
|
2022-01-18 10:57:04 +00:00
|
|
|
func (m *MockSectorIndex) StorageList(arg0 context.Context) (map[storiface.ID][]storiface.Decl, error) {
|
2021-06-08 13:33:10 +00:00
|
|
|
m.ctrl.T.Helper()
|
2021-10-11 19:05:05 +00:00
|
|
|
ret := m.ctrl.Call(m, "StorageList", arg0)
|
2022-01-18 10:57:04 +00:00
|
|
|
ret0, _ := ret[0].(map[storiface.ID][]storiface.Decl)
|
2021-06-08 13:33:10 +00:00
|
|
|
ret1, _ := ret[1].(error)
|
|
|
|
return ret0, ret1
|
|
|
|
}
|
|
|
|
|
|
|
|
// StorageList indicates an expected call of StorageList.
|
2021-10-11 19:05:05 +00:00
|
|
|
func (mr *MockSectorIndexMockRecorder) StorageList(arg0 interface{}) *gomock.Call {
|
2021-06-08 13:33:10 +00:00
|
|
|
mr.mock.ctrl.T.Helper()
|
2021-10-11 19:05:05 +00:00
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "StorageList", reflect.TypeOf((*MockSectorIndex)(nil).StorageList), arg0)
|
2021-06-08 13:33:10 +00:00
|
|
|
}
|
|
|
|
|
2021-05-20 11:01:25 +00:00
|
|
|
// StorageLock mocks base method.
|
2021-10-11 19:05:05 +00:00
|
|
|
func (m *MockSectorIndex) StorageLock(arg0 context.Context, arg1 abi.SectorID, arg2, arg3 storiface.SectorFileType) error {
|
2021-05-20 11:01:25 +00:00
|
|
|
m.ctrl.T.Helper()
|
2021-10-11 19:05:05 +00:00
|
|
|
ret := m.ctrl.Call(m, "StorageLock", arg0, arg1, arg2, arg3)
|
2021-05-20 11:01:25 +00:00
|
|
|
ret0, _ := ret[0].(error)
|
|
|
|
return ret0
|
|
|
|
}
|
|
|
|
|
|
|
|
// StorageLock indicates an expected call of StorageLock.
|
2021-10-11 19:05:05 +00:00
|
|
|
func (mr *MockSectorIndexMockRecorder) StorageLock(arg0, arg1, arg2, arg3 interface{}) *gomock.Call {
|
2021-05-20 11:01:25 +00:00
|
|
|
mr.mock.ctrl.T.Helper()
|
2021-10-11 19:05:05 +00:00
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "StorageLock", reflect.TypeOf((*MockSectorIndex)(nil).StorageLock), arg0, arg1, arg2, arg3)
|
2021-05-20 11:01:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// StorageReportHealth mocks base method.
|
2022-01-18 10:57:04 +00:00
|
|
|
func (m *MockSectorIndex) StorageReportHealth(arg0 context.Context, arg1 storiface.ID, arg2 storiface.HealthReport) error {
|
2021-05-20 11:01:25 +00:00
|
|
|
m.ctrl.T.Helper()
|
|
|
|
ret := m.ctrl.Call(m, "StorageReportHealth", arg0, arg1, arg2)
|
|
|
|
ret0, _ := ret[0].(error)
|
|
|
|
return ret0
|
|
|
|
}
|
|
|
|
|
|
|
|
// StorageReportHealth indicates an expected call of StorageReportHealth.
|
|
|
|
func (mr *MockSectorIndexMockRecorder) StorageReportHealth(arg0, arg1, arg2 interface{}) *gomock.Call {
|
|
|
|
mr.mock.ctrl.T.Helper()
|
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "StorageReportHealth", reflect.TypeOf((*MockSectorIndex)(nil).StorageReportHealth), arg0, arg1, arg2)
|
|
|
|
}
|
|
|
|
|
|
|
|
// StorageTryLock mocks base method.
|
2021-10-11 19:05:05 +00:00
|
|
|
func (m *MockSectorIndex) StorageTryLock(arg0 context.Context, arg1 abi.SectorID, arg2, arg3 storiface.SectorFileType) (bool, error) {
|
2021-05-20 11:01:25 +00:00
|
|
|
m.ctrl.T.Helper()
|
2021-10-11 19:05:05 +00:00
|
|
|
ret := m.ctrl.Call(m, "StorageTryLock", arg0, arg1, arg2, arg3)
|
2021-05-20 11:01:25 +00:00
|
|
|
ret0, _ := ret[0].(bool)
|
|
|
|
ret1, _ := ret[1].(error)
|
|
|
|
return ret0, ret1
|
|
|
|
}
|
|
|
|
|
|
|
|
// StorageTryLock indicates an expected call of StorageTryLock.
|
2021-10-11 19:05:05 +00:00
|
|
|
func (mr *MockSectorIndexMockRecorder) StorageTryLock(arg0, arg1, arg2, arg3 interface{}) *gomock.Call {
|
2021-05-20 11:01:25 +00:00
|
|
|
mr.mock.ctrl.T.Helper()
|
2021-10-11 19:05:05 +00:00
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "StorageTryLock", reflect.TypeOf((*MockSectorIndex)(nil).StorageTryLock), arg0, arg1, arg2, arg3)
|
2021-05-20 11:01:25 +00:00
|
|
|
}
|