]> git.ipfire.org Git - thirdparty/git.git/blame - t/t5606-clone-options.sh
The third batch
[thirdparty/git.git] / t / t5606-clone-options.sh
CommitLineData
ecaa0cff
JK
1#!/bin/sh
2
3test_description='basic clone options'
95cf2c01 4GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
334afbc7
JS
5export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
6
c65d18cb 7TEST_PASSES_SANITIZE_LEAK=true
ecaa0cff
JK
8. ./test-lib.sh
9
10test_expect_success 'setup' '
11
12 mkdir parent &&
13 (cd parent && git init &&
14 echo one >file && git add file &&
4fe788b1
LL
15 git commit -m one) &&
16 git clone --depth=1 --no-local parent shallow-repo
ecaa0cff
JK
17
18'
19
48072e3d
MK
20test_expect_success 'submodule.stickyRecursiveClone flag manipulates submodule.recurse value' '
21
22 test_config_global submodule.stickyRecursiveClone true &&
23 git clone --recurse-submodules parent clone_recurse_true &&
24 test_cmp_config -C clone_recurse_true true submodule.recurse &&
25
26 test_config_global submodule.stickyRecursiveClone false &&
27 git clone --recurse-submodules parent clone_recurse_false &&
28 test_expect_code 1 git -C clone_recurse_false config --get submodule.recurse
29
30'
31
ecaa0cff
JK
32test_expect_success 'clone -o' '
33
34 git clone -o foo parent clone-o &&
95cf2c01 35 git -C clone-o rev-parse --verify refs/remotes/foo/main
349cff76
SB
36
37'
38
de9ed3ef
SB
39test_expect_success 'rejects invalid -o/--origin' '
40
41 test_must_fail git clone -o "bad...name" parent clone-bad-name 2>err &&
6789275d 42 test_grep "'\''bad...name'\'' is not a valid remote name" err
de9ed3ef
SB
43
44'
45
3b910d6e 46test_expect_success 'clone --bare -o' '
349cff76 47
3b910d6e
JK
48 git clone -o foo --bare parent clone-bare-o &&
49 (cd parent && pwd) >expect &&
50 git -C clone-bare-o config remote.foo.url >actual &&
51 test_cmp expect actual
349cff76
SB
52
53'
54
55test_expect_success 'disallows --bare with --separate-git-dir' '
56
57 test_must_fail git clone --bare --separate-git-dir dot-git-destiation parent clone-bare-sgd 2>err &&
58 test_debug "cat err" &&
6789275d 59 test_grep -e "options .--bare. and .--separate-git-dir. cannot be used together" err
349cff76
SB
60
61'
62
e21e663c
DS
63test_expect_success 'disallows --bundle-uri with shallow options' '
64 for option in --depth=1 --shallow-since=01-01-2000 --shallow-exclude=HEAD
65 do
66 test_must_fail git clone --bundle-uri=bundle $option from to 2>err &&
7854bf49 67 grep "bundle-uri.* cannot be used together" err || return 1
e21e663c
DS
68 done
69'
70
4fe788b1
LL
71test_expect_success 'reject cloning shallow repository' '
72 test_when_finished "rm -rf repo" &&
73 test_must_fail git clone --reject-shallow shallow-repo out 2>err &&
6789275d 74 test_grep -e "source repository is shallow, reject to clone." err &&
4fe788b1
LL
75
76 git clone --no-reject-shallow shallow-repo repo
77'
78
79test_expect_success 'reject cloning non-local shallow repository' '
80 test_when_finished "rm -rf repo" &&
81 test_must_fail git clone --reject-shallow --no-local shallow-repo out 2>err &&
6789275d 82 test_grep -e "source repository is shallow, reject to clone." err &&
4fe788b1
LL
83
84 git clone --no-reject-shallow --no-local shallow-repo repo
85'
86
87test_expect_success 'succeed cloning normal repository' '
88 test_when_finished "rm -rf chilad1 child2 child3 child4 " &&
89 git clone --reject-shallow parent child1 &&
90 git clone --reject-shallow --no-local parent child2 &&
91 git clone --no-reject-shallow parent child3 &&
92 git clone --no-reject-shallow --no-local parent child4
93'
94
349cff76
SB
95test_expect_success 'uses "origin" for default remote name' '
96
97 git clone parent clone-default-origin &&
95cf2c01 98 git -C clone-default-origin rev-parse --verify refs/remotes/origin/main
349cff76
SB
99
100'
101
102test_expect_success 'prefers --template config over normal config' '
103
104 template="$TRASH_DIRECTORY/template-with-config" &&
105 mkdir "$template" &&
106 git config --file "$template/config" foo.bar from_template &&
107 test_config_global foo.bar from_global &&
108 git clone "--template=$template" parent clone-template-config &&
109 test "$(git -C clone-template-config config --local foo.bar)" = "from_template"
110
111'
112
113test_expect_success 'prefers -c config over --template config' '
114
115 template="$TRASH_DIRECTORY/template-with-ignored-config" &&
116 mkdir "$template" &&
117 git config --file "$template/config" foo.bar from_template &&
118 git clone "--template=$template" -c foo.bar=inline parent clone-template-inline-config &&
119 test "$(git -C clone-template-inline-config config --local foo.bar)" = "inline"
ecaa0cff
JK
120
121'
122
8145a8fd 123test_expect_success 'ignore --template config for core.bare' '
0f7443bd
EN
124
125 template="$TRASH_DIRECTORY/template-with-bare-config" &&
126 mkdir "$template" &&
127 git config --file "$template/config" core.bare true &&
128 git clone "--template=$template" parent clone-bare-config &&
8145a8fd
GT
129 test "$(git -C clone-bare-config config --local core.bare)" = "false" &&
130 test_path_is_missing clone-bare-config/HEAD
0f7443bd
EN
131'
132
de9ed3ef
SB
133test_expect_success 'prefers config "clone.defaultRemoteName" over default' '
134
135 test_config_global clone.defaultRemoteName from_config &&
136 git clone parent clone-config-origin &&
95cf2c01 137 git -C clone-config-origin rev-parse --verify refs/remotes/from_config/main
de9ed3ef
SB
138
139'
140
141test_expect_success 'prefers --origin over -c config' '
142
143 git clone -c clone.defaultRemoteName=inline --origin from_option parent clone-o-and-inline-config &&
95cf2c01 144 git -C clone-o-and-inline-config rev-parse --verify refs/remotes/from_option/main
de9ed3ef
SB
145
146'
147
68b939b2 148test_expect_success 'redirected clone does not show progress' '
21188b1e
MV
149
150 git clone "file://$(pwd)/parent" clone-redirected >out 2>err &&
2856cbf0 151 ! grep % err &&
6789275d 152 test_grep ! "Checking connectivity" err
21188b1e
MV
153
154'
68b939b2
JK
155
156test_expect_success 'redirected clone -v does show progress' '
21188b1e 157
5a518ad4
TRC
158 git clone --progress "file://$(pwd)/parent" clone-redirected-progress \
159 >out 2>err &&
68b939b2 160 grep % err
21188b1e
MV
161
162'
163
75555676 164test_expect_success 'clone does not segfault with --bare and core.bare=false' '
165 test_config_global core.bare false &&
166 git clone --bare parent clone-bare &&
167 echo true >expect &&
168 git -C clone-bare rev-parse --is-bare-repository >actual &&
169 test_cmp expect actual
170'
171
0cc1b475 172test_expect_success 'chooses correct default initial branch name' '
4f37d457
JT
173 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME= \
174 git -c init.defaultBranch=foo init --bare empty &&
175 test_config -C empty lsrefs.unborn advertise &&
704fed9e 176 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME= \
5f70859c 177 git -c init.defaultBranch=up -c protocol.version=2 clone empty whats-up &&
4f37d457
JT
178 test refs/heads/foo = $(git -C whats-up symbolic-ref HEAD) &&
179 test refs/heads/foo = $(git -C whats-up config branch.foo.merge)
0cc1b475
JS
180'
181
182test_expect_success 'guesses initial branch name correctly' '
183 git init --initial-branch=guess initial-branch &&
184 test_commit -C initial-branch no-spoilers &&
185 git -C initial-branch branch abc guess &&
186 git clone initial-branch is-it &&
a471214b
JS
187 test refs/heads/guess = $(git -C is-it symbolic-ref HEAD) &&
188
189 git -c init.defaultBranch=none init --bare no-head &&
190 git -C initial-branch push ../no-head guess abc &&
704fed9e 191 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME= \
a471214b
JS
192 git clone no-head is-it2 &&
193 test_must_fail git -C is-it2 symbolic-ref refs/remotes/origin/HEAD &&
194 git -C no-head update-ref --no-deref HEAD refs/heads/guess &&
704fed9e 195 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME= \
a471214b
JS
196 git -c init.defaultBranch=guess clone no-head is-it3 &&
197 test refs/remotes/origin/guess = \
198 $(git -C is-it3 symbolic-ref refs/remotes/origin/HEAD)
0cc1b475
JS
199'
200
ecaa0cff 201test_done