aboutsummaryrefslogtreecommitdiff
path: root/t/t6422-merge-rename-corner-cases.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/t6422-merge-rename-corner-cases.sh')
-rwxr-xr-xt/t6422-merge-rename-corner-cases.sh86
1 files changed, 86 insertions, 0 deletions
diff --git a/t/t6422-merge-rename-corner-cases.sh b/t/t6422-merge-rename-corner-cases.sh
index f14c0fb30e..e18d5a227d 100755
--- a/t/t6422-merge-rename-corner-cases.sh
+++ b/t/t6422-merge-rename-corner-cases.sh
@@ -1439,4 +1439,90 @@ test_expect_success 'rename/rename(1to2) with a binary file' '
)
'
+# Testcase preliminary submodule/directory conflict and submodule rename
+# Commit O: <empty, or additional irrelevant stuff>
+# Commit A1: introduce "folder" (as a tree)
+# Commit B1: introduce "folder" (as a submodule)
+# Commit A2: merge B1 into A1, but keep folder as a tree
+# Commit B2: merge A1 into B1, but keep folder as a submodule
+# Merge A2 & B2
+test_setup_submodule_directory_preliminary_conflict () {
+ git init submodule_directory_preliminary_conflict &&
+ (
+ cd submodule_directory_preliminary_conflict &&
+
+ # Trying to do the A2 and B2 merges above is slightly more
+ # challenging with a local submodule (because checking out
+ # another commit has the submodule in the way). Instead,
+ # first create the commits with the wrong parents but right
+ # trees, in the order A1, A2, B1, B2...
+ #
+ # Then go back and create new A2 & B2 with the correct
+ # parents and the same trees.
+
+ git commit --allow-empty -m orig &&
+
+ git branch A &&
+ git branch B &&
+
+ git checkout B &&
+ mkdir folder &&
+ echo A>folder/A &&
+ echo B>folder/B &&
+ echo C>folder/C &&
+ echo D>folder/D &&
+ echo E>folder/E &&
+ git add folder &&
+ git commit -m B1 &&
+
+ git commit --allow-empty -m B2 &&
+
+ git checkout A &&
+ git init folder &&
+ (
+ cd folder &&
+ >Z &&
+ >Y &&
+ git add Z Y &&
+ git commit -m "original submodule commit"
+ ) &&
+ git add folder &&
+ git commit -m A1 &&
+
+ git commit --allow-empty -m A2 &&
+
+ NewA2=$(git commit-tree -p A^ -p B^ -m "Merge B into A" A^{tree}) &&
+ NewB2=$(git commit-tree -p B^ -p A^ -m "Merge A into B" B^{tree}) &&
+ git update-ref refs/heads/A $NewA2 &&
+ git update-ref refs/heads/B $NewB2
+ )
+}
+
+test_expect_success 'submodule/directory preliminary conflict' '
+ test_setup_submodule_directory_preliminary_conflict &&
+ (
+ cd submodule_directory_preliminary_conflict &&
+
+ git checkout A^0 &&
+
+ test_expect_code 1 git merge B^0 &&
+
+ # Make sure the index has the right number of entries
+ git ls-files -s >actual &&
+ test_line_count = 2 actual &&
+
+ # The "folder" as directory should have been resolved away
+ # as part of the merge. The "folder" as submodule got
+ # renamed to "folder~Temporary merge branch 2" in the
+ # virtual merge base, resulting in a
+ # "folder~Temporary merge branch 2" -> "folder"
+ # rename in the outermerge for the submodule, which then
+ # becomes part of a rename/delete conflict (because "folder"
+ # as a submodule was deleted in A2).
+ submod=$(git rev-parse A:folder) &&
+ printf "160000 $submod 1\tfolder\n160000 $submod 2\tfolder\n" >expect &&
+ test_cmp expect actual
+ )
+'
+
test_done