restic/test/backend.go

95 lines
2.0 KiB
Go
Raw Normal View History

2015-04-26 14:46:15 +02:00
package test_helper
import (
2015-06-13 12:35:19 +02:00
"fmt"
2015-04-26 14:46:15 +02:00
"io/ioutil"
2015-06-13 12:35:19 +02:00
"os"
2015-04-26 14:46:15 +02:00
"path/filepath"
"testing"
"github.com/restic/restic"
"github.com/restic/restic/backend"
"github.com/restic/restic/backend/local"
"github.com/restic/restic/repository"
2015-04-26 14:46:15 +02:00
)
var (
2015-06-28 13:15:35 +02:00
TestPassword = getStringVar("RESTIC_TEST_PASSWORD", "geheim")
TestCleanup = getBoolVar("RESTIC_TEST_CLEANUP", true)
TestTempDir = getStringVar("RESTIC_TEST_TMPDIR", "")
RunIntegrationTest = getBoolVar("RESTIC_TEST_INTEGRATION", true)
TestSFTPPath = getStringVar("RESTIC_TEST_SFTPPATH", "/usr/lib/ssh:/usr/lib/openssh")
TestWalkerPath = getStringVar("RESTIC_TEST_PATH", ".")
BenchArchiveDirectory = getStringVar("RESTIC_BENCH_DIR", ".")
)
2015-04-26 14:46:15 +02:00
2015-06-13 12:35:19 +02:00
func getStringVar(name, defaultValue string) string {
if e := os.Getenv(name); e != "" {
return e
}
return defaultValue
}
func getBoolVar(name string, defaultValue bool) bool {
if e := os.Getenv(name); e != "" {
switch e {
case "1":
return true
case "0":
return false
default:
fmt.Fprintf(os.Stderr, "invalid value for variable %q, using default\n", name)
}
}
return defaultValue
}
func SetupRepo() *repository.Repository {
2015-06-13 12:35:19 +02:00
tempdir, err := ioutil.TempDir(TestTempDir, "restic-test-")
if err != nil {
panic(err)
}
2015-04-26 14:46:15 +02:00
// create repository below temp dir
b, err := local.Create(filepath.Join(tempdir, "repo"))
if err != nil {
panic(err)
}
2015-04-26 14:46:15 +02:00
repo := repository.New(b)
err = repo.Init(TestPassword)
if err != nil {
panic(err)
}
2015-05-09 13:32:52 +02:00
return repo
2015-04-26 14:46:15 +02:00
}
func TeardownRepo(repo *repository.Repository) {
2015-06-13 12:35:19 +02:00
if !TestCleanup {
2015-05-09 13:32:52 +02:00
l := repo.Backend().(*local.Local)
fmt.Printf("leaving local backend at %s\n", l.Location())
2015-04-26 14:46:15 +02:00
return
}
err := repo.Delete()
if err != nil {
panic(err)
}
2015-04-26 14:46:15 +02:00
}
2015-05-09 23:59:58 +02:00
func SnapshotDir(t testing.TB, repo *repository.Repository, path string, parent backend.ID) *restic.Snapshot {
2015-05-09 13:32:52 +02:00
arch := restic.NewArchiver(repo)
2015-04-26 14:46:15 +02:00
sn, _, err := arch.Snapshot(nil, []string{path}, parent)
OK(t, err)
return sn
}
func WithRepo(t testing.TB, f func(*repository.Repository)) {
repo := SetupRepo()
f(repo)
TeardownRepo(repo)
}