3 # Copyright (c) 2008 Johannes Schindelin
6 test_description
='Test rebasing, stashing, etc. with submodules'
8 TEST_PASSES_SANITIZE_LEAK
=true
11 test_expect_success setup
'
16 git commit -m initial &&
17 git clone . submodule &&
20 git commit -m submodule &&
21 echo second line >> file &&
22 (cd submodule && git pull) &&
24 git commit -m file-and-submodule -a &&
25 git branch added-submodule
29 test_expect_success
'rebase with a dirty submodule' '
32 echo 3rd line >> file &&
34 git commit -m fork -a) &&
35 echo unrelated >> file2 &&
38 git commit -m unrelated file2 &&
39 echo other line >> file &&
41 git commit -m update file &&
42 CURRENT=$(cd submodule && git rev-parse HEAD) &&
43 EXPECTED=$(git rev-parse HEAD~2:submodule) &&
44 GIT_TRACE=1 git rebase --onto HEAD~2 HEAD^ &&
45 STORED=$(git rev-parse HEAD:submodule) &&
46 test $EXPECTED = $STORED &&
47 test $CURRENT = $(cd submodule && git rev-parse HEAD)
51 cat > fake-editor.sh
<< \EOF
55 chmod a
+x fake-editor.sh
57 test_expect_success
'interactive rebase with a dirty submodule' '
59 echo submodule >expect &&
60 git diff --name-only >actual &&
61 test_cmp expect actual &&
62 HEAD=$(git rev-parse HEAD) &&
63 GIT_EDITOR="\"$(pwd)/fake-editor.sh\"" EDITOR_TEXT="pick $HEAD" \
64 git rebase -i HEAD^ &&
65 echo submodule >expect &&
66 git diff --name-only >actual &&
67 test_cmp expect actual
70 test_expect_success
'rebase with dirty file and submodule fails' '
72 echo yet another line >> file &&
74 git commit -m next file &&
75 echo rewrite > file &&
77 git commit -m rewrite file &&
79 test_must_fail git rebase --onto HEAD~2 HEAD^
83 test_expect_success
'stash with a dirty submodule' '
86 CURRENT=$(cd submodule && git rev-parse HEAD) &&
88 test new != $(cat file) &&
89 echo submodule >expect &&
90 git diff --name-only >actual &&
91 test_cmp expect actual &&
93 echo "$CURRENT" >expect &&
94 git -C submodule rev-parse HEAD >actual &&
95 test_cmp expect actual &&
98 test new = $(cat file) &&
99 echo "$CURRENT" >expect &&
100 git -C submodule rev-parse HEAD >actual &&
101 test_cmp expect actual
105 test_expect_success
'rebasing submodule that should conflict' '
107 git checkout added-submodule &&
110 git commit -m third &&
113 git commit --allow-empty -m extra
117 git commit -m fourth &&
119 test_must_fail git rebase --onto HEAD^^ HEAD^ HEAD^0 >actual_output &&
120 git ls-files -s submodule >actual &&
123 echo "160000 $(git rev-parse HEAD^) 1 submodule" &&
124 echo "160000 $(git rev-parse HEAD^^) 2 submodule" &&
125 echo "160000 $(git rev-parse HEAD) 3 submodule"
127 test_cmp expect actual &&
128 if test "$GIT_TEST_MERGE_ALGORITHM" = ort
130 sub_expect="go to submodule (submodule), and either merge commit $(git -C submodule rev-parse --short HEAD^0)" &&
131 grep "$sub_expect" actual_output