2015-11-22 14:15:07 +00:00
|
|
|
package backend
|
|
|
|
|
2016-01-24 00:00:27 +00:00
|
|
|
import "errors"
|
2015-11-22 14:15:07 +00:00
|
|
|
|
|
|
|
// MockBackend implements a backend whose functions can be specified. This
|
|
|
|
// should only be used for tests.
|
|
|
|
type MockBackend struct {
|
2016-01-24 00:00:27 +00:00
|
|
|
CloseFn func() error
|
|
|
|
CreateFn func() (Blob, error)
|
|
|
|
LoadFn func(h Handle, p []byte, off int64) (int, error)
|
2016-01-24 00:15:35 +00:00
|
|
|
SaveFn func(h Handle, p []byte) error
|
2016-01-24 00:00:27 +00:00
|
|
|
StatFn func(h Handle) (BlobInfo, error)
|
|
|
|
ListFn func(Type, <-chan struct{}) <-chan string
|
|
|
|
RemoveFn func(Type, string) error
|
|
|
|
TestFn func(Type, string) (bool, error)
|
|
|
|
DeleteFn func() error
|
|
|
|
LocationFn func() string
|
2015-11-22 14:15:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *MockBackend) Close() error {
|
|
|
|
if m.CloseFn == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return m.CloseFn()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *MockBackend) Location() string {
|
|
|
|
if m.LocationFn == nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
return m.LocationFn()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *MockBackend) Create() (Blob, error) {
|
|
|
|
if m.CreateFn == nil {
|
|
|
|
return nil, errors.New("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
return m.CreateFn()
|
|
|
|
}
|
|
|
|
|
2016-01-23 13:12:12 +00:00
|
|
|
func (m *MockBackend) Load(h Handle, p []byte, off int64) (int, error) {
|
|
|
|
if m.LoadFn == nil {
|
|
|
|
return 0, errors.New("not implemented")
|
|
|
|
}
|
|
|
|
|
2016-01-23 16:19:47 +00:00
|
|
|
return m.LoadFn(h, p, off)
|
2016-01-23 13:12:12 +00:00
|
|
|
}
|
|
|
|
|
2016-01-24 00:15:35 +00:00
|
|
|
func (m *MockBackend) Save(h Handle, p []byte) error {
|
|
|
|
if m.SaveFn == nil {
|
|
|
|
return errors.New("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
return m.SaveFn(h, p)
|
|
|
|
}
|
|
|
|
|
2016-01-23 22:27:58 +00:00
|
|
|
func (m *MockBackend) Stat(h Handle) (BlobInfo, error) {
|
|
|
|
if m.StatFn == nil {
|
|
|
|
return BlobInfo{}, errors.New("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
return m.StatFn(h)
|
|
|
|
}
|
|
|
|
|
2015-11-22 14:15:07 +00:00
|
|
|
func (m *MockBackend) List(t Type, done <-chan struct{}) <-chan string {
|
|
|
|
if m.ListFn == nil {
|
|
|
|
ch := make(chan string)
|
|
|
|
close(ch)
|
|
|
|
return ch
|
|
|
|
}
|
|
|
|
|
|
|
|
return m.ListFn(t, done)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *MockBackend) Remove(t Type, name string) error {
|
|
|
|
if m.RemoveFn == nil {
|
|
|
|
return errors.New("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
return m.RemoveFn(t, name)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *MockBackend) Test(t Type, name string) (bool, error) {
|
|
|
|
if m.TestFn == nil {
|
|
|
|
return false, errors.New("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
return m.TestFn(t, name)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *MockBackend) Delete() error {
|
|
|
|
if m.DeleteFn == nil {
|
|
|
|
return errors.New("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
return m.DeleteFn()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure that MockBackend implements the backend interface.
|
|
|
|
var _ Backend = &MockBackend{}
|