110 lines
3.7 KiB
Go
110 lines
3.7 KiB
Go
|
// Copyright (C) 2018 Storj Labs, Inc.
|
||
|
// See LICENSE for copying information.
|
||
|
// Code generated by MockGen. DO NOT EDIT.
|
||
|
// Source: storj.io/storj/pkg/storage/objects (interfaces: Store)
|
||
|
|
||
|
// Package storj is a generated GoMock package.
|
||
|
package miniogw
|
||
|
|
||
|
import (
|
||
|
context "context"
|
||
|
io "io"
|
||
|
reflect "reflect"
|
||
|
time "time"
|
||
|
|
||
|
gomock "github.com/golang/mock/gomock"
|
||
|
paths "storj.io/storj/pkg/paths"
|
||
|
ranger "storj.io/storj/pkg/ranger"
|
||
|
storage "storj.io/storj/pkg/storage"
|
||
|
meta "storj.io/storj/protos/meta"
|
||
|
)
|
||
|
|
||
|
// MockStore is a mock of Store interface
|
||
|
type MockStore struct {
|
||
|
ctrl *gomock.Controller
|
||
|
recorder *MockStoreMockRecorder
|
||
|
}
|
||
|
|
||
|
// MockStoreMockRecorder is the mock recorder for MockStore
|
||
|
type MockStoreMockRecorder struct {
|
||
|
mock *MockStore
|
||
|
}
|
||
|
|
||
|
// NewMockStore creates a new mock instance
|
||
|
func NewMockStore(ctrl *gomock.Controller) *MockStore {
|
||
|
mock := &MockStore{ctrl: ctrl}
|
||
|
mock.recorder = &MockStoreMockRecorder{mock}
|
||
|
return mock
|
||
|
}
|
||
|
|
||
|
// EXPECT returns an object that allows the caller to indicate expected use
|
||
|
func (m *MockStore) EXPECT() *MockStoreMockRecorder {
|
||
|
return m.recorder
|
||
|
}
|
||
|
|
||
|
// Delete mocks base method
|
||
|
func (m *MockStore) Delete(arg0 context.Context, arg1 paths.Path) error {
|
||
|
ret := m.ctrl.Call(m, "Delete", arg0, arg1)
|
||
|
ret0, _ := ret[0].(error)
|
||
|
return ret0
|
||
|
}
|
||
|
|
||
|
// Delete indicates an expected call of Delete
|
||
|
func (mr *MockStoreMockRecorder) Delete(arg0, arg1 interface{}) *gomock.Call {
|
||
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Delete", reflect.TypeOf((*MockStore)(nil).Delete), arg0, arg1)
|
||
|
}
|
||
|
|
||
|
// Get mocks base method
|
||
|
func (m *MockStore) Get(arg0 context.Context, arg1 paths.Path) (ranger.RangeCloser, storage.Meta, error) {
|
||
|
ret := m.ctrl.Call(m, "Get", arg0, arg1)
|
||
|
ret0, _ := ret[0].(ranger.RangeCloser)
|
||
|
ret1, _ := ret[1].(storage.Meta)
|
||
|
ret2, _ := ret[2].(error)
|
||
|
return ret0, ret1, ret2
|
||
|
}
|
||
|
|
||
|
// Get indicates an expected call of Get
|
||
|
func (mr *MockStoreMockRecorder) Get(arg0, arg1 interface{}) *gomock.Call {
|
||
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Get", reflect.TypeOf((*MockStore)(nil).Get), arg0, arg1)
|
||
|
}
|
||
|
|
||
|
// List mocks base method
|
||
|
func (m *MockStore) List(arg0 context.Context, arg1, arg2, arg3 paths.Path, arg4 bool, arg5 int, arg6 uint64) ([]storage.ListItem, bool, error) {
|
||
|
ret := m.ctrl.Call(m, "List", arg0, arg1, arg2, arg3, arg4, arg5, arg6)
|
||
|
ret0, _ := ret[0].([]storage.ListItem)
|
||
|
ret1, _ := ret[1].(bool)
|
||
|
ret2, _ := ret[2].(error)
|
||
|
return ret0, ret1, ret2
|
||
|
}
|
||
|
|
||
|
// List indicates an expected call of List
|
||
|
func (mr *MockStoreMockRecorder) List(arg0, arg1, arg2, arg3, arg4, arg5, arg6 interface{}) *gomock.Call {
|
||
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "List", reflect.TypeOf((*MockStore)(nil).List), arg0, arg1, arg2, arg3, arg4, arg5, arg6)
|
||
|
}
|
||
|
|
||
|
// Meta mocks base method
|
||
|
func (m *MockStore) Meta(arg0 context.Context, arg1 paths.Path) (storage.Meta, error) {
|
||
|
ret := m.ctrl.Call(m, "Meta", arg0, arg1)
|
||
|
ret0, _ := ret[0].(storage.Meta)
|
||
|
ret1, _ := ret[1].(error)
|
||
|
return ret0, ret1
|
||
|
}
|
||
|
|
||
|
// Meta indicates an expected call of Meta
|
||
|
func (mr *MockStoreMockRecorder) Meta(arg0, arg1 interface{}) *gomock.Call {
|
||
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Meta", reflect.TypeOf((*MockStore)(nil).Meta), arg0, arg1)
|
||
|
}
|
||
|
|
||
|
// Put mocks base method
|
||
|
func (m *MockStore) Put(arg0 context.Context, arg1 paths.Path, arg2 io.Reader, arg3 meta.Serializable, arg4 time.Time) (storage.Meta, error) {
|
||
|
ret := m.ctrl.Call(m, "Put", arg0, arg1, arg2, arg3, arg4)
|
||
|
ret0, _ := ret[0].(storage.Meta)
|
||
|
ret1, _ := ret[1].(error)
|
||
|
return ret0, ret1
|
||
|
}
|
||
|
|
||
|
// Put indicates an expected call of Put
|
||
|
func (mr *MockStoreMockRecorder) Put(arg0, arg1, arg2, arg3, arg4 interface{}) *gomock.Call {
|
||
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Put", reflect.TypeOf((*MockStore)(nil).Put), arg0, arg1, arg2, arg3, arg4)
|
||
|
}
|