1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
package repository_test
import (
"fmt"
"os"
"path/filepath"
"strings"
"testing"
"codeberg.org/lindenii/furgit/internal/testgit"
"codeberg.org/lindenii/furgit/objectid"
"codeberg.org/lindenii/furgit/repository"
)
func TestRepositoryDepthFirstEnumerationFromHEAD(t *testing.T) {
t.Parallel()
testgit.ForEachAlgorithm(t, func(t *testing.T, algo objectid.Algorithm) { //nolint:thelper
repoHarness := testgit.NewRepo(t, testgit.RepoOptions{
ObjectFormat: algo,
Bare: true,
RefFormat: "files",
})
_, _, commit1 := repoHarness.MakeCommit(t, "walk-one")
blob2, tree2 := repoHarness.MakeSingleFileTree(t, "second.txt", []byte("second\n"))
commit2 := repoHarness.CommitTree(t, tree2, "walk-two", commit1)
_ = blob2
repoHarness.UpdateRef(t, "refs/heads/main", commit2)
repoHarness.SymbolicRef(t, "HEAD", "refs/heads/main")
walkRepositoryFromHead(t, repoHarness.Dir())
})
}
func TestRepositoryDepthFirstEnumerationCurrentWorktree(t *testing.T) {
t.Parallel()
worktreeRoot := filepath.Clean("..")
gitPath := filepath.Join(worktreeRoot, ".git")
info, err := os.Stat(gitPath)
if err != nil {
t.Fatalf("stat %q: %v", gitPath, err)
}
if info.IsDir() {
walkRepositoryFromHead(t, gitPath)
return
}
if !info.Mode().IsRegular() {
t.Fatalf("%q is neither a directory nor a regular file", gitPath)
}
content, err := os.ReadFile(gitPath) //#nosec G304
if err != nil {
t.Fatalf("read %q: %v", gitPath, err)
}
line := strings.TrimSpace(string(content))
prefix := "gitdir: "
if !strings.HasPrefix(line, prefix) {
t.Fatalf("%q file does not begin with %q", gitPath, prefix)
}
gitdirRel := strings.TrimSpace(line[len(prefix):])
if gitdirRel == "" {
t.Fatalf("%q contains empty gitdir path", gitPath)
}
gitdirPath := gitdirRel
if !filepath.IsAbs(gitdirPath) {
gitdirPath = filepath.Join(worktreeRoot, gitdirPath)
}
commondirPath := filepath.Join(gitdirPath, "commondir")
commondirContent, err := os.ReadFile(commondirPath) //#nosec G304
if err != nil {
t.Fatalf("read %q: %v", commondirPath, err)
}
repoPath := strings.TrimSpace(string(commondirContent))
if repoPath == "" {
t.Fatalf("%q contains empty repo path", commondirPath)
}
if filepath.IsAbs(repoPath) {
walkRepositoryFromHead(t, repoPath)
return
}
repoPath = filepath.Join(gitdirPath, repoPath)
walkRepositoryFromHead(t, repoPath)
}
func walkRepositoryFromHead(t *testing.T, repoPath string) {
t.Helper()
root, err := os.OpenRoot(repoPath)
if err != nil {
t.Fatalf("os.OpenRoot(%q): %v", repoPath, err)
}
defer func() { _ = root.Close() }()
repo, err := repository.Open(root)
if err != nil {
t.Fatalf("repository.Open(root for %q): %v", repoPath, err)
}
defer func() { _ = repo.Close() }()
head, err := repo.ResolveRefFully("HEAD")
if err != nil {
t.Fatalf("ResolveRefFully(HEAD): %v", err)
}
objectsRead, err := traverseReachableIter(repo, head.ID)
if err != nil {
t.Fatalf("traverseReachableIter(%s): %v", head.ID, err)
}
if objectsRead <= 0 {
t.Fatalf("no objects were enumerated from HEAD (%s)", fmt.Sprintf("%q", repoPath))
}
}
|