diff.c: omit hidden entries from namelen calculation with --stat
[git/dscho.git] / t / t3507-cherry-pick-conflict.sh
blob212ec54aaf0d805bbdecd93f3311d248a57d5b08
1 #!/bin/sh
3 test_description='test cherry-pick and revert with conflicts
6 + picked: rewrites foo to c
7 + base: rewrites foo to b
8 + initial: writes foo as a, unrelated as unrelated
12 . ./test-lib.sh
14 test_cmp_rev () {
15 git rev-parse --verify "$1" >expect.rev &&
16 git rev-parse --verify "$2" >actual.rev &&
17 test_cmp expect.rev actual.rev
20 pristine_detach () {
21 git checkout -f "$1^0" &&
22 git read-tree -u --reset HEAD &&
23 git clean -d -f -f -q -x
26 test_expect_success setup '
28 echo unrelated >unrelated &&
29 git add unrelated &&
30 test_commit initial foo a &&
31 test_commit base foo b &&
32 test_commit picked foo c &&
33 git config advice.detachedhead false
37 test_expect_success 'failed cherry-pick does not advance HEAD' '
38 pristine_detach initial &&
40 head=$(git rev-parse HEAD) &&
41 test_must_fail git cherry-pick picked &&
42 newhead=$(git rev-parse HEAD) &&
44 test "$head" = "$newhead"
47 test_expect_success 'advice from failed cherry-pick' "
48 pristine_detach initial &&
50 picked=\$(git rev-parse --short picked) &&
51 cat <<-EOF >expected &&
52 error: could not apply \$picked... picked
53 hint: after resolving the conflicts, mark the corrected paths
54 hint: with 'git add <paths>' or 'git rm <paths>'
55 hint: and commit the result with 'git commit'
56 EOF
57 test_must_fail git cherry-pick picked 2>actual &&
59 test_i18ncmp expected actual
62 test_expect_success 'failed cherry-pick sets CHERRY_PICK_HEAD' '
63 pristine_detach initial &&
64 test_must_fail git cherry-pick picked &&
65 test_cmp_rev picked CHERRY_PICK_HEAD
68 test_expect_success 'successful cherry-pick does not set CHERRY_PICK_HEAD' '
69 pristine_detach initial &&
70 git cherry-pick base &&
71 test_must_fail git rev-parse --verify CHERRY_PICK_HEAD
74 test_expect_success 'cherry-pick --no-commit does not set CHERRY_PICK_HEAD' '
75 pristine_detach initial &&
76 git cherry-pick --no-commit base &&
77 test_must_fail git rev-parse --verify CHERRY_PICK_HEAD
80 test_expect_success 'GIT_CHERRY_PICK_HELP suppresses CHERRY_PICK_HEAD' '
81 pristine_detach initial &&
83 GIT_CHERRY_PICK_HELP="and then do something else" &&
84 export GIT_CHERRY_PICK_HELP &&
85 test_must_fail git cherry-pick picked
86 ) &&
87 test_must_fail git rev-parse --verify CHERRY_PICK_HEAD
90 test_expect_success 'git reset clears CHERRY_PICK_HEAD' '
91 pristine_detach initial &&
93 test_must_fail git cherry-pick picked &&
94 git reset &&
96 test_must_fail git rev-parse --verify CHERRY_PICK_HEAD
99 test_expect_success 'failed commit does not clear CHERRY_PICK_HEAD' '
100 pristine_detach initial &&
102 test_must_fail git cherry-pick picked &&
103 test_must_fail git commit &&
105 test_cmp_rev picked CHERRY_PICK_HEAD
108 test_expect_success 'cancelled commit does not clear CHERRY_PICK_HEAD' '
109 pristine_detach initial &&
111 test_must_fail git cherry-pick picked &&
112 echo resolved >foo &&
113 git add foo &&
114 git update-index --refresh -q &&
115 test_must_fail git diff-index --exit-code HEAD &&
117 GIT_EDITOR=false &&
118 export GIT_EDITOR &&
119 test_must_fail git commit
120 ) &&
122 test_cmp_rev picked CHERRY_PICK_HEAD
125 test_expect_success 'successful commit clears CHERRY_PICK_HEAD' '
126 pristine_detach initial &&
128 test_must_fail git cherry-pick picked &&
129 echo resolved >foo &&
130 git add foo &&
131 git commit &&
133 test_must_fail git rev-parse --verify CHERRY_PICK_HEAD
136 test_expect_success 'failed cherry-pick produces dirty index' '
137 pristine_detach initial &&
139 test_must_fail git cherry-pick picked &&
141 test_must_fail git update-index --refresh -q &&
142 test_must_fail git diff-index --exit-code HEAD
145 test_expect_success 'failed cherry-pick registers participants in index' '
146 pristine_detach initial &&
148 git checkout base -- foo &&
149 git ls-files --stage foo &&
150 git checkout initial -- foo &&
151 git ls-files --stage foo &&
152 git checkout picked -- foo &&
153 git ls-files --stage foo
154 } > stages &&
155 sed "
156 1 s/ 0 / 1 /
157 2 s/ 0 / 2 /
158 3 s/ 0 / 3 /
159 " < stages > expected &&
160 git read-tree -u --reset HEAD &&
162 test_must_fail git cherry-pick picked &&
163 git ls-files --stage --unmerged > actual &&
165 test_cmp expected actual
168 test_expect_success 'failed cherry-pick describes conflict in work tree' '
169 pristine_detach initial &&
170 cat <<-EOF > expected &&
171 <<<<<<< HEAD
173 =======
175 >>>>>>> objid picked
178 test_must_fail git cherry-pick picked &&
180 sed "s/[a-f0-9]*\.\.\./objid/" foo > actual &&
181 test_cmp expected actual
184 test_expect_success 'diff3 -m style' '
185 pristine_detach initial &&
186 git config merge.conflictstyle diff3 &&
187 cat <<-EOF > expected &&
188 <<<<<<< HEAD
190 ||||||| parent of objid picked
192 =======
194 >>>>>>> objid picked
197 test_must_fail git cherry-pick picked &&
199 sed "s/[a-f0-9]*\.\.\./objid/" foo > actual &&
200 test_cmp expected actual
203 test_expect_success 'revert also handles conflicts sanely' '
204 git config --unset merge.conflictstyle &&
205 pristine_detach initial &&
206 cat <<-EOF > expected &&
207 <<<<<<< HEAD
209 =======
211 >>>>>>> parent of objid picked
214 git checkout picked -- foo &&
215 git ls-files --stage foo &&
216 git checkout initial -- foo &&
217 git ls-files --stage foo &&
218 git checkout base -- foo &&
219 git ls-files --stage foo
220 } > stages &&
221 sed "
222 1 s/ 0 / 1 /
223 2 s/ 0 / 2 /
224 3 s/ 0 / 3 /
225 " < stages > expected-stages &&
226 git read-tree -u --reset HEAD &&
228 head=$(git rev-parse HEAD) &&
229 test_must_fail git revert picked &&
230 newhead=$(git rev-parse HEAD) &&
231 git ls-files --stage --unmerged > actual-stages &&
233 test "$head" = "$newhead" &&
234 test_must_fail git update-index --refresh -q &&
235 test_must_fail git diff-index --exit-code HEAD &&
236 test_cmp expected-stages actual-stages &&
237 sed "s/[a-f0-9]*\.\.\./objid/" foo > actual &&
238 test_cmp expected actual
241 test_expect_success 'revert conflict, diff3 -m style' '
242 pristine_detach initial &&
243 git config merge.conflictstyle diff3 &&
244 cat <<-EOF > expected &&
245 <<<<<<< HEAD
247 ||||||| objid picked
249 =======
251 >>>>>>> parent of objid picked
254 test_must_fail git revert picked &&
256 sed "s/[a-f0-9]*\.\.\./objid/" foo > actual &&
257 test_cmp expected actual
260 test_done