Git 2.45
[git/gitster.git] / t / t7110-reset-merge.sh
blob7ee180f81da4f9e0ae312f73a87ab9775ef18e1d
1 #!/bin/sh
3 # Copyright (c) 2009 Christian Couder
6 test_description='Tests for "git reset" with "--merge" and "--keep" options'
8 TEST_PASSES_SANITIZE_LEAK=true
9 . ./test-lib.sh
11 test_expect_success setup '
12 printf "line %d\n" 1 2 3 >file1 &&
13 cat file1 >file2 &&
14 git add file1 file2 &&
15 test_tick &&
16 git commit -m "Initial commit" &&
17 git tag initial &&
18 echo line 4 >>file1 &&
19 cat file1 >file2 &&
20 test_tick &&
21 git commit -m "add line 4 to file1" file1 &&
22 git tag second
25 # The next test will test the following:
27 # working index HEAD target working index HEAD
28 # ----------------------------------------------------
29 # file1: C C C D --merge D D D
30 # file2: C D D D --merge C D D
31 test_expect_success 'reset --merge is ok with changes in file it does not touch' '
32 git reset --merge HEAD^ &&
33 ! grep 4 file1 &&
34 grep 4 file2 &&
35 test "$(git rev-parse HEAD)" = "$(git rev-parse initial)" &&
36 test -z "$(git diff --cached)"
39 test_expect_success 'reset --merge is ok when switching back' '
40 git reset --merge second &&
41 grep 4 file1 &&
42 grep 4 file2 &&
43 test "$(git rev-parse HEAD)" = "$(git rev-parse second)" &&
44 test -z "$(git diff --cached)"
47 # The next test will test the following:
49 # working index HEAD target working index HEAD
50 # ----------------------------------------------------
51 # file1: C C C D --keep D D D
52 # file2: C D D D --keep C D D
53 test_expect_success 'reset --keep is ok with changes in file it does not touch' '
54 git reset --hard second &&
55 cat file1 >file2 &&
56 git reset --keep HEAD^ &&
57 ! grep 4 file1 &&
58 grep 4 file2 &&
59 test "$(git rev-parse HEAD)" = "$(git rev-parse initial)" &&
60 test -z "$(git diff --cached)"
63 test_expect_success 'reset --keep is ok when switching back' '
64 git reset --keep second &&
65 grep 4 file1 &&
66 grep 4 file2 &&
67 test "$(git rev-parse HEAD)" = "$(git rev-parse second)" &&
68 test -z "$(git diff --cached)"
71 # The next test will test the following:
73 # working index HEAD target working index HEAD
74 # ----------------------------------------------------
75 # file1: B B C D --merge D D D
76 # file2: C D D D --merge C D D
77 test_expect_success 'reset --merge discards changes added to index (1)' '
78 git reset --hard second &&
79 cat file1 >file2 &&
80 echo "line 5" >> file1 &&
81 git add file1 &&
82 git reset --merge HEAD^ &&
83 ! grep 4 file1 &&
84 ! grep 5 file1 &&
85 grep 4 file2 &&
86 test "$(git rev-parse HEAD)" = "$(git rev-parse initial)" &&
87 test -z "$(git diff --cached)"
90 test_expect_success 'reset --merge is ok again when switching back (1)' '
91 git reset --hard initial &&
92 echo "line 5" >> file2 &&
93 git add file2 &&
94 git reset --merge second &&
95 ! grep 4 file2 &&
96 ! grep 5 file1 &&
97 grep 4 file1 &&
98 test "$(git rev-parse HEAD)" = "$(git rev-parse second)" &&
99 test -z "$(git diff --cached)"
102 # The next test will test the following:
104 # working index HEAD target working index HEAD
105 # ----------------------------------------------------
106 # file1: B B C D --keep (disallowed)
107 test_expect_success 'reset --keep fails with changes in index in files it touches' '
108 git reset --hard second &&
109 echo "line 5" >> file1 &&
110 git add file1 &&
111 test_must_fail git reset --keep HEAD^
114 # The next test will test the following:
116 # working index HEAD target working index HEAD
117 # ----------------------------------------------------
118 # file1: C C C D --merge D D D
119 # file2: C C D D --merge D D D
120 test_expect_success 'reset --merge discards changes added to index (2)' '
121 git reset --hard second &&
122 echo "line 4" >> file2 &&
123 git add file2 &&
124 git reset --merge HEAD^ &&
125 ! grep 4 file2 &&
126 test "$(git rev-parse HEAD)" = "$(git rev-parse initial)" &&
127 test -z "$(git diff)" &&
128 test -z "$(git diff --cached)"
131 test_expect_success 'reset --merge is ok again when switching back (2)' '
132 git reset --hard initial &&
133 git reset --merge second &&
134 ! grep 4 file2 &&
135 grep 4 file1 &&
136 test "$(git rev-parse HEAD)" = "$(git rev-parse second)" &&
137 test -z "$(git diff --cached)"
140 # The next test will test the following:
142 # working index HEAD target working index HEAD
143 # ----------------------------------------------------
144 # file1: C C C D --keep D D D
145 # file2: C C D D --keep C D D
146 test_expect_success 'reset --keep keeps changes it does not touch' '
147 git reset --hard second &&
148 echo "line 4" >> file2 &&
149 git add file2 &&
150 git reset --keep HEAD^ &&
151 grep 4 file2 &&
152 test "$(git rev-parse HEAD)" = "$(git rev-parse initial)" &&
153 test -z "$(git diff --cached)"
156 test_expect_success 'reset --keep keeps changes when switching back' '
157 git reset --keep second &&
158 grep 4 file2 &&
159 grep 4 file1 &&
160 test "$(git rev-parse HEAD)" = "$(git rev-parse second)" &&
161 test -z "$(git diff --cached)"
164 # The next test will test the following:
166 # working index HEAD target working index HEAD
167 # ----------------------------------------------------
168 # file1: A B B C --merge (disallowed)
169 test_expect_success 'reset --merge fails with changes in file it touches' '
170 git reset --hard second &&
171 echo "line 5" >> file1 &&
172 test_tick &&
173 git commit -m "add line 5" file1 &&
174 sed -e "s/line 1/changed line 1/" <file1 >file3 &&
175 mv file3 file1 &&
176 test_must_fail git reset --merge HEAD^ 2>err.log &&
177 grep file1 err.log | grep "not uptodate"
180 # The next test will test the following:
182 # working index HEAD target working index HEAD
183 # ----------------------------------------------------
184 # file1: A B B C --keep (disallowed)
185 test_expect_success 'reset --keep fails with changes in file it touches' '
186 git reset --hard second &&
187 echo "line 5" >> file1 &&
188 test_tick &&
189 git commit -m "add line 5" file1 &&
190 sed -e "s/line 1/changed line 1/" <file1 >file3 &&
191 mv file3 file1 &&
192 test_must_fail git reset --keep HEAD^ 2>err.log &&
193 grep file1 err.log | grep "not uptodate"
196 test_expect_success 'setup 3 different branches' '
197 git reset --hard second &&
198 git branch branch1 &&
199 git branch branch2 &&
200 git branch branch3 &&
201 git checkout branch1 &&
202 echo "line 5 in branch1" >> file1 &&
203 test_tick &&
204 git commit -a -m "change in branch1" &&
205 git checkout branch2 &&
206 echo "line 5 in branch2" >> file1 &&
207 test_tick &&
208 git commit -a -m "change in branch2" &&
209 git tag third &&
210 git checkout branch3 &&
211 echo a new file >file3 &&
212 rm -f file1 &&
213 git add file3 &&
214 test_tick &&
215 git commit -a -m "change in branch3"
218 # The next test will test the following:
220 # working index HEAD target working index HEAD
221 # ----------------------------------------------------
222 # file1: X U B C --merge C C C
223 test_expect_success '"reset --merge HEAD^" is ok with pending merge' '
224 git checkout third &&
225 test_must_fail git merge branch1 &&
226 git reset --merge HEAD^ &&
227 test "$(git rev-parse HEAD)" = "$(git rev-parse second)" &&
228 test -z "$(git diff --cached)" &&
229 test -z "$(git diff)"
232 # The next test will test the following:
234 # working index HEAD target working index HEAD
235 # ----------------------------------------------------
236 # file1: X U B C --keep (disallowed)
237 test_expect_success '"reset --keep HEAD^" fails with pending merge' '
238 git reset --hard third &&
239 test_must_fail git merge branch1 &&
240 test_must_fail git reset --keep HEAD^ 2>err.log &&
241 test_grep "middle of a merge" err.log
244 # The next test will test the following:
246 # working index HEAD target working index HEAD
247 # ----------------------------------------------------
248 # file1: X U B B --merge B B B
249 test_expect_success '"reset --merge HEAD" is ok with pending merge' '
250 git reset --hard third &&
251 test_must_fail git merge branch1 &&
252 git reset --merge HEAD &&
253 test "$(git rev-parse HEAD)" = "$(git rev-parse third)" &&
254 test -z "$(git diff --cached)" &&
255 test -z "$(git diff)"
258 # The next test will test the following:
260 # working index HEAD target working index HEAD
261 # ----------------------------------------------------
262 # file1: X U B B --keep (disallowed)
263 test_expect_success '"reset --keep HEAD" fails with pending merge' '
264 git reset --hard third &&
265 test_must_fail git merge branch1 &&
266 test_must_fail git reset --keep HEAD 2>err.log &&
267 test_grep "middle of a merge" err.log
270 test_expect_success '--merge is ok with added/deleted merge' '
271 git reset --hard third &&
272 rm -f file2 &&
273 test_must_fail git merge branch3 &&
274 ! test -f file2 &&
275 test -f file3 &&
276 git diff --exit-code file3 &&
277 git diff --exit-code branch3 file3 &&
278 git reset --merge HEAD &&
279 ! test -f file3 &&
280 ! test -f file2 &&
281 git diff --exit-code --cached
284 test_expect_success '--keep fails with added/deleted merge' '
285 git reset --hard third &&
286 rm -f file2 &&
287 test_must_fail git merge branch3 &&
288 ! test -f file2 &&
289 test -f file3 &&
290 git diff --exit-code file3 &&
291 git diff --exit-code branch3 file3 &&
292 test_must_fail git reset --keep HEAD 2>err.log &&
293 test_grep "middle of a merge" err.log
296 test_done