submodule: update and add must honor --quiet flag
[git/gitster.git] / t / t7400-submodule-basic.sh
blobf086db10731b147a722686efd5e2d19c7be72dd1
1 #!/bin/sh
3 # Copyright (c) 2007 Lars Hjemli
6 test_description='Basic porcelain support for submodules
8 This test tries to verify basic sanity of the init, update and status
9 subcommands of git submodule.
12 . ./test-lib.sh
14 test_expect_success 'setup - initial commit' '
15 >t &&
16 git add t &&
17 git commit -m "initial commit" &&
18 git branch initial
21 test_expect_success 'setup - repository in init subdirectory' '
22 mkdir init &&
24 cd init &&
25 git init &&
26 echo a >a &&
27 git add a &&
28 git commit -m "submodule commit 1" &&
29 git tag -a -m "rev-1" rev-1
33 test_expect_success 'setup - commit with gitlink' '
34 echo a >a &&
35 echo z >z &&
36 git add a init z &&
37 git commit -m "super commit 1"
40 test_expect_success 'setup - hide init subdirectory' '
41 mv init .subrepo
44 test_expect_success 'setup - repository to add submodules to' '
45 git init addtest &&
46 git init addtest-ignore
49 # The 'submodule add' tests need some repository to add as a submodule.
50 # The trash directory is a good one as any.
51 submodurl=$TRASH_DIRECTORY
53 listbranches() {
54 git for-each-ref --format='%(refname)' 'refs/heads/*'
57 inspect() {
58 dir=$1 &&
59 dotdot="${2:-..}" &&
62 cd "$dir" &&
63 listbranches >"$dotdot/heads" &&
64 { git symbolic-ref HEAD || :; } >"$dotdot/head" &&
65 git rev-parse HEAD >"$dotdot/head-sha1" &&
66 git update-index --refresh &&
67 git diff-files --exit-code &&
68 git clean -n -d -x >"$dotdot/untracked"
72 test_expect_success 'submodule add' '
73 echo "refs/heads/master" >expect &&
74 >empty &&
77 cd addtest &&
78 git submodule add -q "$submodurl" submod >actual &&
79 test ! -s actual &&
80 git submodule init
81 ) &&
83 rm -f heads head untracked &&
84 inspect addtest/submod ../.. &&
85 test_cmp expect heads &&
86 test_cmp expect head &&
87 test_cmp empty untracked
90 test_expect_success 'submodule add to .gitignored path fails' '
92 cd addtest-ignore &&
93 cat <<-\EOF >expect &&
94 The following path is ignored by one of your .gitignore files:
95 submod
96 Use -f if you really want to add it.
97 EOF
98 # Does not use test_commit due to the ignore
99 echo "*" > .gitignore &&
100 git add --force .gitignore &&
101 git commit -m"Ignore everything" &&
102 ! git submodule add "$submodurl" submod >actual 2>&1 &&
103 test_cmp expect actual
107 test_expect_success 'submodule add to .gitignored path with --force' '
109 cd addtest-ignore &&
110 git submodule add --force "$submodurl" submod
114 test_expect_success 'submodule add --branch' '
115 echo "refs/heads/initial" >expect-head &&
116 cat <<-\EOF >expect-heads &&
117 refs/heads/initial
118 refs/heads/master
120 >empty &&
123 cd addtest &&
124 git submodule add -b initial "$submodurl" submod-branch &&
125 git submodule init
126 ) &&
128 rm -f heads head untracked &&
129 inspect addtest/submod-branch ../.. &&
130 test_cmp expect-heads heads &&
131 test_cmp expect-head head &&
132 test_cmp empty untracked
135 test_expect_success 'submodule add with ./ in path' '
136 echo "refs/heads/master" >expect &&
137 >empty &&
140 cd addtest &&
141 git submodule add "$submodurl" ././dotsubmod/./frotz/./ &&
142 git submodule init
143 ) &&
145 rm -f heads head untracked &&
146 inspect addtest/dotsubmod/frotz ../../.. &&
147 test_cmp expect heads &&
148 test_cmp expect head &&
149 test_cmp empty untracked
152 test_expect_success 'submodule add with // in path' '
153 echo "refs/heads/master" >expect &&
154 >empty &&
157 cd addtest &&
158 git submodule add "$submodurl" slashslashsubmod///frotz// &&
159 git submodule init
160 ) &&
162 rm -f heads head untracked &&
163 inspect addtest/slashslashsubmod/frotz ../../.. &&
164 test_cmp expect heads &&
165 test_cmp expect head &&
166 test_cmp empty untracked
169 test_expect_success 'submodule add with /.. in path' '
170 echo "refs/heads/master" >expect &&
171 >empty &&
174 cd addtest &&
175 git submodule add "$submodurl" dotdotsubmod/../realsubmod/frotz/.. &&
176 git submodule init
177 ) &&
179 rm -f heads head untracked &&
180 inspect addtest/realsubmod ../.. &&
181 test_cmp expect heads &&
182 test_cmp expect head &&
183 test_cmp empty untracked
186 test_expect_success 'submodule add with ./, /.. and // in path' '
187 echo "refs/heads/master" >expect &&
188 >empty &&
191 cd addtest &&
192 git submodule add "$submodurl" dot/dotslashsubmod/./../..////realsubmod2/a/b/c/d/../../../../frotz//.. &&
193 git submodule init
194 ) &&
196 rm -f heads head untracked &&
197 inspect addtest/realsubmod2 ../.. &&
198 test_cmp expect heads &&
199 test_cmp expect head &&
200 test_cmp empty untracked
203 test_expect_success 'setup - add an example entry to .gitmodules' '
204 GIT_CONFIG=.gitmodules \
205 git config submodule.example.url git://example.com/init.git
208 test_expect_success 'status should fail for unmapped paths' '
209 test_must_fail git submodule status
212 test_expect_success 'setup - map path in .gitmodules' '
213 cat <<\EOF >expect &&
214 [submodule "example"]
215 url = git://example.com/init.git
216 path = init
219 GIT_CONFIG=.gitmodules git config submodule.example.path init &&
221 test_cmp expect .gitmodules
224 test_expect_success 'status should only print one line' '
225 git submodule status >lines &&
226 test $(wc -l <lines) = 1
229 test_expect_success 'setup - fetch commit name from submodule' '
230 rev1=$(cd .subrepo && git rev-parse HEAD) &&
231 printf "rev1: %s\n" "$rev1" &&
232 test -n "$rev1"
235 test_expect_success 'status should initially be "missing"' '
236 git submodule status >lines &&
237 grep "^-$rev1" lines
240 test_expect_success 'init should register submodule url in .git/config' '
241 echo git://example.com/init.git >expect &&
243 git submodule init &&
244 git config submodule.example.url >url &&
245 git config submodule.example.url ./.subrepo &&
247 test_cmp expect url
250 test_expect_success 'update should fail when path is used by a file' '
251 echo hello >expect &&
253 echo "hello" >init &&
254 test_must_fail git submodule update &&
256 test_cmp expect init
259 test_expect_success 'update should fail when path is used by a nonempty directory' '
260 echo hello >expect &&
262 rm -fr init &&
263 mkdir init &&
264 echo "hello" >init/a &&
266 test_must_fail git submodule update &&
268 test_cmp expect init/a
271 test_expect_success 'update should work when path is an empty dir' '
272 rm -fr init &&
273 rm -f head-sha1 &&
274 echo "$rev1" >expect &&
276 mkdir init &&
277 git submodule update -q >update.out &&
278 test ! -s update.out &&
280 inspect init &&
281 test_cmp expect head-sha1
284 test_expect_success 'status should be "up-to-date" after update' '
285 git submodule status >list &&
286 grep "^ $rev1" list
289 test_expect_success 'status should be "modified" after submodule commit' '
291 cd init &&
292 echo b >b &&
293 git add b &&
294 git commit -m "submodule commit 2"
295 ) &&
297 rev2=$(cd init && git rev-parse HEAD) &&
298 test -n "$rev2" &&
299 git submodule status >list &&
301 grep "^+$rev2" list
304 test_expect_success 'the --cached sha1 should be rev1' '
305 git submodule --cached status >list &&
306 grep "^+$rev1" list
309 test_expect_success 'git diff should report the SHA1 of the new submodule commit' '
310 git diff >diff &&
311 grep "^+Subproject commit $rev2" diff
314 test_expect_success 'update should checkout rev1' '
315 rm -f head-sha1 &&
316 echo "$rev1" >expect &&
318 git submodule update init &&
319 inspect init &&
321 test_cmp expect head-sha1
324 test_expect_success 'status should be "up-to-date" after update' '
325 git submodule status >list &&
326 grep "^ $rev1" list
329 test_expect_success 'checkout superproject with subproject already present' '
330 git checkout initial &&
331 git checkout master
334 test_expect_success 'apply submodule diff' '
335 >empty &&
337 git branch second &&
339 cd init &&
340 echo s >s &&
341 git add s &&
342 git commit -m "change subproject"
343 ) &&
344 git update-index --add init &&
345 git commit -m "change init" &&
346 git format-patch -1 --stdout >P.diff &&
347 git checkout second &&
348 git apply --index P.diff &&
350 git diff --cached master >staged &&
351 test_cmp empty staged
354 test_expect_success 'update --init' '
355 mv init init2 &&
356 git config -f .gitmodules submodule.example.url "$(pwd)/init2" &&
357 git config --remove-section submodule.example &&
358 test_must_fail git config submodule.example.url &&
360 git submodule update init > update.out &&
361 cat update.out &&
362 grep "not initialized" update.out &&
363 ! test -d init/.git &&
365 git submodule update --init init &&
366 test -d init/.git
369 test_expect_success 'do not add files from a submodule' '
371 git reset --hard &&
372 test_must_fail git add init/a
376 test_expect_success 'gracefully add submodule with a trailing slash' '
378 git reset --hard &&
379 git commit -m "commit subproject" init &&
380 (cd init &&
381 echo b > a) &&
382 git add init/ &&
383 git diff --exit-code --cached init &&
384 commit=$(cd init &&
385 git commit -m update a >/dev/null &&
386 git rev-parse HEAD) &&
387 git add init/ &&
388 test_must_fail git diff --exit-code --cached init &&
389 test $commit = $(git ls-files --stage |
390 sed -n "s/^160000 \([^ ]*\).*/\1/p")
394 test_expect_success 'ls-files gracefully handles trailing slash' '
396 test "init" = "$(git ls-files init/)"
400 test_expect_success 'moving to a commit without submodule does not leave empty dir' '
401 rm -rf init &&
402 mkdir init &&
403 git reset --hard &&
404 git checkout initial &&
405 test ! -d init &&
406 git checkout second
409 test_expect_success 'submodule <invalid-path> warns' '
411 git submodule no-such-submodule 2> output.err &&
412 grep "^error: .*no-such-submodule" output.err
416 test_expect_success 'add submodules without specifying an explicit path' '
417 mkdir repo &&
419 cd repo &&
420 git init &&
421 echo r >r &&
422 git add r &&
423 git commit -m "repo commit 1"
424 ) &&
425 git clone --bare repo/ bare.git &&
427 cd addtest &&
428 git submodule add "$submodurl/repo" &&
429 git config -f .gitmodules submodule.repo.path repo &&
430 git submodule add "$submodurl/bare.git" &&
431 git config -f .gitmodules submodule.bare.path bare
435 test_expect_success 'add should fail when path is used by a file' '
437 cd addtest &&
438 touch file &&
439 test_must_fail git submodule add "$submodurl/repo" file
443 test_expect_success 'add should fail when path is used by an existing directory' '
445 cd addtest &&
446 mkdir empty-dir &&
447 test_must_fail git submodule add "$submodurl/repo" empty-dir
451 test_expect_success 'set up for relative path tests' '
452 mkdir reltest &&
454 cd reltest &&
455 git init &&
456 mkdir sub &&
458 cd sub &&
459 git init &&
460 test_commit foo
461 ) &&
462 git add sub &&
463 git config -f .gitmodules submodule.sub.path sub &&
464 git config -f .gitmodules submodule.sub.url ../subrepo &&
465 cp .git/config pristine-.git-config
469 test_expect_success 'relative path works with URL' '
471 cd reltest &&
472 cp pristine-.git-config .git/config &&
473 git config remote.origin.url ssh://hostname/repo &&
474 git submodule init &&
475 test "$(git config submodule.sub.url)" = ssh://hostname/subrepo
479 test_expect_success 'relative path works with user@host:path' '
481 cd reltest &&
482 cp pristine-.git-config .git/config &&
483 git config remote.origin.url user@host:repo &&
484 git submodule init &&
485 test "$(git config submodule.sub.url)" = user@host:subrepo
489 test_done