]> git.ipfire.org Git - thirdparty/git.git/blame - t/t5601-clone.sh
Merge branch 'js/update-index-ignore-removal-for-skip-worktree'
[thirdparty/git.git] / t / t5601-clone.sh
CommitLineData
a2b26acd
JH
1#!/bin/sh
2
3test_description=clone
4
5. ./test-lib.sh
6
3064d5a3
JS
7X=
8test_have_prereq !MINGW || X=.exe
9
a2b26acd
JH
10test_expect_success setup '
11
12 rm -fr .git &&
13 test_create_repo src &&
14 (
bafe7631
NTND
15 cd src &&
16 >file &&
17 git add file &&
7f08c685
NTND
18 git commit -m initial &&
19 echo 1 >file &&
20 git add file &&
21 git commit -m updated
a2b26acd
JH
22 )
23
24'
25
1db4a75c 26test_expect_success 'clone with excess parameters (1)' '
a2b26acd 27
1db4a75c
SP
28 rm -fr dst &&
29 test_must_fail git clone -n src dst junk
30
31'
32
33test_expect_success 'clone with excess parameters (2)' '
34
35 rm -fr dst &&
a2b26acd
JH
36 test_must_fail git clone -n "file://$(pwd)/src" dst junk
37
38'
39
5cde5989 40test_expect_success C_LOCALE_OUTPUT 'output from clone' '
2c3766f0 41 rm -fr dst &&
68b939b2 42 git clone -n "file://$(pwd)/src" dst >output 2>&1 &&
28ba96ab 43 test $(grep Clon output | wc -l) = 1
2c3766f0
AM
44'
45
1db4a75c
SP
46test_expect_success 'clone does not keep pack' '
47
48 rm -fr dst &&
49 git clone -n "file://$(pwd)/src" dst &&
50 ! test -f dst/file &&
51 ! (echo dst/.git/objects/pack/pack-* | grep "\.keep")
52
53'
54
a73bc127
JS
55test_expect_success 'clone checks out files' '
56
1db4a75c 57 rm -fr dst &&
a73bc127
JS
58 git clone src dst &&
59 test -f dst/file
60
61'
62
2beebd22
JK
63test_expect_success 'clone respects GIT_WORK_TREE' '
64
65 GIT_WORK_TREE=worktree git clone src bare &&
66 test -f bare/config &&
67 test -f worktree/file
68
69'
70
86d26f24
NTND
71test_expect_success 'clone from hooks' '
72
73 test_create_repo r0 &&
74 cd r0 &&
75 test_commit initial &&
76 cd .. &&
77 git init r1 &&
78 cd r1 &&
79 cat >.git/hooks/pre-commit <<-\EOF &&
80 #!/bin/sh
81 git clone ../r0 ../r2
82 exit 1
83 EOF
84 chmod u+x .git/hooks/pre-commit &&
85 : >file &&
86 git add file &&
87 test_must_fail git commit -m invoke-hook &&
88 cd .. &&
89 test_cmp r0/.git/HEAD r2/.git/HEAD &&
90 test_cmp r0/initial.t r2/initial.t
91
92'
93
2beebd22
JK
94test_expect_success 'clone creates intermediate directories' '
95
96 git clone src long/path/to/dst &&
97 test -f long/path/to/dst/file
98
99'
100
101test_expect_success 'clone creates intermediate directories for bare repo' '
102
103 git clone --bare src long/path/to/bare/dst &&
104 test -f long/path/to/bare/dst/config
105
106'
107
bc699afc
JS
108test_expect_success 'clone --mirror' '
109
110 git clone --mirror src mirror &&
111 test -f mirror/HEAD &&
112 test ! -f mirror/file &&
113 FETCH="$(cd mirror && git config remote.origin.fetch)" &&
114 test "+refs/*:refs/*" = "$FETCH" &&
115 MIRROR="$(cd mirror && git config --bool remote.origin.mirror)" &&
116 test "$MIRROR" = true
117
118'
119
7f08c685
NTND
120test_expect_success 'clone --mirror with detached HEAD' '
121
122 ( cd src && git checkout HEAD^ && git rev-parse HEAD >../expected ) &&
123 git clone --mirror src mirror.detached &&
124 ( cd src && git checkout - ) &&
125 GIT_DIR=mirror.detached git rev-parse HEAD >actual &&
126 test_cmp expected actual
127
128'
129
130test_expect_success 'clone --bare with detached HEAD' '
131
132 ( cd src && git checkout HEAD^ && git rev-parse HEAD >../expected ) &&
133 git clone --bare src bare.detached &&
134 ( cd src && git checkout - ) &&
135 GIT_DIR=bare.detached git rev-parse HEAD >actual &&
136 test_cmp expected actual
137
138'
139
6612f877
JS
140test_expect_success 'clone --bare names the local repository <name>.git' '
141
142 git clone --bare src &&
143 test -d src.git
144
145'
146
468386a9
JS
147test_expect_success 'clone --mirror does not repeat tags' '
148
149 (cd src &&
150 git tag some-tag HEAD) &&
151 git clone --mirror src mirror2 &&
152 (cd mirror2 &&
153 git show-ref 2> clone.err > clone.out) &&
c7cf9566 154 ! grep Duplicate mirror2/clone.err &&
468386a9
JS
155 grep some-tag mirror2/clone.out
156
157'
158
44a68fd5
CB
159test_expect_success 'clone to destination with trailing /' '
160
161 git clone src target-1/ &&
162 T=$( cd target-1 && git rev-parse HEAD ) &&
163 S=$( cd src && git rev-parse HEAD ) &&
164 test "$T" = "$S"
165
166'
167
168test_expect_success 'clone to destination with extra trailing /' '
169
170 git clone src target-2/// &&
171 T=$( cd target-2 && git rev-parse HEAD ) &&
172 S=$( cd src && git rev-parse HEAD ) &&
173 test "$T" = "$S"
174
175'
176
55892d23
AP
177test_expect_success 'clone to an existing empty directory' '
178 mkdir target-3 &&
179 git clone src target-3 &&
180 T=$( cd target-3 && git rev-parse HEAD ) &&
181 S=$( cd src && git rev-parse HEAD ) &&
182 test "$T" = "$S"
183'
184
185test_expect_success 'clone to an existing non-empty directory' '
186 mkdir target-4 &&
187 >target-4/Fakefile &&
188 test_must_fail git clone src target-4
189'
190
191test_expect_success 'clone to an existing path' '
192 >target-5 &&
193 test_must_fail git clone src target-5
194'
195
5cd12b85
JH
196test_expect_success 'clone a void' '
197 mkdir src-0 &&
198 (
199 cd src-0 && git init
200 ) &&
12d49966
JK
201 git clone "file://$(pwd)/src-0" target-6 2>err-6 &&
202 ! grep "fatal:" err-6 &&
5cd12b85
JH
203 (
204 cd src-0 && test_commit A
205 ) &&
12d49966
JK
206 git clone "file://$(pwd)/src-0" target-7 2>err-7 &&
207 ! grep "fatal:" err-7 &&
5cd12b85
JH
208 # There is no reason to insist they are bit-for-bit
209 # identical, but this test should suffice for now.
210 test_cmp target-6/.git/config target-7/.git/config
211'
212
a9f2c136
JH
213test_expect_success 'clone respects global branch.autosetuprebase' '
214 (
a9f2c136 215 test_config="$HOME/.gitconfig" &&
a9f2c136
JH
216 git config -f "$test_config" branch.autosetuprebase remote &&
217 rm -fr dst &&
218 git clone src dst &&
219 cd dst &&
220 actual="z$(git config branch.master.rebase)" &&
221 test ztrue = $actual
222 )
223'
224
9d2e9420
JK
225test_expect_success 'respect url-encoding of file://' '
226 git init x+y &&
730220de
TR
227 git clone "file://$PWD/x+y" xy-url-1 &&
228 git clone "file://$PWD/x%2By" xy-url-2
229'
230
231test_expect_success 'do not query-string-decode + in URLs' '
232 rm -rf x+y &&
233 git init "x y" &&
234 test_must_fail git clone "file://$PWD/x+y" xy-no-plus
9d2e9420
JK
235'
236
237test_expect_success 'do not respect url-encoding of non-url path' '
238 git init x+y &&
239 test_must_fail git clone x%2By xy-regular &&
240 git clone x+y xy-regular
241'
242
b57fb80a
NTND
243test_expect_success 'clone separate gitdir' '
244 rm -rf dst &&
245 git clone --separate-git-dir realgitdir src dst &&
b57fb80a
NTND
246 test -d realgitdir/refs
247'
248
33d56fa0 249test_expect_success 'clone separate gitdir: output' '
c723e50d 250 echo "gitdir: $(pwd)/realgitdir" >expected &&
2c050e01
ÆAB
251 test_cmp expected dst/.git
252'
253
9b0ebc72
NTND
254test_expect_success 'clone from .git file' '
255 git clone dst/.git dst2
256'
257
0c80fdb3
PH
258test_expect_success 'fetch from .git gitfile' '
259 (
260 cd dst2 &&
261 git fetch ../dst/.git
262 )
263'
264
265test_expect_success 'fetch from gitfile parent' '
266 (
267 cd dst2 &&
268 git fetch ../dst
269 )
270'
271
b57fb80a
NTND
272test_expect_success 'clone separate gitdir where target already exists' '
273 rm -rf dst &&
274 test_must_fail git clone --separate-git-dir realgitdir src dst
275'
276
e6baf4a1 277test_expect_success 'clone --reference from original' '
dbc92b07
JH
278 git clone --shared --bare src src-1 &&
279 git clone --bare src src-2 &&
280 git clone --reference=src-2 --bare src-1 target-8 &&
281 grep /src-2/ target-8/objects/info/alternates
282'
283
284test_expect_success 'clone with more than one --reference' '
285 git clone --bare src src-3 &&
286 git clone --bare src src-4 &&
287 git clone --reference=src-3 --reference=src-4 src target-9 &&
288 grep /src-3/ target-9/.git/objects/info/alternates &&
289 grep /src-4/ target-9/.git/objects/info/alternates
290'
291
e6baf4a1
JH
292test_expect_success 'clone from original with relative alternate' '
293 mkdir nest &&
294 git clone --bare src nest/src-5 &&
295 echo ../../../src/.git/objects >nest/src-5/objects/info/alternates &&
296 git clone --bare nest/src-5 target-10 &&
297 grep /src/\\.git/objects target-10/objects/info/alternates
298'
299
5a7d5b68
NTND
300test_expect_success 'clone checking out a tag' '
301 git clone --branch=some-tag src dst.tag &&
302 GIT_DIR=src/.git git rev-parse some-tag >expected &&
303 test_cmp expected dst.tag/.git/HEAD &&
304 GIT_DIR=dst.tag/.git git config remote.origin.fetch >fetch.actual &&
305 echo "+refs/heads/*:refs/remotes/origin/*" >fetch.expected &&
306 test_cmp fetch.expected fetch.actual
307'
308
8339805b
JN
309test_expect_success 'set up ssh wrapper' '
310 cp "$GIT_BUILD_DIR/t/helper/test-fake-ssh$X" \
311 "$TRASH_DIRECTORY/ssh$X" &&
312 GIT_SSH="$TRASH_DIRECTORY/ssh$X" &&
313 export GIT_SSH &&
314 export TRASH_DIRECTORY &&
315 >"$TRASH_DIRECTORY"/ssh-output
316'
8d3d28f5 317
baaf2337 318copy_ssh_wrapper_as () {
cff48ccf 319 rm -f "${1%$X}$X" &&
94b8ae5a 320 cp "$TRASH_DIRECTORY/ssh$X" "${1%$X}$X" &&
8339805b 321 test_when_finished "rm $(git rev-parse --sq-quote "${1%$X}$X")" &&
3064d5a3 322 GIT_SSH="${1%$X}$X" &&
8339805b 323 test_when_finished "GIT_SSH=\"\$TRASH_DIRECTORY/ssh\$X\""
baaf2337 324}
325
8d3d28f5 326expect_ssh () {
710eb3e2
TB
327 test_when_finished '
328 (cd "$TRASH_DIRECTORY" && rm -f ssh-expect && >ssh-output)
329 ' &&
8d3d28f5 330 {
9f697652
TB
331 case "$#" in
332 1)
8d3d28f5 333 ;;
9f697652 334 2)
8d3d28f5 335 echo "ssh: $1 git-upload-pack '$2'"
9f697652
TB
336 ;;
337 3)
338 echo "ssh: $1 $2 git-upload-pack '$3'"
339 ;;
340 *)
341 echo "ssh: $1 $2 git-upload-pack '$3' $4"
8d3d28f5
NTND
342 esac
343 } >"$TRASH_DIRECTORY/ssh-expect" &&
344 (cd "$TRASH_DIRECTORY" && test_cmp ssh-expect ssh-output)
345}
346
2171f3d2 347test_expect_success 'clone myhost:src uses ssh' '
3a5728dc 348 GIT_TEST_PROTOCOL_VERSION=0 git clone myhost:src ssh-clone &&
8d3d28f5
NTND
349 expect_ssh myhost src
350'
351
f57a8715 352test_expect_success !MINGW,!CYGWIN 'clone local path foo:bar' '
60003340 353 cp -R src "foo:bar" &&
710eb3e2 354 git clone "foo:bar" foobar &&
8d3d28f5
NTND
355 expect_ssh none
356'
357
358test_expect_success 'bracketed hostnames are still ssh' '
3a5728dc 359 GIT_TEST_PROTOCOL_VERSION=0 git clone "[myhost:123]:src" ssh-bracket-clone &&
d1018c24 360 expect_ssh "-p 123" myhost src
60003340
NTND
361'
362
94b8ae5a 363test_expect_success 'OpenSSH variant passes -4' '
3a5728dc 364 GIT_TEST_PROTOCOL_VERSION=0 git clone -4 "[myhost:123]:src" ssh-ipv4-clone &&
94b8ae5a
BW
365 expect_ssh "-4 -p 123" myhost src
366'
367
a3f5b66f
JN
368test_expect_success 'variant can be overridden' '
369 copy_ssh_wrapper_as "$TRASH_DIRECTORY/putty" &&
370 git -c ssh.variant=putty clone -4 "[myhost:123]:src" ssh-putty-clone &&
371 expect_ssh "-4 -P 123" myhost src
94b8ae5a
BW
372'
373
0da0e49b
JN
374test_expect_success 'variant=auto picks based on basename' '
375 copy_ssh_wrapper_as "$TRASH_DIRECTORY/plink" &&
376 git -c ssh.variant=auto clone -4 "[myhost:123]:src" ssh-auto-clone &&
377 expect_ssh "-4 -P 123" myhost src
378'
379
a3f5b66f 380test_expect_success 'simple does not support -4/-6' '
94b8ae5a 381 copy_ssh_wrapper_as "$TRASH_DIRECTORY/simple" &&
3fa5e0d0
JN
382 test_must_fail git clone -4 "myhost:src" ssh-4-clone-simple
383'
384
385test_expect_success 'simple does not support port' '
386 copy_ssh_wrapper_as "$TRASH_DIRECTORY/simple" &&
387 test_must_fail git clone "[myhost:123]:src" ssh-bracket-clone-simple
94b8ae5a
BW
388'
389
390test_expect_success 'uplink is treated as simple' '
baaf2337 391 copy_ssh_wrapper_as "$TRASH_DIRECTORY/uplink" &&
3fa5e0d0
JN
392 test_must_fail git clone "[myhost:123]:src" ssh-bracket-clone-uplink &&
393 git clone "myhost:src" ssh-clone-uplink &&
94b8ae5a 394 expect_ssh myhost src
baaf2337 395'
396
0da0e49b
JN
397test_expect_success 'OpenSSH-like uplink is treated as ssh' '
398 write_script "$TRASH_DIRECTORY/uplink" <<-EOF &&
399 if test "\$1" = "-G"
400 then
401 exit 0
402 fi &&
403 exec "\$TRASH_DIRECTORY/ssh$X" "\$@"
404 EOF
405 test_when_finished "rm -f \"\$TRASH_DIRECTORY/uplink\"" &&
406 GIT_SSH="$TRASH_DIRECTORY/uplink" &&
407 test_when_finished "GIT_SSH=\"\$TRASH_DIRECTORY/ssh\$X\"" &&
3a5728dc 408 GIT_TEST_PROTOCOL_VERSION=0 git clone "[myhost:123]:src" ssh-bracket-clone-sshlike-uplink &&
0da0e49b
JN
409 expect_ssh "-p 123" myhost src
410'
411
baaf2337 412test_expect_success 'plink is treated specially (as putty)' '
413 copy_ssh_wrapper_as "$TRASH_DIRECTORY/plink" &&
414 git clone "[myhost:123]:src" ssh-bracket-clone-plink-0 &&
415 expect_ssh "-P 123" myhost src
60003340
NTND
416'
417
baaf2337 418test_expect_success 'plink.exe is treated specially (as putty)' '
419 copy_ssh_wrapper_as "$TRASH_DIRECTORY/plink.exe" &&
420 git clone "[myhost:123]:src" ssh-bracket-clone-plink-1 &&
421 expect_ssh "-P 123" myhost src
422'
423
424test_expect_success 'tortoiseplink is like putty, with extra arguments' '
425 copy_ssh_wrapper_as "$TRASH_DIRECTORY/tortoiseplink" &&
426 git clone "[myhost:123]:src" ssh-bracket-clone-plink-2 &&
427 expect_ssh "-batch -P 123" myhost src
428'
429
e9d9a8a4
SF
430test_expect_success 'double quoted plink.exe in GIT_SSH_COMMAND' '
431 copy_ssh_wrapper_as "$TRASH_DIRECTORY/plink.exe" &&
432 GIT_SSH_COMMAND="\"$TRASH_DIRECTORY/plink.exe\" -v" \
433 git clone "[myhost:123]:src" ssh-bracket-clone-plink-3 &&
434 expect_ssh "-v -P 123" myhost src
435'
436
e9d9a8a4
SF
437test_expect_success 'single quoted plink.exe in GIT_SSH_COMMAND' '
438 copy_ssh_wrapper_as "$TRASH_DIRECTORY/plink.exe" &&
439 GIT_SSH_COMMAND="$SQ$TRASH_DIRECTORY/plink.exe$SQ -v" \
440 git clone "[myhost:123]:src" ssh-bracket-clone-plink-4 &&
441 expect_ssh "-v -P 123" myhost src
442'
443
dd33e077
SF
444test_expect_success 'GIT_SSH_VARIANT overrides plink detection' '
445 copy_ssh_wrapper_as "$TRASH_DIRECTORY/plink" &&
3a5728dc
JT
446 GIT_TEST_PROTOCOL_VERSION=0 GIT_SSH_VARIANT=ssh \
447 git clone "[myhost:123]:src" ssh-bracket-clone-variant-1 &&
dd33e077
SF
448 expect_ssh "-p 123" myhost src
449'
450
451test_expect_success 'ssh.variant overrides plink detection' '
452 copy_ssh_wrapper_as "$TRASH_DIRECTORY/plink" &&
3a5728dc 453 GIT_TEST_PROTOCOL_VERSION=0 git -c ssh.variant=ssh \
dd33e077
SF
454 clone "[myhost:123]:src" ssh-bracket-clone-variant-2 &&
455 expect_ssh "-p 123" myhost src
456'
457
458test_expect_success 'GIT_SSH_VARIANT overrides plink detection to plink' '
8339805b 459 copy_ssh_wrapper_as "$TRASH_DIRECTORY/plink" &&
dd33e077
SF
460 GIT_SSH_VARIANT=plink \
461 git clone "[myhost:123]:src" ssh-bracket-clone-variant-3 &&
462 expect_ssh "-P 123" myhost src
463'
464
465test_expect_success 'GIT_SSH_VARIANT overrides plink to tortoiseplink' '
8339805b 466 copy_ssh_wrapper_as "$TRASH_DIRECTORY/plink" &&
dd33e077
SF
467 GIT_SSH_VARIANT=tortoiseplink \
468 git clone "[myhost:123]:src" ssh-bracket-clone-variant-4 &&
469 expect_ssh "-batch -P 123" myhost src
470'
471
22e5ae5c
JK
472test_expect_success 'clean failure on broken quoting' '
473 test_must_fail \
474 env GIT_SSH_COMMAND="${SQ}plink.exe -v" \
475 git clone "[myhost:123]:src" sq-failure
476'
477
2171f3d2
TB
478counter=0
479# $1 url
480# $2 none|host
481# $3 path
482test_clone_url () {
483 counter=$(($counter + 1))
3a5728dc 484 test_might_fail env GIT_TEST_PROTOCOL_VERSION=0 git clone "$1" tmp$counter &&
9f697652
TB
485 shift &&
486 expect_ssh "$@"
2171f3d2
TB
487}
488
1cadad6f 489test_expect_success !MINGW,!CYGWIN 'clone c:temp is ssl' '
2171f3d2
TB
490 test_clone_url c:temp c temp
491'
492
493test_expect_success MINGW 'clone c:temp is dos drive' '
494 test_clone_url c:temp none
495'
496
497#ip v4
6a599748 498for repo in rep rep/home/project 123
2171f3d2
TB
499do
500 test_expect_success "clone host:$repo" '
501 test_clone_url host:$repo host $repo
502 '
503done
504
505#ipv6
2171f3d2
TB
506for repo in rep rep/home/project 123
507do
508 test_expect_success "clone [::1]:$repo" '
9f697652 509 test_clone_url [::1]:$repo ::1 "$repo"
2171f3d2
TB
510 '
511done
c59ab2e5
TB
512#home directory
513test_expect_success "clone host:/~repo" '
514 test_clone_url host:/~repo host "~repo"
515'
516
517test_expect_success "clone [::1]:/~repo" '
518 test_clone_url [::1]:/~repo ::1 "~repo"
519'
2171f3d2
TB
520
521# Corner cases
83b05875 522for url in foo/bar:baz [foo]bar/baz:qux [foo/bar]:baz
2171f3d2
TB
523do
524 test_expect_success "clone $url is not ssh" '
525 test_clone_url $url none
526 '
527done
528
529#with ssh:// scheme
6b6c5f7a
TB
530#ignore trailing colon
531for tcol in "" :
532do
533 test_expect_success "clone ssh://host.xz$tcol/home/user/repo" '
534 test_clone_url "ssh://host.xz$tcol/home/user/repo" host.xz /home/user/repo
535 '
536 # from home directory
537 test_expect_success "clone ssh://host.xz$tcol/~repo" '
538 test_clone_url "ssh://host.xz$tcol/~repo" host.xz "~repo"
2171f3d2 539'
6b6c5f7a 540done
2171f3d2
TB
541
542# with port number
543test_expect_success 'clone ssh://host.xz:22/home/user/repo' '
544 test_clone_url "ssh://host.xz:22/home/user/repo" "-p 22 host.xz" "/home/user/repo"
545'
546
547# from home directory with port number
548test_expect_success 'clone ssh://host.xz:22/~repo' '
549 test_clone_url "ssh://host.xz:22/~repo" "-p 22 host.xz" "~repo"
550'
551
552#IPv6
6b6c5f7a 553for tuah in ::1 [::1] [::1]: user@::1 user@[::1] user@[::1]: [user@::1] [user@::1]:
9f697652 554do
a75a3081 555 ehost=$(echo $tuah | sed -e "s/1]:/1]/" | tr -d "[]")
9f697652
TB
556 test_expect_success "clone ssh://$tuah/home/user/repo" "
557 test_clone_url ssh://$tuah/home/user/repo $ehost /home/user/repo
558 "
559done
2171f3d2
TB
560
561#IPv6 from home directory
9f697652
TB
562for tuah in ::1 [::1] user@::1 user@[::1] [user@::1]
563do
564 euah=$(echo $tuah | tr -d "[]")
565 test_expect_success "clone ssh://$tuah/~repo" "
566 test_clone_url ssh://$tuah/~repo $euah '~repo'
567 "
568done
2171f3d2
TB
569
570#IPv6 with port number
9f697652
TB
571for tuah in [::1] user@[::1] [user@::1]
572do
573 euah=$(echo $tuah | tr -d "[]")
574 test_expect_success "clone ssh://$tuah:22/home/user/repo" "
575 test_clone_url ssh://$tuah:22/home/user/repo '-p 22' $euah /home/user/repo
576 "
577done
2171f3d2
TB
578
579#IPv6 from home directory with port number
9f697652
TB
580for tuah in [::1] user@[::1] [user@::1]
581do
582 euah=$(echo $tuah | tr -d "[]")
583 test_expect_success "clone ssh://$tuah:22/~repo" "
584 test_clone_url ssh://$tuah:22/~repo '-p 22' $euah '~repo'
585 "
586done
2171f3d2 587
8b277222
JH
588test_expect_success 'clone from a repository with two identical branches' '
589
590 (
591 cd src &&
592 git checkout -b another master
593 ) &&
594 git clone src target-11 &&
595 test "z$( cd target-11 && git symbolic-ref HEAD )" = zrefs/heads/another
596
597'
598
0d7d285f
NTND
599test_expect_success 'shallow clone locally' '
600 git clone --depth=1 --no-local src ssrrcc &&
601 git clone ssrrcc ddsstt &&
602 test_cmp ssrrcc/.git/shallow ddsstt/.git/shallow &&
603 ( cd ddsstt && git fsck )
604'
605
32359838
JK
606test_expect_success 'GIT_TRACE_PACKFILE produces a usable pack' '
607 rm -rf dst.git &&
608 GIT_TRACE_PACKFILE=$PWD/tmp.pack git clone --no-local --bare src dst.git &&
609 git init --bare replay.git &&
610 git -C replay.git index-pack -v --stdin <tmp.pack
611'
612
b6947af2
ES
613test_expect_success 'clone on case-insensitive fs' '
614 git init icasefs &&
615 (
51b85471 616 cd icasefs &&
b6947af2
ES
617 o=$(git hash-object -w --stdin </dev/null | hex2oct) &&
618 t=$(printf "100644 X\0${o}100644 x\0${o}" |
619 git hash-object -w -t tree --stdin) &&
620 c=$(git commit-tree -m bogus $t) &&
621 git update-ref refs/heads/bogus $c &&
b878579a 622 git clone -b bogus . bogus 2>warning
b6947af2
ES
623 )
624'
625
a7f609ec 626test_expect_success CASE_INSENSITIVE_FS 'colliding file detection' '
b878579a
NTND
627 grep X icasefs/warning &&
628 grep x icasefs/warning &&
629 test_i18ngrep "the following paths have collided" icasefs/warning
630'
631
1c4a9f91 632partial_clone_server () {
548719fb 633 SERVER="$1" &&
548719fb
JT
634
635 rm -rf "$SERVER" client &&
636 test_create_repo "$SERVER" &&
637 test_commit -C "$SERVER" one &&
638 HASH1=$(git hash-object "$SERVER/one.t") &&
639 git -C "$SERVER" revert HEAD &&
640 test_commit -C "$SERVER" two &&
641 HASH2=$(git hash-object "$SERVER/two.t") &&
642 test_config -C "$SERVER" uploadpack.allowfilter 1 &&
1c4a9f91
XL
643 test_config -C "$SERVER" uploadpack.allowanysha1inwant 1
644}
548719fb 645
1c4a9f91
XL
646partial_clone () {
647 SERVER="$1" &&
648 URL="$2" &&
649
650 partial_clone_server "${SERVER}" &&
548719fb
JT
651 git clone --filter=blob:limit=0 "$URL" client &&
652
653 git -C client fsck &&
654
655 # Ensure that unneeded blobs are not inadvertently fetched.
b14ed5ad 656 test_config -C client remote.origin.promisor "false" &&
fa3d1b63 657 git -C client config --unset remote.origin.partialclonefilter &&
548719fb
JT
658 test_must_fail git -C client cat-file -e "$HASH1" &&
659
660 # But this blob was fetched, because clone performs an initial checkout
661 git -C client cat-file -e "$HASH2"
662}
663
664test_expect_success 'partial clone' '
665 partial_clone server "file://$(pwd)/server"
666'
667
1c4a9f91
XL
668test_expect_success 'partial clone with -o' '
669 partial_clone_server server &&
670 git clone -o blah --filter=blob:limit=0 "file://$(pwd)/server" client
671'
672
548719fb
JT
673test_expect_success 'partial clone: warn if server does not support object filtering' '
674 rm -rf server client &&
675 test_create_repo server &&
676 test_commit -C server one &&
677
678 git clone --filter=blob:limit=0 "file://$(pwd)/server" client 2> err &&
679
680 test_i18ngrep "filtering not recognized by server" err
681'
682
c0c578b3
JT
683test_expect_success 'batch missing blob request during checkout' '
684 rm -rf server client &&
685
686 test_create_repo server &&
687 echo a >server/a &&
688 echo b >server/b &&
689 git -C server add a b &&
690
691 git -C server commit -m x &&
692 echo aa >server/a &&
693 echo bb >server/b &&
694 git -C server add a b &&
695 git -C server commit -m x &&
696
697 test_config -C server uploadpack.allowfilter 1 &&
698 test_config -C server uploadpack.allowanysha1inwant 1 &&
699
700 git clone --filter=blob:limit=0 "file://$(pwd)/server" client &&
701
702 # Ensure that there is only one negotiation by checking that there is
703 # only "done" line sent. ("done" marks the end of negotiation.)
704 GIT_TRACE_PACKET="$(pwd)/trace" git -C client checkout HEAD^ &&
705 grep "git> done" trace >done_lines &&
706 test_line_count = 1 done_lines
707'
708
709test_expect_success 'batch missing blob request does not inadvertently try to fetch gitlinks' '
710 rm -rf server client &&
711
712 test_create_repo repo_for_submodule &&
713 test_commit -C repo_for_submodule x &&
714
715 test_create_repo server &&
716 echo a >server/a &&
717 echo b >server/b &&
718 git -C server add a b &&
719 git -C server commit -m x &&
720
721 echo aa >server/a &&
722 echo bb >server/b &&
723 # Also add a gitlink pointing to an arbitrary repository
724 git -C server submodule add "$(pwd)/repo_for_submodule" c &&
725 git -C server add a b c &&
726 git -C server commit -m x &&
727
728 test_config -C server uploadpack.allowfilter 1 &&
729 test_config -C server uploadpack.allowanysha1inwant 1 &&
730
731 # Make sure that it succeeds
732 git clone --filter=blob:limit=0 "file://$(pwd)/server" client
733'
734
548719fb
JT
735. "$TEST_DIRECTORY"/lib-httpd.sh
736start_httpd
737
738test_expect_success 'partial clone using HTTP' '
739 partial_clone "$HTTPD_DOCUMENT_ROOT_PATH/server" "$HTTPD_URL/smart/server"
740'
741
decfe05b
SG
742# DO NOT add non-httpd-specific tests here, because the last part of this
743# test script is only executed when httpd is available and enabled.
744
a2b26acd 745test_done