2016-08-31 17:10:10 +00:00
|
|
|
package mock
|
|
|
|
|
|
|
|
import (
|
2017-06-04 09:16:55 +00:00
|
|
|
"context"
|
2017-01-22 11:32:20 +00:00
|
|
|
"io"
|
2016-08-31 17:10:10 +00:00
|
|
|
|
2017-07-23 12:21:03 +00:00
|
|
|
"github.com/restic/restic/internal"
|
|
|
|
|
|
|
|
"github.com/restic/restic/internal/errors"
|
2016-08-31 17:10:10 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Backend implements a mock backend.
|
|
|
|
type Backend struct {
|
2017-06-15 11:40:27 +00:00
|
|
|
CloseFn func() error
|
|
|
|
IsNotExistFn func(err error) bool
|
|
|
|
SaveFn func(ctx context.Context, h restic.Handle, rd io.Reader) error
|
|
|
|
LoadFn func(ctx context.Context, h restic.Handle, length int, offset int64) (io.ReadCloser, error)
|
|
|
|
StatFn func(ctx context.Context, h restic.Handle) (restic.FileInfo, error)
|
|
|
|
ListFn func(ctx context.Context, t restic.FileType) <-chan string
|
|
|
|
RemoveFn func(ctx context.Context, h restic.Handle) error
|
|
|
|
TestFn func(ctx context.Context, h restic.Handle) (bool, error)
|
|
|
|
DeleteFn func(ctx context.Context) error
|
|
|
|
LocationFn func() string
|
2016-08-31 17:10:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Close the backend.
|
|
|
|
func (m *Backend) Close() error {
|
|
|
|
if m.CloseFn == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return m.CloseFn()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Location returns a location string.
|
|
|
|
func (m *Backend) Location() string {
|
|
|
|
if m.LocationFn == nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
return m.LocationFn()
|
|
|
|
}
|
|
|
|
|
2017-06-15 11:40:27 +00:00
|
|
|
// IsNotExist returns true if the error is caused by a missing file.
|
|
|
|
func (m *Backend) IsNotExist(err error) bool {
|
|
|
|
if m.IsNotExistFn == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return m.IsNotExistFn(err)
|
|
|
|
}
|
|
|
|
|
2016-08-31 17:10:10 +00:00
|
|
|
// Save data in the backend.
|
2017-06-04 09:16:55 +00:00
|
|
|
func (m *Backend) Save(ctx context.Context, h restic.Handle, rd io.Reader) error {
|
2016-08-31 17:10:10 +00:00
|
|
|
if m.SaveFn == nil {
|
|
|
|
return errors.New("not implemented")
|
|
|
|
}
|
|
|
|
|
2017-06-04 09:16:55 +00:00
|
|
|
return m.SaveFn(ctx, h, rd)
|
2016-08-31 17:10:10 +00:00
|
|
|
}
|
|
|
|
|
2017-01-23 17:11:10 +00:00
|
|
|
// Load loads data from the backend.
|
2017-06-04 09:16:55 +00:00
|
|
|
func (m *Backend) Load(ctx context.Context, h restic.Handle, length int, offset int64) (io.ReadCloser, error) {
|
2017-01-23 17:11:10 +00:00
|
|
|
if m.LoadFn == nil {
|
2017-01-22 21:01:12 +00:00
|
|
|
return nil, errors.New("not implemented")
|
|
|
|
}
|
|
|
|
|
2017-06-04 09:16:55 +00:00
|
|
|
return m.LoadFn(ctx, h, length, offset)
|
2017-01-22 21:01:12 +00:00
|
|
|
}
|
|
|
|
|
2016-08-31 17:10:10 +00:00
|
|
|
// Stat an object in the backend.
|
2017-06-04 09:16:55 +00:00
|
|
|
func (m *Backend) Stat(ctx context.Context, h restic.Handle) (restic.FileInfo, error) {
|
2016-08-31 17:10:10 +00:00
|
|
|
if m.StatFn == nil {
|
2016-08-31 20:39:36 +00:00
|
|
|
return restic.FileInfo{}, errors.New("not implemented")
|
2016-08-31 17:10:10 +00:00
|
|
|
}
|
|
|
|
|
2017-06-04 09:16:55 +00:00
|
|
|
return m.StatFn(ctx, h)
|
2016-08-31 17:10:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// List items of type t.
|
2017-06-04 09:16:55 +00:00
|
|
|
func (m *Backend) List(ctx context.Context, t restic.FileType) <-chan string {
|
2016-08-31 17:10:10 +00:00
|
|
|
if m.ListFn == nil {
|
|
|
|
ch := make(chan string)
|
|
|
|
close(ch)
|
|
|
|
return ch
|
|
|
|
}
|
|
|
|
|
2017-06-04 09:16:55 +00:00
|
|
|
return m.ListFn(ctx, t)
|
2016-08-31 17:10:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Remove data from the backend.
|
2017-06-04 09:16:55 +00:00
|
|
|
func (m *Backend) Remove(ctx context.Context, h restic.Handle) error {
|
2016-08-31 17:10:10 +00:00
|
|
|
if m.RemoveFn == nil {
|
|
|
|
return errors.New("not implemented")
|
|
|
|
}
|
|
|
|
|
2017-06-04 09:16:55 +00:00
|
|
|
return m.RemoveFn(ctx, h)
|
2016-08-31 17:10:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Test for the existence of a specific item.
|
2017-06-04 09:16:55 +00:00
|
|
|
func (m *Backend) Test(ctx context.Context, h restic.Handle) (bool, error) {
|
2016-08-31 17:10:10 +00:00
|
|
|
if m.TestFn == nil {
|
|
|
|
return false, errors.New("not implemented")
|
|
|
|
}
|
|
|
|
|
2017-06-04 09:16:55 +00:00
|
|
|
return m.TestFn(ctx, h)
|
2016-08-31 17:10:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Delete all data.
|
2017-06-04 09:16:55 +00:00
|
|
|
func (m *Backend) Delete(ctx context.Context) error {
|
2016-08-31 17:10:10 +00:00
|
|
|
if m.DeleteFn == nil {
|
|
|
|
return errors.New("not implemented")
|
|
|
|
}
|
|
|
|
|
2017-06-04 09:16:55 +00:00
|
|
|
return m.DeleteFn(ctx)
|
2016-08-31 17:10:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure that Backend implements the backend interface.
|
|
|
|
var _ restic.Backend = &Backend{}
|