blob: 24340e6d56e18d6a2a9082654c95ef58ac7ed196 [file] [log] [blame]
Martin Waitzcf9dc652006-05-07 20:19:09 +02001#!/bin/sh
2#
3# Copyright (C) 2006 Martin Waitz <tali@admingilde.org>
4#
5
6test_description='test clone --reference'
Johannes Schindelin95cf2c02020-11-18 23:44:35 +00007GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
Johannes Schindelin334afbc2020-11-18 23:44:19 +00008export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
9
Martin Waitzcf9dc652006-05-07 20:19:09 +020010. ./test-lib.sh
11
Elia Pinto46d76d62016-01-04 10:10:50 +010012base_dir=$(pwd)
Martin Waitzcf9dc652006-05-07 20:19:09 +020013
Daniel Barkalow4ba776c2008-05-22 18:03:08 -040014U=$base_dir/UPLOAD_LOG
15
Jeff Kingbc192302015-08-10 05:32:30 -040016# create a commit in repo $1 with name $2
17commit_in () {
18 (
19 cd "$1" &&
20 echo "$2" >"$2" &&
21 git add "$2" &&
22 git commit -m "$2"
23 )
24}
Martin Waitzcf9dc652006-05-07 20:19:09 +020025
Jeff Kingbc192302015-08-10 05:32:30 -040026# check that there are $2 loose objects in repo $1
27test_objcount () {
28 echo "$2" >expect &&
29 git -C "$1" count-objects >actual.raw &&
30 cut -d' ' -f1 <actual.raw >actual &&
31 test_cmp expect actual
32}
Martin Waitzcf9dc652006-05-07 20:19:09 +020033
Jeff Kingbc192302015-08-10 05:32:30 -040034test_expect_success 'preparing first repository' '
35 test_create_repo A &&
36 commit_in A file1
37'
Martin Waitzcf9dc652006-05-07 20:19:09 +020038
Jeff Kingbc192302015-08-10 05:32:30 -040039test_expect_success 'preparing second repository' '
40 git clone A B &&
41 commit_in B file2 &&
42 git -C B repack -ad &&
43 git -C B prune
44'
Martin Waitzcf9dc652006-05-07 20:19:09 +020045
Jeff Kingbc192302015-08-10 05:32:30 -040046test_expect_success 'cloning with reference (-l -s)' '
47 git clone -l -s --reference B A C
48'
Martin Waitzcf9dc652006-05-07 20:19:09 +020049
Jeff Kingbc192302015-08-10 05:32:30 -040050test_expect_success 'existence of info/alternates' '
51 test_line_count = 2 C/.git/objects/info/alternates
52'
Martin Waitzcf9dc652006-05-07 20:19:09 +020053
Jeff Kingbc192302015-08-10 05:32:30 -040054test_expect_success 'pulling from reference' '
Johannes Schindelin95cf2c02020-11-18 23:44:35 +000055 git -C C pull ../B main
Jeff Kingbc192302015-08-10 05:32:30 -040056'
Martin Waitzcf9dc652006-05-07 20:19:09 +020057
Jeff Kingbc192302015-08-10 05:32:30 -040058test_expect_success 'that reference gets used' '
59 test_objcount C 0
60'
Daniel Barkalow4ba776c2008-05-22 18:03:08 -040061
Jeff King2ad23272013-03-20 13:43:47 -040062test_expect_success 'cloning with reference (no -l -s)' '
63 GIT_TRACE_PACKET=$U.D git clone --reference B "file://$(pwd)/A" D
64'
Daniel Barkalow4ba776c2008-05-22 18:03:08 -040065
Jeff King2ad23272013-03-20 13:43:47 -040066test_expect_success 'fetched no objects' '
67 test -s "$U.D" &&
68 ! grep " want" "$U.D"
69'
Junio C Hamano1f7d1a52007-02-04 03:25:12 -080070
Jeff Kingbc192302015-08-10 05:32:30 -040071test_expect_success 'existence of info/alternates' '
72 test_line_count = 1 D/.git/objects/info/alternates
73'
Junio C Hamano1f7d1a52007-02-04 03:25:12 -080074
Jeff Kingbc192302015-08-10 05:32:30 -040075test_expect_success 'pulling from reference' '
Johannes Schindelin95cf2c02020-11-18 23:44:35 +000076 git -C D pull ../B main
Jeff Kingbc192302015-08-10 05:32:30 -040077'
Junio C Hamano1f7d1a52007-02-04 03:25:12 -080078
Jeff Kingbc192302015-08-10 05:32:30 -040079test_expect_success 'that reference gets used' '
80 test_objcount D 0
81'
Junio C Hamano1f7d1a52007-02-04 03:25:12 -080082
Jeff Kingbc192302015-08-10 05:32:30 -040083test_expect_success 'updating origin' '
84 commit_in A file3 &&
85 git -C A repack -ad &&
86 git -C A prune
87'
Junio C Hamano1f7d1a52007-02-04 03:25:12 -080088
Jeff Kingbc192302015-08-10 05:32:30 -040089test_expect_success 'pulling changes from origin' '
Elijah Newren031e2f72021-07-22 05:04:48 +000090 git -C C pull --no-rebase origin
Jeff Kingbc192302015-08-10 05:32:30 -040091'
Martin Waitzcf9dc652006-05-07 20:19:09 +020092
93# the 2 local objects are commit and tree from the merge
Jeff Kingbc192302015-08-10 05:32:30 -040094test_expect_success 'that alternate to origin gets used' '
95 test_objcount C 2
96'
Martin Waitzcf9dc652006-05-07 20:19:09 +020097
Jeff Kingbc192302015-08-10 05:32:30 -040098test_expect_success 'pulling changes from origin' '
Elijah Newren031e2f72021-07-22 05:04:48 +000099 git -C D pull --no-rebase origin
Jeff Kingbc192302015-08-10 05:32:30 -0400100'
Junio C Hamano1f7d1a52007-02-04 03:25:12 -0800101
102# the 5 local objects are expected; file3 blob, commit in A to add it
103# and its tree, and 2 are our tree and the merge commit.
Jeff Kingbc192302015-08-10 05:32:30 -0400104test_expect_success 'check objects expected to exist locally' '
105 test_objcount D 5
106'
Junio C Hamano1f7d1a52007-02-04 03:25:12 -0800107
Jeff Kingbc192302015-08-10 05:32:30 -0400108test_expect_success 'preparing alternate repository #1' '
109 test_create_repo F &&
110 commit_in F file1
111'
Junio C Hamano1f7d1a52007-02-04 03:25:12 -0800112
Jeff Kingbc192302015-08-10 05:32:30 -0400113test_expect_success 'cloning alternate repo #2 and adding changes to repo #1' '
114 git clone F G &&
115 commit_in F file2
116'
Johan Herlandfabb0192008-05-22 18:03:05 -0400117
Jeff Kingbc192302015-08-10 05:32:30 -0400118test_expect_success 'cloning alternate repo #1, using #2 as reference' '
119 git clone --reference G F H
120'
Johan Herlandfabb0192008-05-22 18:03:05 -0400121
Jeff Kingbc192302015-08-10 05:32:30 -0400122test_expect_success 'cloning with reference being subset of source (-l -s)' '
123 git clone -l -s --reference A B E
124'
Johan Herlandb50c8462008-05-22 18:03:00 -0400125
Jeff King77b9b1d2015-08-10 05:34:46 -0400126test_expect_success 'cloning with multiple references drops duplicates' '
127 git clone -s --reference B --reference A --reference B A dups &&
128 test_line_count = 2 dups/.git/objects/info/alternates
129'
130
Junio C Hamano09116a12011-11-16 16:54:32 -0800131test_expect_success 'clone with reference from a tagged repository' '
132 (
Jeff Kingbc192302015-08-10 05:32:30 -0400133 cd A && git tag -a -m tagged HEAD
Junio C Hamano09116a12011-11-16 16:54:32 -0800134 ) &&
135 git clone --reference=A A I
136'
137
Michael Haggertyacede2e2012-02-11 07:20:55 +0100138test_expect_success 'prepare branched repository' '
139 git clone A J &&
140 (
141 cd J &&
Johannes Schindelin95cf2c02020-11-18 23:44:35 +0000142 git checkout -b other main^ &&
Michael Haggertyacede2e2012-02-11 07:20:55 +0100143 echo other >otherfile &&
144 git add otherfile &&
145 git commit -m other &&
Johannes Schindelin95cf2c02020-11-18 23:44:35 +0000146 git checkout main
Michael Haggertyacede2e2012-02-11 07:20:55 +0100147 )
148'
149
Michael Haggertyf2576592012-02-11 07:20:59 +0100150test_expect_success 'fetch with incomplete alternates' '
Michael Haggertyacede2e2012-02-11 07:20:55 +0100151 git init K &&
152 echo "$base_dir/A/.git/objects" >K/.git/objects/info/alternates &&
153 (
154 cd K &&
155 git remote add J "file://$base_dir/J" &&
Jeff King2ad23272013-03-20 13:43:47 -0400156 GIT_TRACE_PACKET=$U.K git fetch J
Michael Haggertyacede2e2012-02-11 07:20:55 +0100157 ) &&
Johannes Schindelin95cf2c02020-11-18 23:44:35 +0000158 main_object=$(cd A && git for-each-ref --format="%(objectname)" refs/heads/main) &&
Jeff King2ad23272013-03-20 13:43:47 -0400159 test -s "$U.K" &&
Johannes Schindelin95cf2c02020-11-18 23:44:35 +0000160 ! grep " want $main_object" "$U.K" &&
Michael Haggertyacede2e2012-02-11 07:20:55 +0100161 tag_object=$(cd A && git for-each-ref --format="%(objectname)" refs/tags/HEAD) &&
Jeff King97a83fa2013-02-20 14:55:28 -0500162 ! grep " want $tag_object" "$U.K"
Michael Haggertyacede2e2012-02-11 07:20:55 +0100163'
164
Aaron Schrabb552b562013-04-09 18:22:00 -0400165test_expect_success 'clone using repo with gitfile as a reference' '
166 git clone --separate-git-dir=L A M &&
167 git clone --reference=M A N &&
168 echo "$base_dir/L/objects" >expected &&
169 test_cmp expected "$base_dir/N/.git/objects/info/alternates"
170'
171
172test_expect_success 'clone using repo pointed at by gitfile as reference' '
173 git clone --reference=M/.git A O &&
174 echo "$base_dir/L/objects" >expected &&
175 test_cmp expected "$base_dir/O/.git/objects/info/alternates"
176'
177
Junio C Hamanofb1d6da2014-10-14 12:38:52 -0700178test_expect_success 'clone and dissociate from reference' '
179 git init P &&
180 (
Andrei Rybak64d10222020-03-22 22:14:22 +0100181 cd P && test_commit one
Junio C Hamanofb1d6da2014-10-14 12:38:52 -0700182 ) &&
183 git clone P Q &&
184 (
185 cd Q && test_commit two
186 ) &&
187 git clone --no-local --reference=P Q R &&
188 git clone --no-local --reference=P --dissociate Q S &&
189 # removing the reference P would corrupt R but not S
190 rm -fr P &&
191 test_must_fail git -C R fsck &&
192 git -C S fsck
193'
Johannes Schindelin786b1502015-10-06 15:18:47 +0200194test_expect_success 'clone, dissociate from partial reference and repack' '
Johannes Schindelin11911bf2015-10-05 22:29:59 +0200195 rm -fr P Q R &&
196 git init P &&
197 (
198 cd P &&
199 test_commit one &&
200 git repack &&
201 test_commit two &&
202 git repack
203 ) &&
204 git clone --bare P Q &&
205 (
206 cd P &&
207 git checkout -b second &&
208 test_commit three &&
209 git repack
210 ) &&
211 git clone --bare --dissociate --reference=P Q R &&
212 ls R/objects/pack/*.pack >packs.txt &&
213 test_line_count = 1 packs.txt
214'
Junio C Hamanofb1d6da2014-10-14 12:38:52 -0700215
Alex Riesen01816812015-10-22 18:41:17 +0200216test_expect_success 'clone, dissociate from alternates' '
217 rm -fr A B C &&
218 test_create_repo A &&
219 commit_in A file1 &&
220 git clone --reference=A A B &&
221 test_line_count = 1 B/.git/objects/info/alternates &&
222 git clone --local --dissociate B C &&
223 ! test -f C/.git/objects/info/alternates &&
224 ( cd C && git fsck )
225'
226
Ævar Arnfjörð Bjarmason03156162019-07-10 20:58:55 -0300227test_expect_success 'setup repo with garbage in objects/*' '
228 git init S &&
229 (
230 cd S &&
231 test_commit A &&
232
233 cd .git/objects &&
234 >.some-hidden-file &&
235 >some-file &&
236 mkdir .some-hidden-dir &&
237 >.some-hidden-dir/some-file &&
238 >.some-hidden-dir/.some-dot-file &&
239 mkdir some-dir &&
240 >some-dir/some-file &&
241 >some-dir/.some-dot-file
242 )
243'
244
245test_expect_success 'clone a repo with garbage in objects/*' '
246 for option in --local --no-hardlinks --shared --dissociate
247 do
248 git clone $option S S$option || return 1 &&
249 git -C S$option fsck || return 1
250 done &&
251 find S-* -name "*some*" | sort >actual &&
252 cat >expected <<-EOF &&
Matheus Tavares68c7c592019-07-10 20:59:01 -0300253 S--dissociate/.git/objects/.some-hidden-dir
254 S--dissociate/.git/objects/.some-hidden-dir/.some-dot-file
255 S--dissociate/.git/objects/.some-hidden-dir/some-file
Ævar Arnfjörð Bjarmason03156162019-07-10 20:58:55 -0300256 S--dissociate/.git/objects/.some-hidden-file
257 S--dissociate/.git/objects/some-dir
258 S--dissociate/.git/objects/some-dir/.some-dot-file
259 S--dissociate/.git/objects/some-dir/some-file
260 S--dissociate/.git/objects/some-file
Matheus Tavares68c7c592019-07-10 20:59:01 -0300261 S--local/.git/objects/.some-hidden-dir
262 S--local/.git/objects/.some-hidden-dir/.some-dot-file
263 S--local/.git/objects/.some-hidden-dir/some-file
Ævar Arnfjörð Bjarmason03156162019-07-10 20:58:55 -0300264 S--local/.git/objects/.some-hidden-file
265 S--local/.git/objects/some-dir
266 S--local/.git/objects/some-dir/.some-dot-file
267 S--local/.git/objects/some-dir/some-file
268 S--local/.git/objects/some-file
Matheus Tavares68c7c592019-07-10 20:59:01 -0300269 S--no-hardlinks/.git/objects/.some-hidden-dir
270 S--no-hardlinks/.git/objects/.some-hidden-dir/.some-dot-file
271 S--no-hardlinks/.git/objects/.some-hidden-dir/some-file
Ævar Arnfjörð Bjarmason03156162019-07-10 20:58:55 -0300272 S--no-hardlinks/.git/objects/.some-hidden-file
273 S--no-hardlinks/.git/objects/some-dir
274 S--no-hardlinks/.git/objects/some-dir/.some-dot-file
275 S--no-hardlinks/.git/objects/some-dir/some-file
276 S--no-hardlinks/.git/objects/some-file
277 EOF
278 test_cmp expected actual
279'
280
Matheus Tavares36596fd2019-07-10 20:58:56 -0300281test_expect_success SYMLINKS 'setup repo with manually symlinked or unknown files at objects/' '
Ævar Arnfjörð Bjarmason03156162019-07-10 20:58:55 -0300282 git init T &&
283 (
284 cd T &&
285 git config gc.auto 0 &&
286 test_commit A &&
287 git gc &&
288 test_commit B &&
289
290 cd .git/objects &&
291 mv pack packs &&
292 ln -s packs pack &&
293 find ?? -type d >loose-dirs &&
294 last_loose=$(tail -n 1 loose-dirs) &&
Ævar Arnfjörð Bjarmason03156162019-07-10 20:58:55 -0300295 mv $last_loose a-loose-dir &&
296 ln -s a-loose-dir $last_loose &&
Matheus Tavares36596fd2019-07-10 20:58:56 -0300297 first_loose=$(head -n 1 loose-dirs) &&
298 rm -f loose-dirs &&
299
300 cd $first_loose &&
301 obj=$(ls *) &&
302 mv $obj ../an-object &&
303 ln -s ../an-object $obj &&
304
305 cd ../ &&
Ævar Arnfjörð Bjarmason03156162019-07-10 20:58:55 -0300306 find . -type f | sort >../../../T.objects-files.raw &&
Matheus Tavares36596fd2019-07-10 20:58:56 -0300307 find . -type l | sort >../../../T.objects-symlinks.raw &&
Ævar Arnfjörð Bjarmason03156162019-07-10 20:58:55 -0300308 echo unknown_content >unknown_file
309 ) &&
310 git -C T fsck &&
311 git -C T rev-list --all --objects >T.objects
312'
313
314
Matheus Tavares36596fd2019-07-10 20:58:56 -0300315test_expect_success SYMLINKS 'clone repo with symlinked or unknown files at objects/' '
Ævar Arnfjörð Bjarmason03156162019-07-10 20:58:55 -0300316 for option in --local --no-hardlinks --shared --dissociate
317 do
318 git clone $option T T$option || return 1 &&
319 git -C T$option fsck || return 1 &&
320 git -C T$option rev-list --all --objects >T$option.objects &&
321 test_cmp T.objects T$option.objects &&
322 (
323 cd T$option/.git/objects &&
Matheus Tavares36596fd2019-07-10 20:58:56 -0300324 find . -type f | sort >../../../T$option.objects-files.raw &&
325 find . -type l | sort >../../../T$option.objects-symlinks.raw
Ævar Arnfjörð Bjarmason03156162019-07-10 20:58:55 -0300326 )
327 done &&
328
329 for raw in $(ls T*.raw)
330 do
331 sed -e "s!/../!/Y/!; s![0-9a-f]\{38,\}!Z!" -e "/commit-graph/d" \
Taylor Blau35a8a352021-01-25 18:37:38 -0500332 -e "/multi-pack-index/d" -e "/rev/d" <$raw >$raw.de-sha-1 &&
brian m. carlson277eb5a2019-12-21 19:49:36 +0000333 sort $raw.de-sha-1 >$raw.de-sha || return 1
Ævar Arnfjörð Bjarmason03156162019-07-10 20:58:55 -0300334 done &&
335
336 cat >expected-files <<-EOF &&
337 ./Y/Z
338 ./Y/Z
brian m. carlson277eb5a2019-12-21 19:49:36 +0000339 ./Y/Z
Ævar Arnfjörð Bjarmason03156162019-07-10 20:58:55 -0300340 ./a-loose-dir/Z
Matheus Tavares36596fd2019-07-10 20:58:56 -0300341 ./an-object
Ævar Arnfjörð Bjarmason03156162019-07-10 20:58:55 -0300342 ./info/packs
343 ./pack/pack-Z.idx
344 ./pack/pack-Z.pack
345 ./packs/pack-Z.idx
346 ./packs/pack-Z.pack
347 ./unknown_file
348 EOF
349
Matheus Tavares36596fd2019-07-10 20:58:56 -0300350 for option in --local --no-hardlinks --dissociate
Ævar Arnfjörð Bjarmason03156162019-07-10 20:58:55 -0300351 do
Matheus Tavares36596fd2019-07-10 20:58:56 -0300352 test_cmp expected-files T$option.objects-files.raw.de-sha || return 1 &&
353 test_must_be_empty T$option.objects-symlinks.raw.de-sha || return 1
Ævar Arnfjörð Bjarmason03156162019-07-10 20:58:55 -0300354 done &&
355
356 echo ./info/alternates >expected-files &&
Matheus Tavares36596fd2019-07-10 20:58:56 -0300357 test_cmp expected-files T--shared.objects-files.raw &&
358 test_must_be_empty T--shared.objects-symlinks.raw
Ævar Arnfjörð Bjarmason03156162019-07-10 20:58:55 -0300359'
360
Martin Waitzcf9dc652006-05-07 20:19:09 +0200361test_done