restic/src/restic/backend/mem/mem_backend_test.go

60 lines
1.2 KiB
Go
Raw Normal View History

2016-01-23 18:19:26 +00:00
package mem_test
import (
2016-08-31 20:51:35 +00:00
"restic"
2017-05-01 20:56:05 +00:00
"testing"
2016-08-31 20:51:35 +00:00
2016-09-01 20:17:37 +00:00
"restic/errors"
"restic/backend/mem"
"restic/backend/test"
)
2017-05-01 20:56:05 +00:00
type memConfig struct {
be restic.Backend
}
2017-05-01 20:56:05 +00:00
func TestSuiteBackendMem(t *testing.T) {
suite := test.Suite{
// NewConfig returns a config for a new temporary backend that will be used in tests.
NewConfig: func() (interface{}, error) {
return &memConfig{}, nil
},
// CreateFn is a function that creates a temporary repository for the tests.
Create: func(cfg interface{}) (restic.Backend, error) {
c := cfg.(*memConfig)
if c.be != nil {
ok, err := c.be.Test(restic.Handle{Type: restic.ConfigFile})
if err != nil {
return nil, err
}
if ok {
return nil, errors.New("config already exists")
}
}
c.be = mem.New()
return c.be, nil
},
// OpenFn is a function that opens a previously created temporary repository.
Open: func(cfg interface{}) (restic.Backend, error) {
c := cfg.(*memConfig)
if c.be == nil {
c.be = mem.New()
}
return c.be, nil
},
// CleanupFn removes data created during the tests.
Cleanup: func(cfg interface{}) error {
// no cleanup needed
return nil
},
}
2017-05-01 20:56:05 +00:00
suite.RunTests(t)
}