// Code generated by mockery v2.9.4. DO NOT EDIT. package mocks import ( context "context" io "io" mock "github.com/stretchr/testify/mock" ) // FileStore is an autogenerated mock type for the FileStore type type FileStore struct { mock.Mock } // GetObject provides a mock function with given fields: _a0, _a1 func (_m *FileStore) GetObject(_a0 context.Context, _a1 string) (io.ReadCloser, error) { ret := _m.Called(_a0, _a1) var r0 io.ReadCloser if rf, ok := ret.Get(0).(func(context.Context, string) io.ReadCloser); ok { r0 = rf(_a0, _a1) } else { if ret.Get(0) != nil { r0 = ret.Get(0).(io.ReadCloser) } } var r1 error if rf, ok := ret.Get(1).(func(context.Context, string) error); ok { r1 = rf(_a0, _a1) } else { r1 = ret.Error(1) } return r0, r1 } // GetObjectWithRange provides a mock function with given fields: _a0, _a1, _a2, _a3 func (_m *FileStore) GetObjectWithRange(_a0 context.Context, _a1 string, _a2 int64, _a3 int64) (io.ReadCloser, error) { ret := _m.Called(_a0, _a1, _a2, _a3) var r0 io.ReadCloser if rf, ok := ret.Get(0).(func(context.Context, string, int64, int64) io.ReadCloser); ok { r0 = rf(_a0, _a1, _a2, _a3) } else { if ret.Get(0) != nil { r0 = ret.Get(0).(io.ReadCloser) } } var r1 error if rf, ok := ret.Get(1).(func(context.Context, string, int64, int64) error); ok { r1 = rf(_a0, _a1, _a2, _a3) } else { r1 = ret.Error(1) } return r0, r1 } // GetURL provides a mock function with given fields: _a0, _a1 func (_m *FileStore) GetURL(_a0 context.Context, _a1 string) (string, error) { ret := _m.Called(_a0, _a1) var r0 string if rf, ok := ret.Get(0).(func(context.Context, string) string); ok { r0 = rf(_a0, _a1) } else { r0 = ret.Get(0).(string) } var r1 error if rf, ok := ret.Get(1).(func(context.Context, string) error); ok { r1 = rf(_a0, _a1) } else { r1 = ret.Error(1) } return r0, r1 } // PutObject provides a mock function with given fields: _a0, _a1, _a2, _a3 func (_m *FileStore) PutObject(_a0 context.Context, _a1 string, _a2 io.Reader, _a3 string) (int64, error) { ret := _m.Called(_a0, _a1, _a2, _a3) var r0 int64 if rf, ok := ret.Get(0).(func(context.Context, string, io.Reader, string) int64); ok { r0 = rf(_a0, _a1, _a2, _a3) } else { r0 = ret.Get(0).(int64) } var r1 error if rf, ok := ret.Get(1).(func(context.Context, string, io.Reader, string) error); ok { r1 = rf(_a0, _a1, _a2, _a3) } else { r1 = ret.Error(1) } return r0, r1 }