1 # Create a submodule layout used for all tests below.
3 # The following use cases are covered:
4 # - New submodule (no_submodule => add_sub1)
5 # - Removed submodule (add_sub1 => remove_sub1)
6 # - Updated submodule (add_sub1 => modify_sub1)
7 # - Updated submodule recursively (add_nested_sub => modify_sub1_recursively)
8 # - Submodule updated to invalid commit (add_sub1 => invalid_sub1)
9 # - Submodule updated from invalid commit (invalid_sub1 => valid_sub1)
10 # - Submodule replaced by tracked files in directory (add_sub1 =>
11 # replace_sub1_with_directory)
12 # - Directory containing tracked files replaced by submodule
13 # (replace_sub1_with_directory => replace_directory_with_sub1)
14 # - Submodule replaced by tracked file with the same name (add_sub1 =>
15 # replace_sub1_with_file)
16 # - Tracked file replaced by submodule (replace_sub1_with_file =>
17 # replace_file_with_sub1)
23 # add_sub1 /-------O---------O--------O modify_sub1_recursively
24 # | / ^ add_nested_sub
27 # O------O-----------O---------O
28 # ^ \ ^ replace_directory_with_sub1
29 # | \ replace_sub1_with_directory
32 # \ ^ replace_file_with_sub1
33 # \ replace_sub1_with_file
40 create_lib_submodule_repo
() {
41 git init submodule_update_sub1
&&
43 cd submodule_update_sub1
&&
44 echo "expect" >>.gitignore
&&
45 echo "actual" >>.gitignore
&&
48 git add .gitignore file1 file2
&&
49 git commit
-m "Base inside first submodule" &&
50 git branch
"no_submodule"
52 git init submodule_update_sub2
&&
54 cd submodule_update_sub2
55 echo "expect" >>.gitignore
&&
56 echo "actual" >>.gitignore
&&
59 git add .gitignore file1 file2
&&
60 git commit
-m "nested submodule base" &&
61 git branch
"no_submodule"
63 git init submodule_update_repo
&&
65 cd submodule_update_repo
&&
66 echo "expect" >>.gitignore
&&
67 echo "actual" >>.gitignore
&&
70 git add .gitignore file1 file2
&&
71 git commit
-m "Base" &&
72 git branch
"no_submodule" &&
74 git checkout
-b "add_sub1" &&
75 git submodule add ..
/submodule_update_sub1 sub1
&&
76 git config
-f .gitmodules submodule.sub1.ignore all
&&
77 git config submodule.sub1.ignore all
&&
78 git add .gitmodules
&&
79 git commit
-m "Add sub1" &&
81 git checkout
-b remove_sub1 add_sub1
&&
84 git checkout
-b modify_sub1 add_sub1
&&
85 git submodule update
&&
89 git checkout
-b "modifications" &&
92 git add file2 file3
&&
93 git commit
-m "modified file2 and added file3" &&
94 git push origin modifications
97 git commit
-m "Modify sub1" &&
99 git checkout
-b add_nested_sub modify_sub1
&&
100 git
-C sub1 checkout
-b "add_nested_sub" &&
101 git
-C sub1 submodule add
--branch no_submodule ..
/submodule_update_sub2 sub2
&&
102 git
-C sub1 commit
-a -m "add a nested submodule" &&
104 git commit
-a -m "update submodule, that updates a nested submodule" &&
105 git checkout
-b modify_sub1_recursively
&&
106 git
-C sub1 checkout
-b modify_sub1_recursively
&&
107 git
-C sub
1/sub2 checkout
-b modify_sub1_recursively
&&
108 echo change
>sub
1/sub
2/file3
&&
109 git
-C sub
1/sub2 add file3
&&
110 git
-C sub
1/sub2 commit
-m "make a change in nested sub" &&
111 git
-C sub1 add sub2
&&
112 git
-C sub1 commit
-m "update nested sub" &&
114 git commit
-m "update sub1, that updates nested sub" &&
115 git
-C sub1 push origin modify_sub1_recursively
&&
116 git
-C sub
1/sub2 push origin modify_sub1_recursively
&&
117 git
-C sub1 submodule deinit
-f --all &&
119 git checkout
-b replace_sub1_with_directory add_sub1
&&
120 git submodule update
&&
121 git
-C sub1 checkout modifications
&&
122 git
rm --cached sub1
&&
124 git config
-f .gitmodules
--remove-section "submodule.sub1" &&
125 git add .gitmodules sub
1/* &&
126 git commit
-m "Replace sub1 with directory" &&
128 git checkout
-b replace_directory_with_sub1
&&
131 git checkout
-b replace_sub1_with_file add_sub1
&&
133 echo "content" >sub1
&&
135 git commit
-m "Replace sub1 with file" &&
137 git checkout
-b replace_file_with_sub1
&&
140 git checkout
-b invalid_sub1 add_sub1
&&
141 git update-index
--cacheinfo 160000 0123456789012345678901234567890123456789 sub1
&&
142 git commit
-m "Invalid sub1 commit" &&
143 git checkout
-b valid_sub1
&&
150 # Helper function to replace gitfile with .git directory
151 replace_gitfile_with_git_dir
() {
154 git_dir
="$(git rev-parse --git-dir)" &&
156 cp -R "$git_dir" .git
&&
157 GIT_WORK_TREE
=. git config
--unset core.worktree
161 # Test that the .git directory in the submodule is unchanged (except for the
162 # core.worktree setting, which appears only in $GIT_DIR/modules/$1/config).
163 # Call this function before test_submodule_content as the latter might
164 # write the index file leading to false positive index differences.
166 # Note that this only supports submodules at the root level of the
167 # superproject, with the default name, i.e. same as its path.
168 test_git_directory_is_unchanged
() {
170 cd ".git/modules/$1" &&
171 # does core.worktree point at the right place?
172 test "$(git config core.worktree)" = "../../../$1" &&
173 # remove it temporarily before comparing, as
174 # "$1/.git/config" lacks it...
175 git config
--unset core.worktree
177 diff -r ".git/modules/$1" "$1/.git" &&
179 # ... and then restore.
180 cd ".git/modules/$1" &&
181 git config core.worktree
"../../../$1"
185 test_git_directory_exists
() {
186 test -e ".git/modules/$1" &&
189 # does core.worktree point at the right place?
190 test "$(git -C .git/modules/$1 config core.worktree)" = "../../../$1"
194 # Helper function to be executed at the start of every test below, it sets up
195 # the submodule repo if it doesn't exist and configures the most problematic
196 # settings for diff.ignoreSubmodules.
198 (test -d submodule_update_repo || create_lib_submodule_repo
) &&
199 test_config_global
diff.ignoreSubmodules all
&&
200 test_config
diff.ignoreSubmodules all
203 # Helper function to bring work tree back into the state given by the
204 # commit. This includes trying to populate sub1 accordingly if it exists and
205 # should be updated to an existing commit.
206 reset_work_tree_to
() {
207 rm -rf submodule_update
&&
208 git clone submodule_update_repo submodule_update
&&
210 cd submodule_update
&&
212 git checkout
-f "$1" &&
213 git status
-u -s >actual
&&
214 test_must_be_empty actual
&&
215 hash=$
(git rev-parse
--revs-only HEAD
:sub1
) &&
216 if test -n "$hash" &&
217 test $
(cd "../submodule_update_sub1" && git rev-parse
--verify "$hash^{commit}")
219 git submodule update
--init --recursive "sub1"
224 reset_work_tree_to_interested
() {
225 reset_work_tree_to
$1 &&
226 # make the submodule git dirs available
227 if ! test -d submodule_update
/.git
/modules
/sub1
229 mkdir
-p submodule_update
/.git
/modules
&&
230 cp -r submodule_update_repo
/.git
/modules
/sub1 submodule_update
/.git
/modules
/sub1
231 GIT_WORK_TREE
=. git
-C submodule_update
/.git
/modules
/sub1 config
--unset core.worktree
233 if ! test -d submodule_update
/.git
/modules
/sub
1/modules
/sub2
235 mkdir
-p submodule_update
/.git
/modules
/sub
1/modules
&&
236 cp -r submodule_update_repo
/.git
/modules
/sub
1/modules
/sub2 submodule_update
/.git
/modules
/sub
1/modules
/sub2
237 GIT_WORK_TREE
=. git
-C submodule_update
/.git
/modules
/sub
1/modules
/sub2 config
--unset core.worktree
239 # indicate we are interested in the submodule:
240 git
-C submodule_update config submodule.sub1.url
"bogus" &&
241 # sub1 might not be checked out, so use the git dir
242 git
-C submodule_update
/.git
/modules
/sub1 config submodule.sub2.url
"bogus"
245 # Test that the superproject contains the content according to commit "$1"
246 # (the work tree must match the index for everything but submodules but the
247 # index must exactly match the given commit including any submodule SHA-1s).
248 test_superproject_content
() {
249 git diff-index
--cached "$1" >actual
&&
250 test_must_be_empty actual
&&
251 git diff-files
--ignore-submodules >actual
&&
252 test_must_be_empty actual
255 # Test that the given submodule at path "$1" contains the content according
256 # to the submodule commit recorded in the superproject's commit "$2"
257 test_submodule_content
() {
258 if test x
"$1" = "x-C"
265 echo "test_submodule_content needs two arguments"
270 test -d "$submodule"/ &&
271 if ! test -f "$submodule"/.git
&& ! test -d "$submodule"/.git
273 echo "Submodule $submodule is not populated"
276 sha1
=$
(git rev-parse
--verify "$commit:$submodule") &&
279 echo "Couldn't retrieve SHA-1 of $submodule for $commit"
284 git status
-u -s >actual
&&
285 test_must_be_empty actual
&&
286 git
diff "$sha1" >actual
&&
287 test_must_be_empty actual
291 # Test that the following transitions are correctly handled:
292 # - Updated submodule
294 # - Removed submodule
295 # - Directory containing tracked files replaced by submodule
296 # - Submodule replaced by tracked files in directory
297 # - Submodule replaced by tracked file with the same name
298 # - tracked file replaced by submodule
300 # The default is that submodule contents aren't changed until "git submodule
301 # update" is run. And even then that command doesn't delete the work tree of
302 # a removed submodule.
304 # Removing a submodule containing a .git directory must fail even when forced
305 # to protect the history!
308 # Test that submodule contents are currently not updated when switching
309 # between commits that change a submodule.
310 test_submodule_switch
() {
312 ######################### Appearing submodule #########################
313 # Switching to a commit letting a submodule appear creates empty dir ...
314 if test "$KNOWN_FAILURE_STASH_DOES_IGNORE_SUBMODULE_CHANGES" = 1
316 # Restoring stash fails to restore submodule index entry
321 test_expect_
$RESULT "$command: added submodule creates empty directory" '
323 reset_work_tree_to no_submodule &&
325 cd submodule_update &&
326 git branch -t add_sub1 origin/add_sub1 &&
328 test_superproject_content origin/add_sub1 &&
329 test_dir_is_empty sub1 &&
330 git submodule update --init --recursive &&
331 test_submodule_content sub1 origin/add_sub1
334 # ... and doesn't care if it already exists ...
335 test_expect_
$RESULT "$command: added submodule leaves existing empty directory alone" '
337 reset_work_tree_to no_submodule &&
339 cd submodule_update &&
341 git branch -t add_sub1 origin/add_sub1 &&
343 test_superproject_content origin/add_sub1 &&
344 test_dir_is_empty sub1 &&
345 git submodule update --init --recursive &&
346 test_submodule_content sub1 origin/add_sub1
349 # ... unless there is an untracked file in its place.
350 test_expect_success
"$command: added submodule doesn't remove untracked unignored file with same name" '
352 reset_work_tree_to no_submodule &&
354 cd submodule_update &&
355 git branch -t add_sub1 origin/add_sub1 &&
357 test_must_fail $command add_sub1 &&
358 test_superproject_content origin/no_submodule &&
359 test_must_be_empty sub1
362 # Replacing a tracked file with a submodule produces an empty
364 test_expect_
$RESULT "$command: replace tracked file with submodule creates empty directory" '
366 reset_work_tree_to replace_sub1_with_file &&
368 cd submodule_update &&
369 git branch -t replace_file_with_sub1 origin/replace_file_with_sub1 &&
370 $command replace_file_with_sub1 &&
371 test_superproject_content origin/replace_file_with_sub1 &&
372 test_dir_is_empty sub1 &&
373 git submodule update --init --recursive &&
374 test_submodule_content sub1 origin/replace_file_with_sub1
377 # ... as does removing a directory with tracked files with a
379 if test "$KNOWN_FAILURE_NOFF_MERGE_DOESNT_CREATE_EMPTY_SUBMODULE_DIR" = 1
381 # Non fast-forward merges fail with "Directory sub1 doesn't
382 # exist. sub1" because the empty submodule directory is not
388 test_expect_
$RESULT "$command: replace directory with submodule" '
390 reset_work_tree_to replace_sub1_with_directory &&
392 cd submodule_update &&
393 git branch -t replace_directory_with_sub1 origin/replace_directory_with_sub1 &&
394 $command replace_directory_with_sub1 &&
395 test_superproject_content origin/replace_directory_with_sub1 &&
396 test_dir_is_empty sub1 &&
397 git submodule update --init --recursive &&
398 test_submodule_content sub1 origin/replace_directory_with_sub1
402 ######################## Disappearing submodule #######################
403 # Removing a submodule doesn't remove its work tree ...
404 if test "$KNOWN_FAILURE_STASH_DOES_IGNORE_SUBMODULE_CHANGES" = 1
410 test_expect_
$RESULT "$command: removed submodule leaves submodule directory and its contents in place" '
412 reset_work_tree_to add_sub1 &&
414 cd submodule_update &&
415 git branch -t remove_sub1 origin/remove_sub1 &&
416 $command remove_sub1 &&
417 test_superproject_content origin/remove_sub1 &&
418 test_submodule_content sub1 origin/add_sub1
421 # ... especially when it contains a .git directory.
422 test_expect_
$RESULT "$command: removed submodule leaves submodule containing a .git directory alone" '
424 reset_work_tree_to add_sub1 &&
426 cd submodule_update &&
427 git branch -t remove_sub1 origin/remove_sub1 &&
428 replace_gitfile_with_git_dir sub1 &&
429 $command remove_sub1 &&
430 test_superproject_content origin/remove_sub1 &&
431 test_git_directory_is_unchanged sub1 &&
432 test_submodule_content sub1 origin/add_sub1
435 # Replacing a submodule with files in a directory must fail as the
436 # submodule work tree isn't removed ...
437 if test "$KNOWN_FAILURE_NOFF_MERGE_ATTEMPTS_TO_MERGE_REMOVED_SUBMODULE_FILES" = 1
439 # Non fast-forward merges attempt to merge the former
440 # submodule files with the newly checked out ones in the
441 # directory of the same name while it shouldn't.
446 test_expect_
$RESULT "$command: replace submodule with a directory must fail" '
448 reset_work_tree_to add_sub1 &&
450 cd submodule_update &&
451 git branch -t replace_sub1_with_directory origin/replace_sub1_with_directory &&
452 test_must_fail $command replace_sub1_with_directory &&
453 test_superproject_content origin/add_sub1 &&
454 test_submodule_content sub1 origin/add_sub1
457 # ... especially when it contains a .git directory.
458 test_expect_
$RESULT "$command: replace submodule containing a .git directory with a directory must fail" '
460 reset_work_tree_to add_sub1 &&
462 cd submodule_update &&
463 git branch -t replace_sub1_with_directory origin/replace_sub1_with_directory &&
464 replace_gitfile_with_git_dir sub1 &&
465 test_must_fail $command replace_sub1_with_directory &&
466 test_superproject_content origin/add_sub1 &&
467 test_git_directory_is_unchanged sub1 &&
468 test_submodule_content sub1 origin/add_sub1
471 # Replacing it with a file must fail as it could throw away any local
472 # work tree changes ...
473 test_expect_failure
"$command: replace submodule with a file must fail" '
475 reset_work_tree_to add_sub1 &&
477 cd submodule_update &&
478 git branch -t replace_sub1_with_file origin/replace_sub1_with_file &&
479 test_must_fail $command replace_sub1_with_file &&
480 test_superproject_content origin/add_sub1 &&
481 test_submodule_content sub1 origin/add_sub1
484 # ... or even destroy unpushed parts of submodule history if that
485 # still uses a .git directory.
486 test_expect_failure
"$command: replace submodule containing a .git directory with a file must fail" '
488 reset_work_tree_to add_sub1 &&
490 cd submodule_update &&
491 git branch -t replace_sub1_with_file origin/replace_sub1_with_file &&
492 replace_gitfile_with_git_dir sub1 &&
493 test_must_fail $command replace_sub1_with_file &&
494 test_superproject_content origin/add_sub1 &&
495 test_git_directory_is_unchanged sub1 &&
496 test_submodule_content sub1 origin/add_sub1
500 ########################## Modified submodule #########################
501 # Updating a submodule sha1 doesn't update the submodule's work tree
502 if test "$KNOWN_FAILURE_CHERRY_PICK_SEES_EMPTY_COMMIT" = 1
504 # When cherry picking a SHA-1 update for an ignored submodule
505 # the commit incorrectly fails with "The previous cherry-pick
506 # is now empty, possibly due to conflict resolution."
511 test_expect_
$RESULT "$command: modified submodule does not update submodule work tree" '
513 reset_work_tree_to add_sub1 &&
515 cd submodule_update &&
516 git branch -t modify_sub1 origin/modify_sub1 &&
517 $command modify_sub1 &&
518 test_superproject_content origin/modify_sub1 &&
519 test_submodule_content sub1 origin/add_sub1 &&
520 git submodule update &&
521 test_submodule_content sub1 origin/modify_sub1
525 # Updating a submodule to an invalid sha1 doesn't update the
526 # submodule's work tree, subsequent update will fail
527 test_expect_
$RESULT "$command: modified submodule does not update submodule work tree to invalid commit" '
529 reset_work_tree_to add_sub1 &&
531 cd submodule_update &&
532 git branch -t invalid_sub1 origin/invalid_sub1 &&
533 $command invalid_sub1 &&
534 test_superproject_content origin/invalid_sub1 &&
535 test_submodule_content sub1 origin/add_sub1 &&
536 test_must_fail git submodule update &&
537 test_submodule_content sub1 origin/add_sub1
540 # Updating a submodule from an invalid sha1 doesn't update the
541 # submodule's work tree, subsequent update will succeed
542 test_expect_
$RESULT "$command: modified submodule does not update submodule work tree from invalid commit" '
544 reset_work_tree_to invalid_sub1 &&
546 cd submodule_update &&
547 git branch -t valid_sub1 origin/valid_sub1 &&
548 $command valid_sub1 &&
549 test_superproject_content origin/valid_sub1 &&
550 test_dir_is_empty sub1 &&
551 git submodule update --init --recursive &&
552 test_submodule_content sub1 origin/valid_sub1
557 # Test that submodule contents are currently not updated when switching
558 # between commits that change a submodule, but throwing away local changes in
559 # the superproject is allowed.
560 test_submodule_forced_switch
() {
562 ######################### Appearing submodule #########################
563 # Switching to a commit letting a submodule appear creates empty dir ...
564 test_expect_success
"$command: added submodule creates empty directory" '
566 reset_work_tree_to no_submodule &&
568 cd submodule_update &&
569 git branch -t add_sub1 origin/add_sub1 &&
571 test_superproject_content origin/add_sub1 &&
572 test_dir_is_empty sub1 &&
573 git submodule update --init --recursive &&
574 test_submodule_content sub1 origin/add_sub1
577 # ... and doesn't care if it already exists ...
578 test_expect_success
"$command: added submodule leaves existing empty directory alone" '
580 reset_work_tree_to no_submodule &&
582 cd submodule_update &&
583 git branch -t add_sub1 origin/add_sub1 &&
586 test_superproject_content origin/add_sub1 &&
587 test_dir_is_empty sub1 &&
588 git submodule update --init --recursive &&
589 test_submodule_content sub1 origin/add_sub1
592 # ... unless there is an untracked file in its place.
593 test_expect_success
"$command: added submodule does remove untracked unignored file with same name when forced" '
595 reset_work_tree_to no_submodule &&
597 cd submodule_update &&
598 git branch -t add_sub1 origin/add_sub1 &&
601 test_superproject_content origin/add_sub1 &&
602 test_dir_is_empty sub1
605 # Replacing a tracked file with a submodule produces an empty
607 test_expect_success
"$command: replace tracked file with submodule creates empty directory" '
609 reset_work_tree_to replace_sub1_with_file &&
611 cd submodule_update &&
612 git branch -t replace_file_with_sub1 origin/replace_file_with_sub1 &&
613 $command replace_file_with_sub1 &&
614 test_superproject_content origin/replace_file_with_sub1 &&
615 test_dir_is_empty sub1 &&
616 git submodule update --init --recursive &&
617 test_submodule_content sub1 origin/replace_file_with_sub1
620 # ... as does removing a directory with tracked files with a
622 test_expect_success
"$command: replace directory with submodule" '
624 reset_work_tree_to replace_sub1_with_directory &&
626 cd submodule_update &&
627 git branch -t replace_directory_with_sub1 origin/replace_directory_with_sub1 &&
628 $command replace_directory_with_sub1 &&
629 test_superproject_content origin/replace_directory_with_sub1 &&
630 test_dir_is_empty sub1 &&
631 git submodule update --init --recursive &&
632 test_submodule_content sub1 origin/replace_directory_with_sub1
636 ######################## Disappearing submodule #######################
637 # Removing a submodule doesn't remove its work tree ...
638 test_expect_success
"$command: removed submodule leaves submodule directory and its contents in place" '
640 reset_work_tree_to add_sub1 &&
642 cd submodule_update &&
643 git branch -t remove_sub1 origin/remove_sub1 &&
644 $command remove_sub1 &&
645 test_superproject_content origin/remove_sub1 &&
646 test_submodule_content sub1 origin/add_sub1
649 # ... especially when it contains a .git directory.
650 test_expect_success
"$command: removed submodule leaves submodule containing a .git directory alone" '
652 reset_work_tree_to add_sub1 &&
654 cd submodule_update &&
655 git branch -t remove_sub1 origin/remove_sub1 &&
656 replace_gitfile_with_git_dir sub1 &&
657 $command remove_sub1 &&
658 test_superproject_content origin/remove_sub1 &&
659 test_git_directory_is_unchanged sub1 &&
660 test_submodule_content sub1 origin/add_sub1
663 # Replacing a submodule with files in a directory must fail as the
664 # submodule work tree isn't removed ...
665 test_expect_failure
"$command: replace submodule with a directory must fail" '
667 reset_work_tree_to add_sub1 &&
669 cd submodule_update &&
670 git branch -t replace_sub1_with_directory origin/replace_sub1_with_directory &&
671 test_must_fail $command replace_sub1_with_directory &&
672 test_superproject_content origin/add_sub1 &&
673 test_submodule_content sub1 origin/add_sub1
676 # ... especially when it contains a .git directory.
677 test_expect_failure
"$command: replace submodule containing a .git directory with a directory must fail" '
679 reset_work_tree_to add_sub1 &&
681 cd submodule_update &&
682 git branch -t replace_sub1_with_directory origin/replace_sub1_with_directory &&
683 replace_gitfile_with_git_dir sub1 &&
684 test_must_fail $command replace_sub1_with_directory &&
685 test_superproject_content origin/add_sub1 &&
686 test_git_directory_is_unchanged sub1 &&
687 test_submodule_content sub1 origin/add_sub1
690 # Replacing it with a file must fail as it could throw away any local
691 # work tree changes ...
692 test_expect_failure
"$command: replace submodule with a file must fail" '
694 reset_work_tree_to add_sub1 &&
696 cd submodule_update &&
697 git branch -t replace_sub1_with_file origin/replace_sub1_with_file &&
698 test_must_fail $command replace_sub1_with_file &&
699 test_superproject_content origin/add_sub1 &&
700 test_submodule_content sub1 origin/add_sub1
703 # ... or even destroy unpushed parts of submodule history if that
704 # still uses a .git directory.
705 test_expect_failure
"$command: replace submodule containing a .git directory with a file must fail" '
707 reset_work_tree_to add_sub1 &&
709 cd submodule_update &&
710 git branch -t replace_sub1_with_file origin/replace_sub1_with_file &&
711 replace_gitfile_with_git_dir sub1 &&
712 test_must_fail $command replace_sub1_with_file &&
713 test_superproject_content origin/add_sub1 &&
714 test_git_directory_is_unchanged sub1 &&
715 test_submodule_content sub1 origin/add_sub1
719 ########################## Modified submodule #########################
720 # Updating a submodule sha1 doesn't update the submodule's work tree
721 test_expect_success
"$command: modified submodule does not update submodule work tree" '
723 reset_work_tree_to add_sub1 &&
725 cd submodule_update &&
726 git branch -t modify_sub1 origin/modify_sub1 &&
727 $command modify_sub1 &&
728 test_superproject_content origin/modify_sub1 &&
729 test_submodule_content sub1 origin/add_sub1 &&
730 git submodule update &&
731 test_submodule_content sub1 origin/modify_sub1
734 # Updating a submodule to an invalid sha1 doesn't update the
735 # submodule's work tree, subsequent update will fail
736 test_expect_success
"$command: modified submodule does not update submodule work tree to invalid commit" '
738 reset_work_tree_to add_sub1 &&
740 cd submodule_update &&
741 git branch -t invalid_sub1 origin/invalid_sub1 &&
742 $command invalid_sub1 &&
743 test_superproject_content origin/invalid_sub1 &&
744 test_submodule_content sub1 origin/add_sub1 &&
745 test_must_fail git submodule update &&
746 test_submodule_content sub1 origin/add_sub1
749 # Updating a submodule from an invalid sha1 doesn't update the
750 # submodule's work tree, subsequent update will succeed
751 test_expect_success
"$command: modified submodule does not update submodule work tree from invalid commit" '
753 reset_work_tree_to invalid_sub1 &&
755 cd submodule_update &&
756 git branch -t valid_sub1 origin/valid_sub1 &&
757 $command valid_sub1 &&
758 test_superproject_content origin/valid_sub1 &&
759 test_dir_is_empty sub1 &&
760 git submodule update --init --recursive &&
761 test_submodule_content sub1 origin/valid_sub1
766 # Test that submodule contents are correctly updated when switching
767 # between commits that change a submodule.
768 # Test that the following transitions are correctly handled:
769 # (These tests are also above in the case where we expect no change
771 # - Updated submodule
773 # - Removed submodule
774 # - Directory containing tracked files replaced by submodule
775 # - Submodule replaced by tracked files in directory
776 # - Submodule replaced by tracked file with the same name
777 # - tracked file replaced by submodule
780 # - Removing a submodule with a git directory absorbs the submodules
781 # git directory first into the superproject.
783 test_submodule_switch_recursing
() {
786 if test "$KNOWN_FAILURE_DIRECTORY_SUBMODULE_CONFLICTS" = 1
791 if test "$KNOWN_FAILURE_SUBMODULE_OVERWRITE_IGNORED_UNTRACKED" = 1
795 ######################### Appearing submodule #########################
796 # Switching to a commit letting a submodule appear checks it out ...
797 test_expect_success
"$command: added submodule is checked out" '
799 reset_work_tree_to_interested no_submodule &&
801 cd submodule_update &&
802 git branch -t add_sub1 origin/add_sub1 &&
804 test_superproject_content origin/add_sub1 &&
805 test_submodule_content sub1 origin/add_sub1
808 # ... ignoring an empty existing directory ...
809 test_expect_success
"$command: added submodule is checked out in empty dir" '
811 reset_work_tree_to_interested no_submodule &&
813 cd submodule_update &&
815 git branch -t add_sub1 origin/add_sub1 &&
817 test_superproject_content origin/add_sub1 &&
818 test_submodule_content sub1 origin/add_sub1
821 # ... unless there is an untracked file in its place.
822 test_expect_success
"$command: added submodule doesn't remove untracked file with same name" '
824 reset_work_tree_to_interested no_submodule &&
826 cd submodule_update &&
827 git branch -t add_sub1 origin/add_sub1 &&
829 test_must_fail $command add_sub1 &&
830 test_superproject_content origin/no_submodule &&
831 test_must_be_empty sub1
834 # ... but an ignored file is fine.
835 test_expect_
$RESULTOI "$command: added submodule removes an untracked ignored file" '
836 test_when_finished "rm submodule_update/.git/info/exclude" &&
838 reset_work_tree_to_interested no_submodule &&
840 cd submodule_update &&
841 git branch -t add_sub1 origin/add_sub1 &&
843 echo sub1 >.git/info/exclude
845 test_superproject_content origin/add_sub1 &&
846 test_submodule_content sub1 origin/add_sub1
849 # Replacing a tracked file with a submodule produces a checked out submodule
850 test_expect_success
"$command: replace tracked file with submodule checks out submodule" '
852 reset_work_tree_to_interested replace_sub1_with_file &&
854 cd submodule_update &&
855 git branch -t replace_file_with_sub1 origin/replace_file_with_sub1 &&
856 $command replace_file_with_sub1 &&
857 test_superproject_content origin/replace_file_with_sub1 &&
858 test_submodule_content sub1 origin/replace_file_with_sub1
861 # ... as does removing a directory with tracked files with a submodule.
862 test_expect_success
"$command: replace directory with submodule" '
864 reset_work_tree_to_interested replace_sub1_with_directory &&
866 cd submodule_update &&
867 git branch -t replace_directory_with_sub1 origin/replace_directory_with_sub1 &&
868 $command replace_directory_with_sub1 &&
869 test_superproject_content origin/replace_directory_with_sub1 &&
870 test_submodule_content sub1 origin/replace_directory_with_sub1
874 ######################## Disappearing submodule #######################
875 # Removing a submodule removes its work tree ...
876 test_expect_success
"$command: removed submodule removes submodules working tree" '
878 reset_work_tree_to_interested add_sub1 &&
880 cd submodule_update &&
881 git branch -t remove_sub1 origin/remove_sub1 &&
882 $command remove_sub1 &&
883 test_superproject_content origin/remove_sub1 &&
887 # ... absorbing a .git directory along the way.
888 test_expect_success
"$command: removed submodule absorbs submodules .git directory" '
890 reset_work_tree_to_interested add_sub1 &&
892 cd submodule_update &&
893 git branch -t remove_sub1 origin/remove_sub1 &&
894 replace_gitfile_with_git_dir sub1 &&
895 rm -rf .git/modules &&
896 $command remove_sub1 &&
897 test_superproject_content origin/remove_sub1 &&
899 test_git_directory_exists sub1
902 # Replacing a submodule with files in a directory must succeeds
903 # when the submodule is clean
904 test_expect_
$RESULTDS "$command: replace submodule with a directory" '
906 reset_work_tree_to_interested add_sub1 &&
908 cd submodule_update &&
909 git branch -t replace_sub1_with_directory origin/replace_sub1_with_directory &&
910 $command replace_sub1_with_directory &&
911 test_superproject_content origin/replace_sub1_with_directory &&
912 test_submodule_content sub1 origin/replace_sub1_with_directory
915 # ... absorbing a .git directory.
916 test_expect_
$RESULTDS "$command: replace submodule containing a .git directory with a directory must absorb the git dir" '
918 reset_work_tree_to_interested add_sub1 &&
920 cd submodule_update &&
921 git branch -t replace_sub1_with_directory origin/replace_sub1_with_directory &&
922 replace_gitfile_with_git_dir sub1 &&
923 rm -rf .git/modules &&
924 $command replace_sub1_with_directory &&
925 test_superproject_content origin/replace_sub1_with_directory &&
926 test_git_directory_exists sub1
930 # Replacing it with a file ...
931 test_expect_success
"$command: replace submodule with a file" '
933 reset_work_tree_to_interested add_sub1 &&
935 cd submodule_update &&
936 git branch -t replace_sub1_with_file origin/replace_sub1_with_file &&
937 $command replace_sub1_with_file &&
938 test_superproject_content origin/replace_sub1_with_file &&
943 # ... must check its local work tree for untracked files
944 test_expect_
$RESULTDS "$command: replace submodule with a file must fail with untracked files" '
946 reset_work_tree_to_interested add_sub1 &&
948 cd submodule_update &&
949 git branch -t replace_sub1_with_file origin/replace_sub1_with_file &&
950 : >sub1/untrackedfile &&
951 test_must_fail $command replace_sub1_with_file &&
952 test_superproject_content origin/add_sub1 &&
953 test_submodule_content sub1 origin/add_sub1
957 # ... and ignored files are ignored
958 test_expect_success
"$command: replace submodule with a file works ignores ignored files in submodule" '
959 test_when_finished "rm submodule_update/.git/modules/sub1/info/exclude" &&
961 reset_work_tree_to_interested add_sub1 &&
963 cd submodule_update &&
964 git branch -t replace_sub1_with_file origin/replace_sub1_with_file &&
966 $command replace_sub1_with_file &&
967 test_superproject_content origin/replace_sub1_with_file &&
972 ########################## Modified submodule #########################
973 # Updating a submodule sha1 updates the submodule's work tree
974 test_expect_success
"$command: modified submodule updates submodule work tree" '
976 reset_work_tree_to_interested add_sub1 &&
978 cd submodule_update &&
979 git branch -t modify_sub1 origin/modify_sub1 &&
980 $command modify_sub1 &&
981 test_superproject_content origin/modify_sub1 &&
982 test_submodule_content sub1 origin/modify_sub1
986 # Updating a submodule to an invalid sha1 doesn't update the
987 # superproject nor the submodule's work tree.
988 test_expect_success
"$command: updating to a missing submodule commit fails" '
990 reset_work_tree_to_interested add_sub1 &&
992 cd submodule_update &&
993 git branch -t invalid_sub1 origin/invalid_sub1 &&
994 test_must_fail $command invalid_sub1 &&
995 test_superproject_content origin/add_sub1 &&
996 test_submodule_content sub1 origin/add_sub1
1000 # recursing deeper than one level doesn't work yet.
1001 test_expect_success
"$command: modified submodule updates submodule recursively" '
1003 reset_work_tree_to_interested add_nested_sub &&
1005 cd submodule_update &&
1006 git branch -t modify_sub1_recursively origin/modify_sub1_recursively &&
1007 $command modify_sub1_recursively &&
1008 test_superproject_content origin/modify_sub1_recursively &&
1009 test_submodule_content sub1 origin/modify_sub1_recursively &&
1010 test_submodule_content -C sub1 sub2 origin/modify_sub1_recursively
1015 # Test that submodule contents are updated when switching between commits
1016 # that change a submodule, but throwing away local changes in
1017 # the superproject as well as the submodule is allowed.
1018 test_submodule_forced_switch_recursing
() {
1021 if test "$KNOWN_FAILURE_DIRECTORY_SUBMODULE_CONFLICTS" = 1
1025 ######################### Appearing submodule #########################
1026 # Switching to a commit letting a submodule appear creates empty dir ...
1027 test_expect_success
"$command: added submodule is checked out" '
1029 reset_work_tree_to_interested no_submodule &&
1031 cd submodule_update &&
1032 git branch -t add_sub1 origin/add_sub1 &&
1033 $command add_sub1 &&
1034 test_superproject_content origin/add_sub1 &&
1035 test_submodule_content sub1 origin/add_sub1
1038 # ... and doesn't care if it already exists ...
1039 test_expect_success
"$command: added submodule ignores empty directory" '
1041 reset_work_tree_to_interested no_submodule &&
1043 cd submodule_update &&
1044 git branch -t add_sub1 origin/add_sub1 &&
1046 $command add_sub1 &&
1047 test_superproject_content origin/add_sub1 &&
1048 test_submodule_content sub1 origin/add_sub1
1051 # ... not caring about an untracked file either
1052 test_expect_success
"$command: added submodule does remove untracked unignored file with same name when forced" '
1054 reset_work_tree_to_interested no_submodule &&
1056 cd submodule_update &&
1057 git branch -t add_sub1 origin/add_sub1 &&
1059 $command add_sub1 &&
1060 test_superproject_content origin/add_sub1 &&
1061 test_submodule_content sub1 origin/add_sub1
1064 # Replacing a tracked file with a submodule checks out the submodule
1065 test_expect_success
"$command: replace tracked file with submodule populates the submodule" '
1067 reset_work_tree_to_interested replace_sub1_with_file &&
1069 cd submodule_update &&
1070 git branch -t replace_file_with_sub1 origin/replace_file_with_sub1 &&
1071 $command replace_file_with_sub1 &&
1072 test_superproject_content origin/replace_file_with_sub1 &&
1073 test_submodule_content sub1 origin/replace_file_with_sub1
1076 # ... as does removing a directory with tracked files with a
1078 test_expect_success
"$command: replace directory with submodule" '
1080 reset_work_tree_to_interested replace_sub1_with_directory &&
1082 cd submodule_update &&
1083 git branch -t replace_directory_with_sub1 origin/replace_directory_with_sub1 &&
1084 $command replace_directory_with_sub1 &&
1085 test_superproject_content origin/replace_directory_with_sub1 &&
1086 test_submodule_content sub1 origin/replace_directory_with_sub1
1090 ######################## Disappearing submodule #######################
1091 # Removing a submodule doesn't remove its work tree ...
1092 test_expect_success
"$command: removed submodule leaves submodule directory and its contents in place" '
1094 reset_work_tree_to_interested add_sub1 &&
1096 cd submodule_update &&
1097 git branch -t remove_sub1 origin/remove_sub1 &&
1098 $command remove_sub1 &&
1099 test_superproject_content origin/remove_sub1 &&
1103 # ... especially when it contains a .git directory.
1104 test_expect_success
"$command: removed submodule leaves submodule containing a .git directory alone" '
1106 reset_work_tree_to_interested add_sub1 &&
1108 cd submodule_update &&
1109 git branch -t remove_sub1 origin/remove_sub1 &&
1110 replace_gitfile_with_git_dir sub1 &&
1111 rm -rf .git/modules/sub1 &&
1112 $command remove_sub1 &&
1113 test_superproject_content origin/remove_sub1 &&
1114 test_git_directory_exists sub1 &&
1118 # Replacing a submodule with files in a directory ...
1119 test_expect_success
"$command: replace submodule with a directory" '
1121 reset_work_tree_to_interested add_sub1 &&
1123 cd submodule_update &&
1124 git branch -t replace_sub1_with_directory origin/replace_sub1_with_directory &&
1125 $command replace_sub1_with_directory &&
1126 test_superproject_content origin/replace_sub1_with_directory
1129 # ... absorbing a .git directory.
1130 test_expect_success
"$command: replace submodule containing a .git directory with a directory must fail" '
1132 reset_work_tree_to_interested add_sub1 &&
1134 cd submodule_update &&
1135 git branch -t replace_sub1_with_directory origin/replace_sub1_with_directory &&
1136 replace_gitfile_with_git_dir sub1 &&
1137 rm -rf .git/modules/sub1 &&
1138 $command replace_sub1_with_directory &&
1139 test_superproject_content origin/replace_sub1_with_directory &&
1140 test_submodule_content sub1 origin/modify_sub1
1141 test_git_directory_exists sub1
1144 # Replacing it with a file
1145 test_expect_success
"$command: replace submodule with a file" '
1147 reset_work_tree_to_interested add_sub1 &&
1149 cd submodule_update &&
1150 git branch -t replace_sub1_with_file origin/replace_sub1_with_file &&
1151 $command replace_sub1_with_file &&
1152 test_superproject_content origin/replace_sub1_with_file
1156 # ... even if the submodule contains ignored files
1157 test_expect_success
"$command: replace submodule with a file ignoring ignored files" '
1159 reset_work_tree_to_interested add_sub1 &&
1161 cd submodule_update &&
1162 git branch -t replace_sub1_with_file origin/replace_sub1_with_file &&
1164 $command replace_sub1_with_file &&
1165 test_superproject_content origin/replace_sub1_with_file
1169 # ... but stops for untracked files that would be lost
1170 test_expect_
$RESULT "$command: replace submodule with a file stops for untracked files" '
1172 reset_work_tree_to_interested add_sub1 &&
1174 cd submodule_update &&
1175 git branch -t replace_sub1_with_file origin/replace_sub1_with_file &&
1176 : >sub1/untracked_file &&
1177 test_must_fail $command replace_sub1_with_file &&
1178 test_superproject_content origin/add_sub1 &&
1179 test -f sub1/untracked_file
1183 ########################## Modified submodule #########################
1184 # Updating a submodule sha1 updates the submodule's work tree
1185 test_expect_success
"$command: modified submodule updates submodule work tree" '
1187 reset_work_tree_to_interested add_sub1 &&
1189 cd submodule_update &&
1190 git branch -t modify_sub1 origin/modify_sub1 &&
1191 $command modify_sub1 &&
1192 test_superproject_content origin/modify_sub1 &&
1193 test_submodule_content sub1 origin/modify_sub1
1196 # Updating a submodule to an invalid sha1 doesn't update the
1197 # submodule's work tree, subsequent update will fail
1198 test_expect_success
"$command: modified submodule does not update submodule work tree to invalid commit" '
1200 reset_work_tree_to_interested add_sub1 &&
1202 cd submodule_update &&
1203 git branch -t invalid_sub1 origin/invalid_sub1 &&
1204 test_must_fail $command invalid_sub1 &&
1205 test_superproject_content origin/add_sub1 &&
1206 test_submodule_content sub1 origin/add_sub1
1209 # Updating a submodule from an invalid sha1 updates
1210 test_expect_success
"$command: modified submodule does not update submodule work tree from invalid commit" '
1212 reset_work_tree_to_interested invalid_sub1 &&
1214 cd submodule_update &&
1215 git branch -t valid_sub1 origin/valid_sub1 &&
1216 test_must_fail $command valid_sub1 &&
1217 test_superproject_content origin/invalid_sub1