2017-05-28 08:19:01 +00:00
|
|
|
package b2_test
|
|
|
|
|
|
|
|
import (
|
2017-06-03 15:39:57 +00:00
|
|
|
"context"
|
2017-05-28 08:19:01 +00:00
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"restic"
|
|
|
|
"restic/backend/b2"
|
|
|
|
"restic/backend/test"
|
|
|
|
|
|
|
|
. "restic/test"
|
|
|
|
)
|
|
|
|
|
|
|
|
func newB2TestSuite(t testing.TB) *test.Suite {
|
|
|
|
return &test.Suite{
|
|
|
|
// do not use excessive data
|
|
|
|
MinimalData: true,
|
|
|
|
|
2017-06-18 15:36:57 +00:00
|
|
|
// wait for at most 10 seconds for removed files to disappear
|
|
|
|
WaitForDelayedRemoval: 10 * time.Second,
|
|
|
|
|
2017-05-28 08:19:01 +00:00
|
|
|
// NewConfig returns a config for a new temporary backend that will be used in tests.
|
|
|
|
NewConfig: func() (interface{}, error) {
|
|
|
|
b2cfg, err := b2.ParseConfig(os.Getenv("RESTIC_TEST_B2_REPOSITORY"))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
cfg := b2cfg.(b2.Config)
|
|
|
|
cfg.AccountID = os.Getenv("RESTIC_TEST_B2_ACCOUNT_ID")
|
|
|
|
cfg.Key = os.Getenv("RESTIC_TEST_B2_ACCOUNT_KEY")
|
|
|
|
cfg.Prefix = fmt.Sprintf("test-%d", time.Now().UnixNano())
|
|
|
|
return cfg, nil
|
|
|
|
},
|
|
|
|
|
|
|
|
// CreateFn is a function that creates a temporary repository for the tests.
|
|
|
|
Create: func(config interface{}) (restic.Backend, error) {
|
|
|
|
cfg := config.(b2.Config)
|
|
|
|
return b2.Create(cfg)
|
|
|
|
},
|
|
|
|
|
|
|
|
// OpenFn is a function that opens a previously created temporary repository.
|
|
|
|
Open: func(config interface{}) (restic.Backend, error) {
|
|
|
|
cfg := config.(b2.Config)
|
|
|
|
return b2.Open(cfg)
|
|
|
|
},
|
|
|
|
|
|
|
|
// CleanupFn removes data created during the tests.
|
|
|
|
Cleanup: func(config interface{}) error {
|
|
|
|
cfg := config.(b2.Config)
|
|
|
|
be, err := b2.Open(cfg)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-06-03 15:39:57 +00:00
|
|
|
if err := be.(restic.Deleter).Delete(context.TODO()); err != nil {
|
2017-05-28 08:19:01 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func testVars(t testing.TB) {
|
|
|
|
vars := []string{
|
|
|
|
"RESTIC_TEST_B2_ACCOUNT_ID",
|
|
|
|
"RESTIC_TEST_B2_ACCOUNT_KEY",
|
|
|
|
"RESTIC_TEST_B2_REPOSITORY",
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, v := range vars {
|
|
|
|
if os.Getenv(v) == "" {
|
|
|
|
t.Skipf("environment variable %v not set", v)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestBackendB2(t *testing.T) {
|
|
|
|
defer func() {
|
|
|
|
if t.Skipped() {
|
|
|
|
SkipDisallowed(t, "restic/backend/b2.TestBackendB2")
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
testVars(t)
|
|
|
|
newB2TestSuite(t).RunTests(t)
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkBackendb2(t *testing.B) {
|
|
|
|
testVars(t)
|
|
|
|
newB2TestSuite(t).RunBenchmarks(t)
|
|
|
|
}
|