2016-01-23 16:42:26 +00:00
|
|
|
package test_test
|
2016-01-23 16:08:03 +00:00
|
|
|
|
2016-01-23 16:42:26 +00:00
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
|
|
|
|
"github.com/restic/restic/backend"
|
2016-01-23 18:19:26 +00:00
|
|
|
"github.com/restic/restic/backend/mem"
|
2016-01-23 16:42:26 +00:00
|
|
|
"github.com/restic/restic/backend/test"
|
|
|
|
)
|
|
|
|
|
|
|
|
var be backend.Backend
|
|
|
|
|
|
|
|
//go:generate go run ../test/generate_backend_tests.go
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
test.CreateFn = func() (backend.Backend, error) {
|
|
|
|
if be != nil {
|
|
|
|
return nil, errors.New("temporary memory backend dir already exists")
|
|
|
|
}
|
|
|
|
|
2016-01-23 18:19:26 +00:00
|
|
|
be = mem.New()
|
2016-01-23 16:42:26 +00:00
|
|
|
|
|
|
|
return be, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
test.OpenFn = func() (backend.Backend, error) {
|
|
|
|
if be == nil {
|
|
|
|
return nil, errors.New("repository not initialized")
|
|
|
|
}
|
|
|
|
|
|
|
|
return be, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
test.CleanupFn = func() error {
|
|
|
|
be = nil
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|