restic/internal/backend/rclone/backend_test.go

51 lines
1.0 KiB
Go
Raw Normal View History

2018-03-13 22:30:51 +01:00
package rclone_test
import (
"os/exec"
2018-03-13 22:30:51 +01:00
"testing"
"github.com/restic/restic/internal/backend/rclone"
"github.com/restic/restic/internal/backend/test"
rtest "github.com/restic/restic/internal/test"
)
func newTestSuite(t testing.TB) *test.Suite[rclone.Config] {
dir := rtest.TempDir(t)
2018-03-13 22:30:51 +01:00
return &test.Suite[rclone.Config]{
2018-03-13 22:30:51 +01:00
// NewConfig returns a config for a new temporary backend that will be used in tests.
NewConfig: func() (*rclone.Config, error) {
2018-03-13 22:30:51 +01:00
t.Logf("use backend at %v", dir)
cfg := rclone.NewConfig()
2018-03-15 19:00:25 +01:00
cfg.Remote = dir
return &cfg, nil
2018-03-13 22:30:51 +01:00
},
Factory: rclone.NewFactory(),
}
}
2018-03-13 22:30:51 +01:00
func findRclone(t testing.TB) {
// try to find a rclone binary
_, err := exec.LookPath("rclone")
if err != nil {
t.Skip(err)
2018-03-13 22:30:51 +01:00
}
}
func TestBackendRclone(t *testing.T) {
defer func() {
if t.Skipped() {
rtest.SkipDisallowed(t, "restic/backend/rclone.TestBackendRclone")
}
}()
findRclone(t)
2018-03-13 22:30:51 +01:00
newTestSuite(t).RunTests(t)
}
func BenchmarkBackendREST(t *testing.B) {
findRclone(t)
2018-03-13 22:30:51 +01:00
newTestSuite(t).RunBenchmarks(t)
}