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/git/packfile/packfile_test.go')
-rw-r--r--internal/git/packfile/packfile_test.go37
1 files changed, 37 insertions, 0 deletions
diff --git a/internal/git/packfile/packfile_test.go b/internal/git/packfile/packfile_test.go
new file mode 100644
index 000000000..94a053213
--- /dev/null
+++ b/internal/git/packfile/packfile_test.go
@@ -0,0 +1,37 @@
+package packfile
+
+import (
+ "os"
+ "path/filepath"
+ "testing"
+
+ "github.com/stretchr/testify/require"
+ "gitlab.com/gitlab-org/gitaly/internal/testhelper"
+)
+
+func TestList(t *testing.T) {
+ repoPath0 := "testdata/empty.git"
+ require.NoError(t, os.RemoveAll(repoPath0))
+ testhelper.MustRunCommand(t, nil, "git", "init", "--bare", repoPath0)
+
+ _, repoPath1, cleanup1 := testhelper.NewTestRepo(t)
+ defer cleanup1()
+ testhelper.MustRunCommand(t, nil, "git", "-C", repoPath1, "repack", "-ad")
+
+ testCases := []struct {
+ desc string
+ path string
+ numPacks int
+ }{
+ {desc: "empty", path: repoPath0},
+ {desc: "1 pack no alternates", path: repoPath1, numPacks: 1},
+ }
+
+ for _, tc := range testCases {
+ t.Run(tc.desc, func(t *testing.T) {
+ out, err := List(filepath.Join(tc.path, "objects"))
+ require.NoError(t, err)
+ require.Len(t, out, tc.numPacks)
+ })
+ }
+}