3 test_description
='split commit graph'
6 GIT_TEST_COMMIT_GRAPH
=0
8 test_expect_success
'setup repo' '
10 git config core.commitGraph true &&
11 infodir=".git/objects/info" &&
12 graphdir="$infodir/commit-graphs" &&
23 header: 43475048 1 1 3 $NUM_BASE
25 chunks: oid_fanout oid_lookup commit_metadata
27 git commit-graph
read >output
&&
28 test_cmp expect output
31 test_expect_success
'create commits and write commit-graph' '
32 for i in $(test_seq 3)
35 git branch commits/$i || return 1
37 git commit-graph write --reachable &&
38 test_path_is_file $infodir/commit-graph &&
42 graph_git_two_modes
() {
43 git
-c core.commitGraph
=true
$1 >output
44 git
-c core.commitGraph
=false
$1 >expect
45 test_cmp expect output
48 graph_git_behavior
() {
52 test_expect_success
"check normal git operations: $MSG" '
53 graph_git_two_modes "log --oneline $BRANCH" &&
54 graph_git_two_modes "log --topo-order $BRANCH" &&
55 graph_git_two_modes "log --graph $COMPARE..$BRANCH" &&
56 graph_git_two_modes "branch -vv" &&
57 graph_git_two_modes "merge-base -a $BRANCH $COMPARE"
61 graph_git_behavior
'graph exists' commits
/3 commits
/1
63 verify_chain_files_exist
() {
64 for hash in $
(cat $1/commit-graph-chain
)
66 test_path_is_file
$1/graph-
$hash.graph ||
return 1
70 test_expect_success
'add more commits, and write a new base graph' '
71 git reset --hard commits/1 &&
72 for i in $(test_seq 4 5)
75 git branch commits/$i || return 1
77 git reset --hard commits/2 &&
78 for i in $(test_seq 6 10)
81 git branch commits/$i || return 1
83 git reset --hard commits/2 &&
84 git merge commits/4 &&
86 git reset --hard commits/4 &&
87 git merge commits/6 &&
89 git commit-graph write --reachable &&
93 test_expect_success
'fork and fail to base a chain on a commit-graph file' '
94 test_when_finished rm -rf fork &&
98 rm .git/objects/info/commit-graph &&
99 echo "$(pwd)/../.git/objects" >.git/objects/info/alternates &&
100 test_commit new-commit &&
101 git commit-graph write --reachable --split &&
102 test_path_is_file $graphdir/commit-graph-chain &&
103 test_line_count = 1 $graphdir/commit-graph-chain &&
104 verify_chain_files_exist $graphdir
108 test_expect_success
'add three more commits, write a tip graph' '
109 git reset --hard commits/3 &&
111 git merge commits/5 &&
113 git branch merge/3 &&
114 git commit-graph write --reachable --split &&
115 test_path_is_missing $infodir/commit-graph &&
116 test_path_is_file $graphdir/commit-graph-chain &&
117 ls $graphdir/graph-*.graph >graph-files &&
118 test_line_count = 2 graph-files &&
119 verify_chain_files_exist $graphdir
122 graph_git_behavior
'split commit-graph: merge 3 vs 2' merge
/3 merge
/2
124 test_expect_success
'add one commit, write a tip graph' '
126 git branch commits/11 &&
127 git commit-graph write --reachable --split &&
128 test_path_is_missing $infodir/commit-graph &&
129 test_path_is_file $graphdir/commit-graph-chain &&
130 ls $graphdir/graph-*.graph >graph-files &&
131 test_line_count = 3 graph-files &&
132 verify_chain_files_exist $graphdir
135 graph_git_behavior
'three-layer commit-graph: commit 11 vs 6' commits
/11 commits
/6
137 test_expect_success
'add one commit, write a merged graph' '
139 git branch commits/12 &&
140 git commit-graph write --reachable --split &&
141 test_path_is_file $graphdir/commit-graph-chain &&
142 test_line_count = 2 $graphdir/commit-graph-chain &&
143 ls $graphdir/graph-*.graph >graph-files &&
144 test_line_count = 2 graph-files &&
145 verify_chain_files_exist $graphdir
148 graph_git_behavior
'merged commit-graph: commit 12 vs 6' commits
/12 commits
/6
150 test_expect_success
'create fork and chain across alternate' '
154 git config core.commitGraph true &&
156 echo "$(pwd)/../.git/objects" >.git/objects/info/alternates &&
158 git branch commits/13 &&
159 git commit-graph write --reachable --split &&
160 test_path_is_file $graphdir/commit-graph-chain &&
161 test_line_count = 3 $graphdir/commit-graph-chain &&
162 ls $graphdir/graph-*.graph >graph-files &&
163 test_line_count = 1 graph-files &&
164 git -c core.commitGraph=true rev-list HEAD >expect &&
165 git -c core.commitGraph=false rev-list HEAD >actual &&
166 test_cmp expect actual &&
168 git commit-graph write --reachable --split --object-dir=.git/objects/ &&
169 test_line_count = 3 $graphdir/commit-graph-chain &&
170 ls $graphdir/graph-*.graph >graph-files &&
171 test_line_count = 1 graph-files
175 graph_git_behavior
'alternate: commit 13 vs 6' commits
/13 commits
/6
177 test_expect_success
'test merge stragety constants' '
178 git clone . merge-2 &&
181 git config core.commitGraph true &&
182 test_line_count = 2 $graphdir/commit-graph-chain &&
184 git commit-graph write --reachable --split --size-multiple=2 &&
185 test_line_count = 3 $graphdir/commit-graph-chain
188 git clone . merge-10 &&
191 git config core.commitGraph true &&
192 test_line_count = 2 $graphdir/commit-graph-chain &&
194 git commit-graph write --reachable --split --size-multiple=10 &&
195 test_line_count = 1 $graphdir/commit-graph-chain &&
196 ls $graphdir/graph-*.graph >graph-files &&
197 test_line_count = 1 graph-files
199 git clone . merge-10-expire &&
201 cd merge-10-expire &&
202 git config core.commitGraph true &&
203 test_line_count = 2 $graphdir/commit-graph-chain &&
205 git commit-graph write --reachable --split --size-multiple=10 --expire-time=1980-01-01 &&
206 test_line_count = 1 $graphdir/commit-graph-chain &&
207 ls $graphdir/graph-*.graph >graph-files &&
208 test_line_count = 3 graph-files
210 git clone --no-hardlinks . max-commits &&
213 git config core.commitGraph true &&
214 test_line_count = 2 $graphdir/commit-graph-chain &&
217 git commit-graph write --reachable --split --max-commits=1 &&
218 test_line_count = 1 $graphdir/commit-graph-chain &&
219 ls $graphdir/graph-*.graph >graph-files &&
220 test_line_count = 1 graph-files
224 test_expect_success
'remove commit-graph-chain file after flattening' '
225 git clone . flatten &&
228 test_line_count = 2 $graphdir/commit-graph-chain &&
229 git commit-graph write --reachable &&
230 test_path_is_missing $graphdir/commit-graph-chain &&
231 ls $graphdir >graph-files &&
232 test_line_count = 0 graph-files
241 printf "$data" |
dd of
="$file" bs
=1 seek
="$pos" conv
=notrunc
244 test_expect_success
'verify hashes along chain, even in shallow' '
245 git clone --no-hardlinks . verify &&
248 git commit-graph verify &&
249 base_file=$graphdir/graph-$(head -n 1 $graphdir/commit-graph-chain).graph &&
250 corrupt_file "$base_file" 1760 "\01" &&
251 test_must_fail git commit-graph verify --shallow 2>test_err &&
252 grep -v "^+" test_err >err &&
253 test_i18ngrep "incorrect checksum" err
257 test_expect_success
'verify --shallow does not check base contents' '
258 git clone --no-hardlinks . verify-shallow &&
261 git commit-graph verify &&
262 base_file=$graphdir/graph-$(head -n 1 $graphdir/commit-graph-chain).graph &&
263 corrupt_file "$base_file" 1000 "\01" &&
264 git commit-graph verify --shallow &&
265 test_must_fail git commit-graph verify 2>test_err &&
266 grep -v "^+" test_err >err &&
267 test_i18ngrep "incorrect checksum" err
271 test_expect_success
'warn on base graph chunk incorrect' '
272 git clone --no-hardlinks . base-chunk &&
275 git commit-graph verify &&
276 base_file=$graphdir/graph-$(tail -n 1 $graphdir/commit-graph-chain).graph &&
277 corrupt_file "$base_file" 1376 "\01" &&
278 git commit-graph verify --shallow 2>test_err &&
279 grep -v "^+" test_err >err &&
280 test_i18ngrep "commit-graph chain does not match" err
284 test_expect_success
'verify after commit-graph-chain corruption' '
285 git clone --no-hardlinks . verify-chain &&
288 corrupt_file "$graphdir/commit-graph-chain" 60 "G" &&
289 git commit-graph verify 2>test_err &&
290 grep -v "^+" test_err >err &&
291 test_i18ngrep "invalid commit-graph chain" err &&
292 corrupt_file "$graphdir/commit-graph-chain" 60 "A" &&
293 git commit-graph verify 2>test_err &&
294 grep -v "^+" test_err >err &&
295 test_i18ngrep "unable to find all commit-graph files" err
299 test_expect_success
'verify across alternates' '
300 git clone --no-hardlinks . verify-alt &&
304 altdir="$(pwd)/../.git/objects" &&
305 echo "$altdir" >.git/objects/info/alternates &&
306 git commit-graph verify --object-dir="$altdir/" &&
308 git commit-graph write --reachable --split &&
309 tip_file=$graphdir/graph-$(tail -n 1 $graphdir/commit-graph-chain).graph &&
310 corrupt_file "$tip_file" 100 "\01" &&
311 test_must_fail git commit-graph verify --shallow 2>test_err &&
312 grep -v "^+" test_err >err &&
313 test_i18ngrep "commit-graph has incorrect fanout value" err
317 test_expect_success
'add octopus merge' '
318 git reset --hard commits/10 &&
319 git merge commits/3 commits/4 &&
320 git branch merge/octopus &&
321 git commit-graph write --reachable --split &&
322 git commit-graph verify 2>err &&
323 test_line_count = 3 err &&
324 test_i18ngrep ! warning err &&
325 test_line_count = 3 $graphdir/commit-graph-chain
328 graph_git_behavior
'graph exists' merge
/octopus commits
/12
330 test_expect_success
'split across alternate where alternate is not split' '
331 git commit-graph write --reachable &&
332 test_path_is_file .git/objects/info/commit-graph &&
333 cp .git/objects/info/commit-graph . &&
334 git clone --no-hardlinks . alt-split &&
337 echo "$(pwd)"/../.git/objects >.git/objects/info/alternates &&
339 git commit-graph write --reachable --split &&
340 test_line_count = 1 $graphdir/commit-graph-chain
342 test_cmp commit-graph .git/objects/info/commit-graph