t7400: encapsulate setup code in test_expect_success
[git.git] / t / t7400-submodule-basic.sh
blobd501ab4b613cd351c15c07f7a4fec4c28f6c8981
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 'submodule deinit works on empty repository' '
15 git submodule deinit --all
18 test_expect_success 'setup - initial commit' '
19 >t &&
20 git add t &&
21 git commit -m "initial commit" &&
22 git branch initial
25 test_expect_success 'submodule init aborts on missing .gitmodules file' '
26 test_when_finished "git update-index --remove sub" &&
27 git update-index --add --cacheinfo 160000,$(git rev-parse HEAD),sub &&
28 # missing the .gitmodules file here
29 test_must_fail git submodule init 2>actual &&
30 test_i18ngrep "No url found for submodule path" actual
33 test_expect_success 'submodule update aborts on missing .gitmodules file' '
34 test_when_finished "git update-index --remove sub" &&
35 git update-index --add --cacheinfo 160000,$(git rev-parse HEAD),sub &&
36 # missing the .gitmodules file here
37 git submodule update sub 2>actual &&
38 test_i18ngrep "Submodule path .sub. not initialized" actual
41 test_expect_success 'submodule update aborts on missing gitmodules url' '
42 test_when_finished "git update-index --remove sub" &&
43 git update-index --add --cacheinfo 160000,$(git rev-parse HEAD),sub &&
44 test_when_finished "rm -f .gitmodules" &&
45 git config -f .gitmodules submodule.s.path sub &&
46 test_must_fail git submodule init
49 test_expect_success 'setup - repository in init subdirectory' '
50 mkdir init &&
52 cd init &&
53 git init &&
54 echo a >a &&
55 git add a &&
56 git commit -m "submodule commit 1" &&
57 git tag -a -m "rev-1" rev-1
61 test_expect_success 'setup - commit with gitlink' '
62 echo a >a &&
63 echo z >z &&
64 git add a init z &&
65 git commit -m "super commit 1"
68 test_expect_success 'setup - hide init subdirectory' '
69 mv init .subrepo
72 test_expect_success 'setup - repository to add submodules to' '
73 git init addtest &&
74 git init addtest-ignore
77 # The 'submodule add' tests need some repository to add as a submodule.
78 # The trash directory is a good one as any. We need to canonicalize
79 # the name, though, as some tests compare it to the absolute path git
80 # generates, which will expand symbolic links.
81 submodurl=$(pwd -P)
83 listbranches() {
84 git for-each-ref --format='%(refname)' 'refs/heads/*'
87 inspect() {
88 dir=$1 &&
89 dotdot="${2:-..}" &&
92 cd "$dir" &&
93 listbranches >"$dotdot/heads" &&
94 { git symbolic-ref HEAD || :; } >"$dotdot/head" &&
95 git rev-parse HEAD >"$dotdot/head-sha1" &&
96 git update-index --refresh &&
97 git diff-files --exit-code &&
98 git clean -n -d -x >"$dotdot/untracked"
102 test_expect_success 'submodule add' '
103 echo "refs/heads/master" >expect &&
104 >empty &&
107 cd addtest &&
108 git submodule add -q "$submodurl" submod >actual &&
109 test_must_be_empty actual &&
110 echo "gitdir: ../.git/modules/submod" >expect &&
111 test_cmp expect submod/.git &&
113 cd submod &&
114 git config core.worktree >actual &&
115 echo "../../../submod" >expect &&
116 test_cmp expect actual &&
117 rm -f actual expect
118 ) &&
119 git submodule init
120 ) &&
122 rm -f heads head untracked &&
123 inspect addtest/submod ../.. &&
124 test_cmp expect heads &&
125 test_cmp expect head &&
126 test_cmp empty untracked
129 test_expect_success 'setup parent and one repository' '
130 test_create_repo parent &&
131 test_commit -C parent one
134 test_expect_success 'redirected submodule add does not show progress' '
135 git -C addtest submodule add "file://$submodurl/parent" submod-redirected \
136 2>err &&
137 ! grep % err &&
138 test_i18ngrep ! "Checking connectivity" err
141 test_expect_success 'redirected submodule add --progress does show progress' '
142 git -C addtest submodule add --progress "file://$submodurl/parent" \
143 submod-redirected-progress 2>err && \
144 grep % err
147 test_expect_success 'submodule add to .gitignored path fails' '
149 cd addtest-ignore &&
150 cat <<-\EOF >expect &&
151 The following path is ignored by one of your .gitignore files:
152 submod
153 Use -f if you really want to add it.
155 # Does not use test_commit due to the ignore
156 echo "*" > .gitignore &&
157 git add --force .gitignore &&
158 git commit -m"Ignore everything" &&
159 ! git submodule add "$submodurl" submod >actual 2>&1 &&
160 test_i18ncmp expect actual
164 test_expect_success 'submodule add to .gitignored path with --force' '
166 cd addtest-ignore &&
167 git submodule add --force "$submodurl" submod
171 test_expect_success 'submodule add to reconfigure existing submodule with --force' '
173 cd addtest-ignore &&
174 git submodule add --force bogus-url submod &&
175 git submodule add -b initial "$submodurl" submod-branch &&
176 test "bogus-url" = "$(git config -f .gitmodules submodule.submod.url)" &&
177 test "bogus-url" = "$(git config submodule.submod.url)" &&
178 # Restore the url
179 git submodule add --force "$submodurl" submod
180 test "$submodurl" = "$(git config -f .gitmodules submodule.submod.url)" &&
181 test "$submodurl" = "$(git config submodule.submod.url)"
185 test_expect_success 'submodule add --branch' '
186 echo "refs/heads/initial" >expect-head &&
187 cat <<-\EOF >expect-heads &&
188 refs/heads/initial
189 refs/heads/master
191 >empty &&
194 cd addtest &&
195 git submodule add -b initial "$submodurl" submod-branch &&
196 test "initial" = "$(git config -f .gitmodules submodule.submod-branch.branch)" &&
197 git submodule init
198 ) &&
200 rm -f heads head untracked &&
201 inspect addtest/submod-branch ../.. &&
202 test_cmp expect-heads heads &&
203 test_cmp expect-head head &&
204 test_cmp empty untracked
207 test_expect_success 'submodule add with ./ in path' '
208 echo "refs/heads/master" >expect &&
209 >empty &&
212 cd addtest &&
213 git submodule add "$submodurl" ././dotsubmod/./frotz/./ &&
214 git submodule init
215 ) &&
217 rm -f heads head untracked &&
218 inspect addtest/dotsubmod/frotz ../../.. &&
219 test_cmp expect heads &&
220 test_cmp expect head &&
221 test_cmp empty untracked
224 test_expect_success 'submodule add with /././ in path' '
225 echo "refs/heads/master" >expect &&
226 >empty &&
229 cd addtest &&
230 git submodule add "$submodurl" dotslashdotsubmod/././frotz/./ &&
231 git submodule init
232 ) &&
234 rm -f heads head untracked &&
235 inspect addtest/dotslashdotsubmod/frotz ../../.. &&
236 test_cmp expect heads &&
237 test_cmp expect head &&
238 test_cmp empty untracked
241 test_expect_success 'submodule add with // in path' '
242 echo "refs/heads/master" >expect &&
243 >empty &&
246 cd addtest &&
247 git submodule add "$submodurl" slashslashsubmod///frotz// &&
248 git submodule init
249 ) &&
251 rm -f heads head untracked &&
252 inspect addtest/slashslashsubmod/frotz ../../.. &&
253 test_cmp expect heads &&
254 test_cmp expect head &&
255 test_cmp empty untracked
258 test_expect_success 'submodule add with /.. in path' '
259 echo "refs/heads/master" >expect &&
260 >empty &&
263 cd addtest &&
264 git submodule add "$submodurl" dotdotsubmod/../realsubmod/frotz/.. &&
265 git submodule init
266 ) &&
268 rm -f heads head untracked &&
269 inspect addtest/realsubmod ../.. &&
270 test_cmp expect heads &&
271 test_cmp expect head &&
272 test_cmp empty untracked
275 test_expect_success 'submodule add with ./, /.. and // in path' '
276 echo "refs/heads/master" >expect &&
277 >empty &&
280 cd addtest &&
281 git submodule add "$submodurl" dot/dotslashsubmod/./../..////realsubmod2/a/b/c/d/../../../../frotz//.. &&
282 git submodule init
283 ) &&
285 rm -f heads head untracked &&
286 inspect addtest/realsubmod2 ../.. &&
287 test_cmp expect heads &&
288 test_cmp expect head &&
289 test_cmp empty untracked
292 test_expect_success !CYGWIN 'submodule add with \\ in path' '
293 test_when_finished "rm -rf parent sub\\with\\backslash" &&
295 # Initialize a repo with a backslash in its name
296 git init sub\\with\\backslash &&
297 touch sub\\with\\backslash/empty.file &&
298 git -C sub\\with\\backslash add empty.file &&
299 git -C sub\\with\\backslash commit -m "Added empty.file" &&
301 # Add that repository as a submodule
302 git init parent &&
303 git -C parent submodule add ../sub\\with\\backslash
306 test_expect_success 'submodule add in subdirectory' '
307 echo "refs/heads/master" >expect &&
308 >empty &&
310 mkdir addtest/sub &&
312 cd addtest/sub &&
313 git submodule add "$submodurl" ../realsubmod3 &&
314 git submodule init
315 ) &&
317 rm -f heads head untracked &&
318 inspect addtest/realsubmod3 ../.. &&
319 test_cmp expect heads &&
320 test_cmp expect head &&
321 test_cmp empty untracked
324 test_expect_success 'submodule add in subdirectory with relative path should fail' '
326 cd addtest/sub &&
327 test_must_fail git submodule add ../../ submod3 2>../../output.err
328 ) &&
329 test_i18ngrep toplevel output.err
332 test_expect_success 'setup - add an example entry to .gitmodules' '
333 git config --file=.gitmodules submodule.example.url git://example.com/init.git
336 test_expect_success 'status should fail for unmapped paths' '
337 test_must_fail git submodule status
340 test_expect_success 'setup - map path in .gitmodules' '
341 cat <<\EOF >expect &&
342 [submodule "example"]
343 url = git://example.com/init.git
344 path = init
347 git config --file=.gitmodules submodule.example.path init &&
349 test_cmp expect .gitmodules
352 test_expect_success 'status should only print one line' '
353 git submodule status >lines &&
354 test_line_count = 1 lines
357 test_expect_success 'setup - fetch commit name from submodule' '
358 rev1=$(cd .subrepo && git rev-parse HEAD) &&
359 printf "rev1: %s\n" "$rev1" &&
360 test -n "$rev1"
363 test_expect_success 'status should initially be "missing"' '
364 git submodule status >lines &&
365 grep "^-$rev1" lines
368 test_expect_success 'init should register submodule url in .git/config' '
369 echo git://example.com/init.git >expect &&
371 git submodule init &&
372 git config submodule.example.url >url &&
373 git config submodule.example.url ./.subrepo &&
375 test_cmp expect url
378 test_failure_with_unknown_submodule () {
379 test_must_fail git submodule $1 no-such-submodule 2>output.err &&
380 grep "^error: .*no-such-submodule" output.err
383 test_expect_success 'init should fail with unknown submodule' '
384 test_failure_with_unknown_submodule init
387 test_expect_success 'update should fail with unknown submodule' '
388 test_failure_with_unknown_submodule update
391 test_expect_success 'status should fail with unknown submodule' '
392 test_failure_with_unknown_submodule status
395 test_expect_success 'sync should fail with unknown submodule' '
396 test_failure_with_unknown_submodule sync
399 test_expect_success 'update should fail when path is used by a file' '
400 echo hello >expect &&
402 echo "hello" >init &&
403 test_must_fail git submodule update &&
405 test_cmp expect init
408 test_expect_success 'update should fail when path is used by a nonempty directory' '
409 echo hello >expect &&
411 rm -fr init &&
412 mkdir init &&
413 echo "hello" >init/a &&
415 test_must_fail git submodule update &&
417 test_cmp expect init/a
420 test_expect_success 'update should work when path is an empty dir' '
421 rm -fr init &&
422 rm -f head-sha1 &&
423 echo "$rev1" >expect &&
425 mkdir init &&
426 git submodule update -q >update.out &&
427 test_must_be_empty update.out &&
429 inspect init &&
430 test_cmp expect head-sha1
433 test_expect_success 'status should be "up-to-date" after update' '
434 git submodule status >list &&
435 grep "^ $rev1" list
438 test_expect_success 'status "up-to-date" from subdirectory' '
439 mkdir -p sub &&
441 cd sub &&
442 git submodule status >../list
443 ) &&
444 grep "^ $rev1" list &&
445 grep "\\.\\./init" list
448 test_expect_success 'status "up-to-date" from subdirectory with path' '
449 mkdir -p sub &&
451 cd sub &&
452 git submodule status ../init >../list
453 ) &&
454 grep "^ $rev1" list &&
455 grep "\\.\\./init" list
458 test_expect_success 'status should be "modified" after submodule commit' '
460 cd init &&
461 echo b >b &&
462 git add b &&
463 git commit -m "submodule commit 2"
464 ) &&
466 rev2=$(cd init && git rev-parse HEAD) &&
467 test -n "$rev2" &&
468 git submodule status >list &&
470 grep "^+$rev2" list
473 test_expect_success 'the --cached sha1 should be rev1' '
474 git submodule --cached status >list &&
475 grep "^+$rev1" list
478 test_expect_success 'git diff should report the SHA1 of the new submodule commit' '
479 git diff >diff &&
480 grep "^+Subproject commit $rev2" diff
483 test_expect_success 'update should checkout rev1' '
484 rm -f head-sha1 &&
485 echo "$rev1" >expect &&
487 git submodule update init &&
488 inspect init &&
490 test_cmp expect head-sha1
493 test_expect_success 'status should be "up-to-date" after update' '
494 git submodule status >list &&
495 grep "^ $rev1" list
498 test_expect_success 'checkout superproject with subproject already present' '
499 git checkout initial &&
500 git checkout master
503 test_expect_success 'apply submodule diff' '
504 >empty &&
506 git branch second &&
508 cd init &&
509 echo s >s &&
510 git add s &&
511 git commit -m "change subproject"
512 ) &&
513 git update-index --add init &&
514 git commit -m "change init" &&
515 git format-patch -1 --stdout >P.diff &&
516 git checkout second &&
517 git apply --index P.diff &&
519 git diff --cached master >staged &&
520 test_cmp empty staged
523 test_expect_success 'update --init' '
524 mv init init2 &&
525 git config -f .gitmodules submodule.example.url "$(pwd)/init2" &&
526 git config --remove-section submodule.example &&
527 test_must_fail git config submodule.example.url &&
529 git submodule update init 2> update.out &&
530 cat update.out &&
531 test_i18ngrep "not initialized" update.out &&
532 test_must_fail git rev-parse --resolve-git-dir init/.git &&
534 git submodule update --init init &&
535 git rev-parse --resolve-git-dir init/.git
538 test_expect_success 'update --init from subdirectory' '
539 mv init init2 &&
540 git config -f .gitmodules submodule.example.url "$(pwd)/init2" &&
541 git config --remove-section submodule.example &&
542 test_must_fail git config submodule.example.url &&
544 mkdir -p sub &&
546 cd sub &&
547 git submodule update ../init 2>update.out &&
548 cat update.out &&
549 test_i18ngrep "not initialized" update.out &&
550 test_must_fail git rev-parse --resolve-git-dir ../init/.git &&
552 git submodule update --init ../init
553 ) &&
554 git rev-parse --resolve-git-dir init/.git
557 test_expect_success 'do not add files from a submodule' '
559 git reset --hard &&
560 test_must_fail git add init/a
564 test_expect_success 'gracefully add/reset submodule with a trailing slash' '
566 git reset --hard &&
567 git commit -m "commit subproject" init &&
568 (cd init &&
569 echo b > a) &&
570 git add init/ &&
571 git diff --exit-code --cached init &&
572 commit=$(cd init &&
573 git commit -m update a >/dev/null &&
574 git rev-parse HEAD) &&
575 git add init/ &&
576 test_must_fail git diff --exit-code --cached init &&
577 test $commit = $(git ls-files --stage |
578 sed -n "s/^160000 \([^ ]*\).*/\1/p") &&
579 git reset init/ &&
580 git diff --exit-code --cached init
584 test_expect_success 'ls-files gracefully handles trailing slash' '
586 test "init" = "$(git ls-files init/)"
590 test_expect_success 'moving to a commit without submodule does not leave empty dir' '
591 rm -rf init &&
592 mkdir init &&
593 git reset --hard &&
594 git checkout initial &&
595 test ! -d init &&
596 git checkout second
599 test_expect_success 'submodule <invalid-subcommand> fails' '
600 test_must_fail git submodule no-such-subcommand
603 test_expect_success 'add submodules without specifying an explicit path' '
604 mkdir repo &&
606 cd repo &&
607 git init &&
608 echo r >r &&
609 git add r &&
610 git commit -m "repo commit 1"
611 ) &&
612 git clone --bare repo/ bare.git &&
614 cd addtest &&
615 git submodule add "$submodurl/repo" &&
616 git config -f .gitmodules submodule.repo.path repo &&
617 git submodule add "$submodurl/bare.git" &&
618 git config -f .gitmodules submodule.bare.path bare
622 test_expect_success 'add should fail when path is used by a file' '
624 cd addtest &&
625 touch file &&
626 test_must_fail git submodule add "$submodurl/repo" file
630 test_expect_success 'add should fail when path is used by an existing directory' '
632 cd addtest &&
633 mkdir empty-dir &&
634 test_must_fail git submodule add "$submodurl/repo" empty-dir
638 test_expect_success 'use superproject as upstream when path is relative and no url is set there' '
640 cd addtest &&
641 git submodule add ../repo relative &&
642 test "$(git config -f .gitmodules submodule.relative.url)" = ../repo &&
643 git submodule sync relative &&
644 test "$(git config submodule.relative.url)" = "$submodurl/repo"
648 test_expect_success 'set up for relative path tests' '
649 mkdir reltest &&
651 cd reltest &&
652 git init &&
653 mkdir sub &&
655 cd sub &&
656 git init &&
657 test_commit foo
658 ) &&
659 git add sub &&
660 git config -f .gitmodules submodule.sub.path sub &&
661 git config -f .gitmodules submodule.sub.url ../subrepo &&
662 cp .git/config pristine-.git-config &&
663 cp .gitmodules pristine-.gitmodules
667 test_expect_success '../subrepo works with URL - ssh://hostname/repo' '
669 cd reltest &&
670 cp pristine-.git-config .git/config &&
671 cp pristine-.gitmodules .gitmodules &&
672 git config remote.origin.url ssh://hostname/repo &&
673 git submodule init &&
674 test "$(git config submodule.sub.url)" = ssh://hostname/subrepo
678 test_expect_success '../subrepo works with port-qualified URL - ssh://hostname:22/repo' '
680 cd reltest &&
681 cp pristine-.git-config .git/config &&
682 cp pristine-.gitmodules .gitmodules &&
683 git config remote.origin.url ssh://hostname:22/repo &&
684 git submodule init &&
685 test "$(git config submodule.sub.url)" = ssh://hostname:22/subrepo
689 # About the choice of the path in the next test:
690 # - double-slash side-steps path mangling issues on Windows
691 # - it is still an absolute local path
692 # - there cannot be a server with a blank in its name just in case the
693 # path is used erroneously to access a //server/share style path
694 test_expect_success '../subrepo path works with local path - //somewhere else/repo' '
696 cd reltest &&
697 cp pristine-.git-config .git/config &&
698 cp pristine-.gitmodules .gitmodules &&
699 git config remote.origin.url "//somewhere else/repo" &&
700 git submodule init &&
701 test "$(git config submodule.sub.url)" = "//somewhere else/subrepo"
705 test_expect_success '../subrepo works with file URL - file:///tmp/repo' '
707 cd reltest &&
708 cp pristine-.git-config .git/config &&
709 cp pristine-.gitmodules .gitmodules &&
710 git config remote.origin.url file:///tmp/repo &&
711 git submodule init &&
712 test "$(git config submodule.sub.url)" = file:///tmp/subrepo
716 test_expect_success '../subrepo works with helper URL- helper:://hostname/repo' '
718 cd reltest &&
719 cp pristine-.git-config .git/config &&
720 cp pristine-.gitmodules .gitmodules &&
721 git config remote.origin.url helper:://hostname/repo &&
722 git submodule init &&
723 test "$(git config submodule.sub.url)" = helper:://hostname/subrepo
727 test_expect_success '../subrepo works with scp-style URL - user@host:repo' '
729 cd reltest &&
730 cp pristine-.git-config .git/config &&
731 git config remote.origin.url user@host:repo &&
732 git submodule init &&
733 test "$(git config submodule.sub.url)" = user@host:subrepo
737 test_expect_success '../subrepo works with scp-style URL - user@host:path/to/repo' '
739 cd reltest &&
740 cp pristine-.git-config .git/config &&
741 cp pristine-.gitmodules .gitmodules &&
742 git config remote.origin.url user@host:path/to/repo &&
743 git submodule init &&
744 test "$(git config submodule.sub.url)" = user@host:path/to/subrepo
748 test_expect_success '../subrepo works with relative local path - foo' '
750 cd reltest &&
751 cp pristine-.git-config .git/config &&
752 cp pristine-.gitmodules .gitmodules &&
753 git config remote.origin.url foo &&
754 # actual: fails with an error
755 git submodule init &&
756 test "$(git config submodule.sub.url)" = subrepo
760 test_expect_success '../subrepo works with relative local path - foo/bar' '
762 cd reltest &&
763 cp pristine-.git-config .git/config &&
764 cp pristine-.gitmodules .gitmodules &&
765 git config remote.origin.url foo/bar &&
766 git submodule init &&
767 test "$(git config submodule.sub.url)" = foo/subrepo
771 test_expect_success '../subrepo works with relative local path - ./foo' '
773 cd reltest &&
774 cp pristine-.git-config .git/config &&
775 cp pristine-.gitmodules .gitmodules &&
776 git config remote.origin.url ./foo &&
777 git submodule init &&
778 test "$(git config submodule.sub.url)" = subrepo
782 test_expect_success '../subrepo works with relative local path - ./foo/bar' '
784 cd reltest &&
785 cp pristine-.git-config .git/config &&
786 cp pristine-.gitmodules .gitmodules &&
787 git config remote.origin.url ./foo/bar &&
788 git submodule init &&
789 test "$(git config submodule.sub.url)" = foo/subrepo
793 test_expect_success '../subrepo works with relative local path - ../foo' '
795 cd reltest &&
796 cp pristine-.git-config .git/config &&
797 cp pristine-.gitmodules .gitmodules &&
798 git config remote.origin.url ../foo &&
799 git submodule init &&
800 test "$(git config submodule.sub.url)" = ../subrepo
804 test_expect_success '../subrepo works with relative local path - ../foo/bar' '
806 cd reltest &&
807 cp pristine-.git-config .git/config &&
808 cp pristine-.gitmodules .gitmodules &&
809 git config remote.origin.url ../foo/bar &&
810 git submodule init &&
811 test "$(git config submodule.sub.url)" = ../foo/subrepo
815 test_expect_success '../bar/a/b/c works with relative local path - ../foo/bar.git' '
817 cd reltest &&
818 cp pristine-.git-config .git/config &&
819 cp pristine-.gitmodules .gitmodules &&
820 mkdir -p a/b/c &&
821 (cd a/b/c; git init) &&
822 git config remote.origin.url ../foo/bar.git &&
823 git submodule add ../bar/a/b/c ./a/b/c &&
824 git submodule init &&
825 test "$(git config submodule.a/b/c.url)" = ../foo/bar/a/b/c
829 test_expect_success 'moving the superproject does not break submodules' '
831 cd addtest &&
832 git submodule status >expect
833 ) &&
834 mv addtest addtest2 &&
836 cd addtest2 &&
837 git submodule status >actual &&
838 test_cmp expect actual
842 test_expect_success 'submodule add --name allows to replace a submodule with another at the same path' '
844 cd addtest2 &&
846 cd repo &&
847 echo "$submodurl/repo" >expect &&
848 git config remote.origin.url >actual &&
849 test_cmp expect actual &&
850 echo "gitdir: ../.git/modules/repo" >expect &&
851 test_cmp expect .git
852 ) &&
853 rm -rf repo &&
854 git rm repo &&
855 git submodule add -q --name repo_new "$submodurl/bare.git" repo >actual &&
856 test_must_be_empty actual &&
857 echo "gitdir: ../.git/modules/submod" >expect &&
858 test_cmp expect submod/.git &&
860 cd repo &&
861 echo "$submodurl/bare.git" >expect &&
862 git config remote.origin.url >actual &&
863 test_cmp expect actual &&
864 echo "gitdir: ../.git/modules/repo_new" >expect &&
865 test_cmp expect .git
866 ) &&
867 echo "repo" >expect &&
868 test_must_fail git config -f .gitmodules submodule.repo.path &&
869 git config -f .gitmodules submodule.repo_new.path >actual &&
870 test_cmp expect actual&&
871 echo "$submodurl/repo" >expect &&
872 test_must_fail git config -f .gitmodules submodule.repo.url &&
873 echo "$submodurl/bare.git" >expect &&
874 git config -f .gitmodules submodule.repo_new.url >actual &&
875 test_cmp expect actual &&
876 echo "$submodurl/repo" >expect &&
877 git config submodule.repo.url >actual &&
878 test_cmp expect actual &&
879 echo "$submodurl/bare.git" >expect &&
880 git config submodule.repo_new.url >actual &&
881 test_cmp expect actual
885 test_expect_success 'recursive relative submodules stay relative' '
886 test_when_finished "rm -rf super clone2 subsub sub3" &&
887 mkdir subsub &&
889 cd subsub &&
890 git init &&
891 >t &&
892 git add t &&
893 git commit -m "initial commit"
894 ) &&
895 mkdir sub3 &&
897 cd sub3 &&
898 git init &&
899 >t &&
900 git add t &&
901 git commit -m "initial commit" &&
902 git submodule add ../subsub dirdir/subsub &&
903 git commit -m "add submodule subsub"
904 ) &&
905 mkdir super &&
907 cd super &&
908 git init &&
909 >t &&
910 git add t &&
911 git commit -m "initial commit" &&
912 git submodule add ../sub3 &&
913 git commit -m "add submodule sub"
914 ) &&
915 git clone super clone2 &&
917 cd clone2 &&
918 git submodule update --init --recursive &&
919 echo "gitdir: ../.git/modules/sub3" >./sub3/.git_expect &&
920 echo "gitdir: ../../../.git/modules/sub3/modules/dirdir/subsub" >./sub3/dirdir/subsub/.git_expect
921 ) &&
922 test_cmp clone2/sub3/.git_expect clone2/sub3/.git &&
923 test_cmp clone2/sub3/dirdir/subsub/.git_expect clone2/sub3/dirdir/subsub/.git
926 test_expect_success 'submodule add with an existing name fails unless forced' '
928 cd addtest2 &&
929 rm -rf repo &&
930 git rm repo &&
931 test_must_fail git submodule add -q --name repo_new "$submodurl/repo.git" repo &&
932 test ! -d repo &&
933 test_must_fail git config -f .gitmodules submodule.repo_new.path &&
934 test_must_fail git config -f .gitmodules submodule.repo_new.url &&
935 echo "$submodurl/bare.git" >expect &&
936 git config submodule.repo_new.url >actual &&
937 test_cmp expect actual &&
938 git submodule add -f -q --name repo_new "$submodurl/repo.git" repo &&
939 test -d repo &&
940 echo "repo" >expect &&
941 git config -f .gitmodules submodule.repo_new.path >actual &&
942 test_cmp expect actual&&
943 echo "$submodurl/repo.git" >expect &&
944 git config -f .gitmodules submodule.repo_new.url >actual &&
945 test_cmp expect actual &&
946 echo "$submodurl/repo.git" >expect &&
947 git config submodule.repo_new.url >actual &&
948 test_cmp expect actual
952 test_expect_success 'set up a second submodule' '
953 git submodule add ./init2 example2 &&
954 git commit -m "submodule example2 added"
957 test_expect_success 'submodule deinit works on repository without submodules' '
958 test_when_finished "rm -rf newdirectory" &&
959 mkdir newdirectory &&
961 cd newdirectory &&
962 git init &&
963 >file &&
964 git add file &&
965 git commit -m "repo should not be empty" &&
966 git submodule deinit . &&
967 git submodule deinit --all
971 test_expect_success 'submodule deinit should remove the whole submodule section from .git/config' '
972 git config submodule.example.foo bar &&
973 git config submodule.example2.frotz nitfol &&
974 git submodule deinit init &&
975 test -z "$(git config --get-regexp "submodule\.example\.")" &&
976 test -n "$(git config --get-regexp "submodule\.example2\.")" &&
977 test -f example2/.git &&
978 rmdir init
981 test_expect_success 'submodule deinit from subdirectory' '
982 git submodule update --init &&
983 git config submodule.example.foo bar &&
984 mkdir -p sub &&
986 cd sub &&
987 git submodule deinit ../init >../output
988 ) &&
989 test_i18ngrep "\\.\\./init" output &&
990 test -z "$(git config --get-regexp "submodule\.example\.")" &&
991 test -n "$(git config --get-regexp "submodule\.example2\.")" &&
992 test -f example2/.git &&
993 rmdir init
996 test_expect_success 'submodule deinit . deinits all initialized submodules' '
997 git submodule update --init &&
998 git config submodule.example.foo bar &&
999 git config submodule.example2.frotz nitfol &&
1000 test_must_fail git submodule deinit &&
1001 git submodule deinit . >actual &&
1002 test -z "$(git config --get-regexp "submodule\.example\.")" &&
1003 test -z "$(git config --get-regexp "submodule\.example2\.")" &&
1004 test_i18ngrep "Cleared directory .init" actual &&
1005 test_i18ngrep "Cleared directory .example2" actual &&
1006 rmdir init example2
1009 test_expect_success 'submodule deinit --all deinits all initialized submodules' '
1010 git submodule update --init &&
1011 git config submodule.example.foo bar &&
1012 git config submodule.example2.frotz nitfol &&
1013 test_must_fail git submodule deinit &&
1014 git submodule deinit --all >actual &&
1015 test -z "$(git config --get-regexp "submodule\.example\.")" &&
1016 test -z "$(git config --get-regexp "submodule\.example2\.")" &&
1017 test_i18ngrep "Cleared directory .init" actual &&
1018 test_i18ngrep "Cleared directory .example2" actual &&
1019 rmdir init example2
1022 test_expect_success 'submodule deinit deinits a submodule when its work tree is missing or empty' '
1023 git submodule update --init &&
1024 rm -rf init example2/* example2/.git &&
1025 git submodule deinit init example2 >actual &&
1026 test -z "$(git config --get-regexp "submodule\.example\.")" &&
1027 test -z "$(git config --get-regexp "submodule\.example2\.")" &&
1028 test_i18ngrep ! "Cleared directory .init" actual &&
1029 test_i18ngrep "Cleared directory .example2" actual &&
1030 rmdir init
1033 test_expect_success 'submodule deinit fails when the submodule contains modifications unless forced' '
1034 git submodule update --init &&
1035 echo X >>init/s &&
1036 test_must_fail git submodule deinit init &&
1037 test -n "$(git config --get-regexp "submodule\.example\.")" &&
1038 test -f example2/.git &&
1039 git submodule deinit -f init >actual &&
1040 test -z "$(git config --get-regexp "submodule\.example\.")" &&
1041 test_i18ngrep "Cleared directory .init" actual &&
1042 rmdir init
1045 test_expect_success 'submodule deinit fails when the submodule contains untracked files unless forced' '
1046 git submodule update --init &&
1047 echo X >>init/untracked &&
1048 test_must_fail git submodule deinit init &&
1049 test -n "$(git config --get-regexp "submodule\.example\.")" &&
1050 test -f example2/.git &&
1051 git submodule deinit -f init >actual &&
1052 test -z "$(git config --get-regexp "submodule\.example\.")" &&
1053 test_i18ngrep "Cleared directory .init" actual &&
1054 rmdir init
1057 test_expect_success 'submodule deinit fails when the submodule HEAD does not match unless forced' '
1058 git submodule update --init &&
1060 cd init &&
1061 git checkout HEAD^
1062 ) &&
1063 test_must_fail git submodule deinit init &&
1064 test -n "$(git config --get-regexp "submodule\.example\.")" &&
1065 test -f example2/.git &&
1066 git submodule deinit -f init >actual &&
1067 test -z "$(git config --get-regexp "submodule\.example\.")" &&
1068 test_i18ngrep "Cleared directory .init" actual &&
1069 rmdir init
1072 test_expect_success 'submodule deinit is silent when used on an uninitialized submodule' '
1073 git submodule update --init &&
1074 git submodule deinit init >actual &&
1075 test_i18ngrep "Submodule .example. (.*) unregistered for path .init" actual &&
1076 test_i18ngrep "Cleared directory .init" actual &&
1077 git submodule deinit init >actual &&
1078 test_i18ngrep ! "Submodule .example. (.*) unregistered for path .init" actual &&
1079 test_i18ngrep "Cleared directory .init" actual &&
1080 git submodule deinit . >actual &&
1081 test_i18ngrep ! "Submodule .example. (.*) unregistered for path .init" actual &&
1082 test_i18ngrep "Submodule .example2. (.*) unregistered for path .example2" actual &&
1083 test_i18ngrep "Cleared directory .init" actual &&
1084 git submodule deinit . >actual &&
1085 test_i18ngrep ! "Submodule .example. (.*) unregistered for path .init" actual &&
1086 test_i18ngrep ! "Submodule .example2. (.*) unregistered for path .example2" actual &&
1087 test_i18ngrep "Cleared directory .init" actual &&
1088 git submodule deinit --all >actual &&
1089 test_i18ngrep ! "Submodule .example. (.*) unregistered for path .init" actual &&
1090 test_i18ngrep ! "Submodule .example2. (.*) unregistered for path .example2" actual &&
1091 test_i18ngrep "Cleared directory .init" actual &&
1092 rmdir init example2
1095 test_expect_success 'submodule deinit fails when submodule has a .git directory even when forced' '
1096 git submodule update --init &&
1098 cd init &&
1099 rm .git &&
1100 cp -R ../.git/modules/example .git &&
1101 GIT_WORK_TREE=. git config --unset core.worktree
1102 ) &&
1103 test_must_fail git submodule deinit init &&
1104 test_must_fail git submodule deinit -f init &&
1105 test -d init/.git &&
1106 test -n "$(git config --get-regexp "submodule\.example\.")"
1109 test_expect_success 'submodule with UTF-8 name' '
1110 svname=$(printf "\303\245 \303\244\303\266") &&
1111 mkdir "$svname" &&
1113 cd "$svname" &&
1114 git init &&
1115 >sub &&
1116 git add sub &&
1117 git commit -m "init sub"
1118 ) &&
1119 git submodule add ./"$svname" &&
1120 git submodule >&2 &&
1121 test -n "$(git submodule | grep "$svname")"
1124 test_expect_success 'submodule add clone shallow submodule' '
1125 mkdir super &&
1126 pwd=$(pwd) &&
1128 cd super &&
1129 git init &&
1130 git submodule add --depth=1 file://"$pwd"/example2 submodule &&
1132 cd submodule &&
1133 test 1 = $(git log --oneline | wc -l)
1138 test_expect_success 'submodule helper list is not confused by common prefixes' '
1139 mkdir -p dir1/b &&
1141 cd dir1/b &&
1142 git init &&
1143 echo hi >testfile2 &&
1144 git add . &&
1145 git commit -m "test1"
1146 ) &&
1147 mkdir -p dir2/b &&
1149 cd dir2/b &&
1150 git init &&
1151 echo hello >testfile1 &&
1152 git add . &&
1153 git commit -m "test2"
1154 ) &&
1155 git submodule add /dir1/b dir1/b &&
1156 git submodule add /dir2/b dir2/b &&
1157 git commit -m "first submodule commit" &&
1158 git submodule--helper list dir1/b |cut -c51- >actual &&
1159 echo "dir1/b" >expect &&
1160 test_cmp expect actual
1163 test_expect_success 'setup superproject with submodules' '
1164 git init sub1 &&
1165 test_commit -C sub1 test &&
1166 test_commit -C sub1 test2 &&
1167 git init multisuper &&
1168 git -C multisuper submodule add ../sub1 sub0 &&
1169 git -C multisuper submodule add ../sub1 sub1 &&
1170 git -C multisuper submodule add ../sub1 sub2 &&
1171 git -C multisuper submodule add ../sub1 sub3 &&
1172 git -C multisuper commit -m "add some submodules"
1175 cat >expect <<-EOF
1176 -sub0
1177 sub1 (test2)
1178 sub2 (test2)
1179 sub3 (test2)
1182 test_expect_success 'submodule update --init with a specification' '
1183 test_when_finished "rm -rf multisuper_clone" &&
1184 pwd=$(pwd) &&
1185 git clone file://"$pwd"/multisuper multisuper_clone &&
1186 git -C multisuper_clone submodule update --init . ":(exclude)sub0" &&
1187 git -C multisuper_clone submodule status |cut -c 1,43- >actual &&
1188 test_cmp expect actual
1191 test_expect_success 'submodule update --init with submodule.active set' '
1192 test_when_finished "rm -rf multisuper_clone" &&
1193 pwd=$(pwd) &&
1194 git clone file://"$pwd"/multisuper multisuper_clone &&
1195 git -C multisuper_clone config submodule.active "." &&
1196 git -C multisuper_clone config --add submodule.active ":(exclude)sub0" &&
1197 git -C multisuper_clone submodule update --init &&
1198 git -C multisuper_clone submodule status |cut -c 1,43- >actual &&
1199 test_cmp expect actual
1202 test_expect_success 'submodule update and setting submodule.<name>.active' '
1203 test_when_finished "rm -rf multisuper_clone" &&
1204 pwd=$(pwd) &&
1205 git clone file://"$pwd"/multisuper multisuper_clone &&
1206 git -C multisuper_clone config --bool submodule.sub0.active "true" &&
1207 git -C multisuper_clone config --bool submodule.sub1.active "false" &&
1208 git -C multisuper_clone config --bool submodule.sub2.active "true" &&
1210 cat >expect <<-\EOF &&
1211 sub0 (test2)
1212 -sub1
1213 sub2 (test2)
1214 -sub3
1216 git -C multisuper_clone submodule update &&
1217 git -C multisuper_clone submodule status |cut -c 1,43- >actual &&
1218 test_cmp expect actual
1221 test_expect_success 'clone --recurse-submodules with a pathspec works' '
1222 test_when_finished "rm -rf multisuper_clone" &&
1223 cat >expected <<-\EOF &&
1224 sub0 (test2)
1225 -sub1
1226 -sub2
1227 -sub3
1230 git clone --recurse-submodules="sub0" multisuper multisuper_clone &&
1231 git -C multisuper_clone submodule status |cut -c1,43- >actual &&
1232 test_cmp expected actual
1235 test_expect_success 'clone with multiple --recurse-submodules options' '
1236 test_when_finished "rm -rf multisuper_clone" &&
1237 cat >expect <<-\EOF &&
1238 -sub0
1239 sub1 (test2)
1240 -sub2
1241 sub3 (test2)
1244 git clone --recurse-submodules="." \
1245 --recurse-submodules=":(exclude)sub0" \
1246 --recurse-submodules=":(exclude)sub2" \
1247 multisuper multisuper_clone &&
1248 git -C multisuper_clone submodule status |cut -c1,43- >actual &&
1249 test_cmp expect actual
1252 test_expect_success 'clone and subsequent updates correctly auto-initialize submodules' '
1253 test_when_finished "rm -rf multisuper_clone" &&
1254 cat <<-\EOF >expect &&
1255 -sub0
1256 sub1 (test2)
1257 -sub2
1258 sub3 (test2)
1261 cat <<-\EOF >expect2 &&
1262 -sub0
1263 sub1 (test2)
1264 -sub2
1265 sub3 (test2)
1266 -sub4
1267 sub5 (test2)
1270 git clone --recurse-submodules="." \
1271 --recurse-submodules=":(exclude)sub0" \
1272 --recurse-submodules=":(exclude)sub2" \
1273 --recurse-submodules=":(exclude)sub4" \
1274 multisuper multisuper_clone &&
1276 git -C multisuper_clone submodule status |cut -c1,43- >actual &&
1277 test_cmp expect actual &&
1279 git -C multisuper submodule add ../sub1 sub4 &&
1280 git -C multisuper submodule add ../sub1 sub5 &&
1281 git -C multisuper commit -m "add more submodules" &&
1282 # obtain the new superproject
1283 git -C multisuper_clone pull &&
1284 git -C multisuper_clone submodule update --init &&
1285 git -C multisuper_clone submodule status |cut -c1,43- >actual &&
1286 test_cmp expect2 actual
1289 test_expect_success 'init properly sets the config' '
1290 test_when_finished "rm -rf multisuper_clone" &&
1291 git clone --recurse-submodules="." \
1292 --recurse-submodules=":(exclude)sub0" \
1293 multisuper multisuper_clone &&
1295 git -C multisuper_clone submodule init -- sub0 sub1 &&
1296 git -C multisuper_clone config --get submodule.sub0.active &&
1297 test_must_fail git -C multisuper_clone config --get submodule.sub1.active
1300 test_expect_success 'recursive clone respects -q' '
1301 test_when_finished "rm -rf multisuper_clone" &&
1302 git clone -q --recurse-submodules multisuper multisuper_clone >actual &&
1303 test_must_be_empty actual
1306 test_done