Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'internal/backup/pipeline_test.go')
-rw-r--r--internal/backup/pipeline_test.go61
1 files changed, 10 insertions, 51 deletions
diff --git a/internal/backup/pipeline_test.go b/internal/backup/pipeline_test.go
index 37f7c2e5b..04c539a5f 100644
--- a/internal/backup/pipeline_test.go
+++ b/internal/backup/pipeline_test.go
@@ -98,8 +98,7 @@ func TestPipeline(t *testing.T) {
p.Handle(ctx, NewCreateCommand(strategy, CreateRequest{Repository: &gitalypb.Repository{StorageName: "storage1"}}))
p.Handle(ctx, NewCreateCommand(strategy, CreateRequest{Repository: &gitalypb.Repository{StorageName: "storage2"}}))
}
- _, err = p.Done()
- require.NoError(t, err)
+ require.NoError(t, p.Done())
})
}
})
@@ -116,16 +115,14 @@ func TestPipeline(t *testing.T) {
p.Handle(ctx, NewCreateCommand(strategy, CreateRequest{Repository: &gitalypb.Repository{StorageName: "default"}}))
- _, err = p.Done()
- require.EqualError(t, err, "pipeline: context canceled")
+ require.EqualError(t, p.Done(), "pipeline: context canceled")
})
}
type MockStrategy struct {
- CreateFunc func(context.Context, *CreateRequest) error
- RestoreFunc func(context.Context, *RestoreRequest) error
- RemoveRepositoryFunc func(context.Context, *RemoveRepositoryRequest) error
- ListRepositoriesFunc func(context.Context, *ListRepositoriesRequest) ([]*gitalypb.Repository, error)
+ CreateFunc func(context.Context, *CreateRequest) error
+ RestoreFunc func(context.Context, *RestoreRequest) error
+ RemoveAllRepositoriesFunc func(context.Context, *RemoveAllRepositoriesRequest) error
}
func (s MockStrategy) Create(ctx context.Context, req *CreateRequest) error {
@@ -142,20 +139,13 @@ func (s MockStrategy) Restore(ctx context.Context, req *RestoreRequest) error {
return nil
}
-func (s MockStrategy) RemoveRepository(ctx context.Context, req *RemoveRepositoryRequest) error {
- if s.RemoveRepositoryFunc != nil {
- return s.RemoveRepositoryFunc(ctx, req)
+func (s MockStrategy) RemoveAllRepositories(ctx context.Context, req *RemoveAllRepositoriesRequest) error {
+ if s.RemoveAllRepositoriesFunc != nil {
+ return s.RemoveAllRepositoriesFunc(ctx, req)
}
return nil
}
-func (s MockStrategy) ListRepositories(ctx context.Context, req *ListRepositoriesRequest) ([]*gitalypb.Repository, error) {
- if s.ListRepositoriesFunc != nil {
- return s.ListRepositoriesFunc(ctx, req)
- }
- return nil, nil
-}
-
func testPipeline(t *testing.T, init func() *Pipeline) {
strategy := MockStrategy{
CreateFunc: func(_ context.Context, req *CreateRequest) error {
@@ -232,7 +222,7 @@ func testPipeline(t *testing.T, init func() *Pipeline) {
require.Equal(t, tc.level, logEntry.Level)
}
- _, err := p.Done()
+ err := p.Done()
if tc.level == logrus.ErrorLevel {
require.EqualError(t, err, "pipeline: 1 failures encountered:\n - c.git: assert.AnError general error for testing\n")
@@ -268,7 +258,7 @@ func testPipeline(t *testing.T, init func() *Pipeline) {
for _, cmd := range commands {
p.Handle(ctx, cmd)
}
- _, err := p.Done()
+ err := p.Done()
require.EqualError(t, err, "pipeline: 1 failures encountered:\n - c.git: assert.AnError general error for testing\n")
})
}
@@ -319,34 +309,3 @@ func TestPipelineError(t *testing.T) {
})
}
}
-
-func TestPipelineProcessedRepos(t *testing.T) {
- strategy := MockStrategy{}
-
- repos := map[string]map[*gitalypb.Repository]struct{}{
- "storage1": {
- &gitalypb.Repository{RelativePath: "a.git", StorageName: "storage1"}: struct{}{},
- &gitalypb.Repository{RelativePath: "b.git", StorageName: "storage1"}: struct{}{},
- },
- "storage2": {
- &gitalypb.Repository{RelativePath: "c.git", StorageName: "storage2"}: struct{}{},
- },
- "storage3": {
- &gitalypb.Repository{RelativePath: "d.git", StorageName: "storage3"}: struct{}{},
- },
- }
-
- p, err := NewPipeline(testhelper.SharedLogger(t))
- require.NoError(t, err)
-
- ctx := testhelper.Context(t)
- for _, v := range repos {
- for repo := range v {
- p.Handle(ctx, NewRestoreCommand(strategy, RestoreRequest{Repository: repo}))
- }
- }
-
- processedRepos, err := p.Done()
- require.NoError(t, err)
- require.EqualValues(t, repos, processedRepos)
-}