2018-03-13 21:30:51 +00:00
|
|
|
package rclone_test
|
|
|
|
|
|
|
|
import (
|
2020-04-10 10:08:52 +00:00
|
|
|
"context"
|
2018-03-14 20:14:54 +00:00
|
|
|
"os/exec"
|
2018-03-13 21:30:51 +00:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/restic/restic/internal/backend/rclone"
|
|
|
|
"github.com/restic/restic/internal/backend/test"
|
2018-03-14 20:14:54 +00:00
|
|
|
"github.com/restic/restic/internal/errors"
|
2018-03-13 21:30:51 +00:00
|
|
|
"github.com/restic/restic/internal/restic"
|
|
|
|
rtest "github.com/restic/restic/internal/test"
|
|
|
|
)
|
|
|
|
|
2023-04-21 19:06:56 +00:00
|
|
|
func newTestSuite(t testing.TB) *test.Suite[rclone.Config] {
|
2022-12-09 12:42:33 +00:00
|
|
|
dir := rtest.TempDir(t)
|
2018-03-13 21:30:51 +00:00
|
|
|
|
2023-04-21 19:06:56 +00:00
|
|
|
return &test.Suite[rclone.Config]{
|
2018-03-13 21:30:51 +00:00
|
|
|
// NewConfig returns a config for a new temporary backend that will be used in tests.
|
2023-04-21 19:35:34 +00:00
|
|
|
NewConfig: func() (*rclone.Config, error) {
|
2018-03-13 21:30:51 +00:00
|
|
|
t.Logf("use backend at %v", dir)
|
|
|
|
cfg := rclone.NewConfig()
|
2018-03-15 18:00:25 +00:00
|
|
|
cfg.Remote = dir
|
2023-04-21 19:35:34 +00:00
|
|
|
return &cfg, nil
|
2018-03-13 21:30:51 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
// CreateFn is a function that creates a temporary repository for the tests.
|
2023-04-21 19:06:56 +00:00
|
|
|
Create: func(cfg rclone.Config) (restic.Backend, error) {
|
2018-03-13 21:30:51 +00:00
|
|
|
t.Logf("Create()")
|
2023-06-08 11:04:34 +00:00
|
|
|
be, err := rclone.Create(context.TODO(), cfg, nil)
|
2022-06-13 18:35:37 +00:00
|
|
|
var e *exec.Error
|
|
|
|
if errors.As(err, &e) && e.Err == exec.ErrNotFound {
|
2018-03-14 20:14:54 +00:00
|
|
|
t.Skipf("program %q not found", e.Name)
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
return be, err
|
2018-03-13 21:30:51 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
// OpenFn is a function that opens a previously created temporary repository.
|
2023-04-21 19:06:56 +00:00
|
|
|
Open: func(cfg rclone.Config) (restic.Backend, error) {
|
2018-03-13 21:30:51 +00:00
|
|
|
t.Logf("Open()")
|
2023-06-08 11:11:34 +00:00
|
|
|
return rclone.Open(context.TODO(), cfg, nil)
|
2018-03-13 21:30:51 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestBackendRclone(t *testing.T) {
|
|
|
|
defer func() {
|
|
|
|
if t.Skipped() {
|
|
|
|
rtest.SkipDisallowed(t, "restic/backend/rclone.TestBackendRclone")
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
newTestSuite(t).RunTests(t)
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkBackendREST(t *testing.B) {
|
|
|
|
newTestSuite(t).RunBenchmarks(t)
|
|
|
|
}
|