mirror of
https://github.com/octoleo/restic.git
synced 2024-11-23 05:12:10 +00:00
s3: Add benchmarks
This commit is contained in:
parent
5b8131e2d3
commit
d24e0cc6cc
@ -79,7 +79,7 @@ func runMinio(ctx context.Context, t testing.TB, dir, key, secret string) func()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func newCredentials(t testing.TB) (key, secret string) {
|
func newRandomCredentials(t testing.TB) (key, secret string) {
|
||||||
buf := make([]byte, 10)
|
buf := make([]byte, 10)
|
||||||
_, err := io.ReadFull(rand.Reader, buf)
|
_, err := io.ReadFull(rand.Reader, buf)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -96,38 +96,22 @@ func newCredentials(t testing.TB) (key, secret string) {
|
|||||||
return key, secret
|
return key, secret
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestBackendMinio(t *testing.T) {
|
type MinioTestConfig struct {
|
||||||
defer func() {
|
|
||||||
if t.Skipped() {
|
|
||||||
SkipDisallowed(t, "restic/backend/s3.TestBackendMinio")
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
|
|
||||||
// try to find a minio binary
|
|
||||||
_, err := exec.LookPath("minio")
|
|
||||||
if err != nil {
|
|
||||||
t.Skip(err)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
ctx, cancel := context.WithCancel(context.Background())
|
|
||||||
defer cancel()
|
|
||||||
|
|
||||||
type Config struct {
|
|
||||||
s3.Config
|
s3.Config
|
||||||
|
|
||||||
tempdir string
|
tempdir string
|
||||||
removeTempdir func()
|
removeTempdir func()
|
||||||
stopServer func()
|
stopServer func()
|
||||||
}
|
}
|
||||||
|
|
||||||
suite := test.Suite{
|
func newMinioTestSuite(ctx context.Context, t testing.TB) *test.Suite {
|
||||||
|
return &test.Suite{
|
||||||
// NewConfig returns a config for a new temporary backend that will be used in tests.
|
// NewConfig returns a config for a new temporary backend that will be used in tests.
|
||||||
NewConfig: func() (interface{}, error) {
|
NewConfig: func() (interface{}, error) {
|
||||||
cfg := Config{}
|
cfg := MinioTestConfig{}
|
||||||
|
|
||||||
cfg.tempdir, cfg.removeTempdir = TempDir(t)
|
cfg.tempdir, cfg.removeTempdir = TempDir(t)
|
||||||
key, secret := newCredentials(t)
|
key, secret := newRandomCredentials(t)
|
||||||
cfg.stopServer = runMinio(ctx, t, cfg.tempdir, key, secret)
|
cfg.stopServer = runMinio(ctx, t, cfg.tempdir, key, secret)
|
||||||
|
|
||||||
cfg.Config = s3.Config{
|
cfg.Config = s3.Config{
|
||||||
@ -143,7 +127,7 @@ func TestBackendMinio(t *testing.T) {
|
|||||||
|
|
||||||
// CreateFn is a function that creates a temporary repository for the tests.
|
// CreateFn is a function that creates a temporary repository for the tests.
|
||||||
Create: func(config interface{}) (restic.Backend, error) {
|
Create: func(config interface{}) (restic.Backend, error) {
|
||||||
cfg := config.(Config)
|
cfg := config.(MinioTestConfig)
|
||||||
|
|
||||||
be, err := s3.Open(cfg.Config)
|
be, err := s3.Open(cfg.Config)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -164,13 +148,13 @@ func TestBackendMinio(t *testing.T) {
|
|||||||
|
|
||||||
// OpenFn is a function that opens a previously created temporary repository.
|
// OpenFn is a function that opens a previously created temporary repository.
|
||||||
Open: func(config interface{}) (restic.Backend, error) {
|
Open: func(config interface{}) (restic.Backend, error) {
|
||||||
cfg := config.(Config)
|
cfg := config.(MinioTestConfig)
|
||||||
return s3.Open(cfg.Config)
|
return s3.Open(cfg.Config)
|
||||||
},
|
},
|
||||||
|
|
||||||
// CleanupFn removes data created during the tests.
|
// CleanupFn removes data created during the tests.
|
||||||
Cleanup: func(config interface{}) error {
|
Cleanup: func(config interface{}) error {
|
||||||
cfg := config.(Config)
|
cfg := config.(MinioTestConfig)
|
||||||
if cfg.stopServer != nil {
|
if cfg.stopServer != nil {
|
||||||
cfg.stopServer()
|
cfg.stopServer()
|
||||||
}
|
}
|
||||||
@ -180,31 +164,44 @@ func TestBackendMinio(t *testing.T) {
|
|||||||
return nil
|
return nil
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
suite.RunTests(t)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestBackendS3(t *testing.T) {
|
func TestBackendMinio(t *testing.T) {
|
||||||
defer func() {
|
defer func() {
|
||||||
if t.Skipped() {
|
if t.Skipped() {
|
||||||
SkipDisallowed(t, "restic/backend/s3.TestBackendS3")
|
SkipDisallowed(t, "restic/backend/s3.TestBackendMinio")
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
|
||||||
vars := []string{
|
// try to find a minio binary
|
||||||
"RESTIC_TEST_S3_KEY",
|
_, err := exec.LookPath("minio")
|
||||||
"RESTIC_TEST_S3_SECRET",
|
if err != nil {
|
||||||
"RESTIC_TEST_S3_REPOSITORY",
|
t.Skip(err)
|
||||||
}
|
|
||||||
|
|
||||||
for _, v := range vars {
|
|
||||||
if os.Getenv(v) == "" {
|
|
||||||
t.Skipf("environment variable %v not set", v)
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ctx, cancel := context.WithCancel(context.Background())
|
||||||
|
defer cancel()
|
||||||
|
|
||||||
|
newMinioTestSuite(ctx, t).RunTests(t)
|
||||||
|
}
|
||||||
|
|
||||||
|
func BenchmarkBackendMinio(t *testing.B) {
|
||||||
|
// try to find a minio binary
|
||||||
|
_, err := exec.LookPath("minio")
|
||||||
|
if err != nil {
|
||||||
|
t.Skip(err)
|
||||||
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
suite := test.Suite{
|
ctx, cancel := context.WithCancel(context.Background())
|
||||||
|
defer cancel()
|
||||||
|
|
||||||
|
newMinioTestSuite(ctx, t).RunBenchmarks(t)
|
||||||
|
}
|
||||||
|
|
||||||
|
func newS3TestSuite(t testing.TB) *test.Suite {
|
||||||
|
return &test.Suite{
|
||||||
// do not use excessive data
|
// do not use excessive data
|
||||||
MinimalData: true,
|
MinimalData: true,
|
||||||
|
|
||||||
@ -265,7 +262,46 @@ func TestBackendS3(t *testing.T) {
|
|||||||
return nil
|
return nil
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestBackendS3(t *testing.T) {
|
||||||
|
defer func() {
|
||||||
|
if t.Skipped() {
|
||||||
|
SkipDisallowed(t, "restic/backend/s3.TestBackendS3")
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
|
vars := []string{
|
||||||
|
"RESTIC_TEST_S3_KEY",
|
||||||
|
"RESTIC_TEST_S3_SECRET",
|
||||||
|
"RESTIC_TEST_S3_REPOSITORY",
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, v := range vars {
|
||||||
|
if os.Getenv(v) == "" {
|
||||||
|
t.Skipf("environment variable %v not set", v)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
t.Logf("run tests")
|
t.Logf("run tests")
|
||||||
suite.RunTests(t)
|
newS3TestSuite(t).RunTests(t)
|
||||||
|
}
|
||||||
|
|
||||||
|
func BenchmarkBackendS3(t *testing.B) {
|
||||||
|
vars := []string{
|
||||||
|
"RESTIC_TEST_S3_KEY",
|
||||||
|
"RESTIC_TEST_S3_SECRET",
|
||||||
|
"RESTIC_TEST_S3_REPOSITORY",
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, v := range vars {
|
||||||
|
if os.Getenv(v) == "" {
|
||||||
|
t.Skipf("environment variable %v not set", v)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
t.Logf("run tests")
|
||||||
|
newS3TestSuite(t).RunBenchmarks(t)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user