]> git.ipfire.org Git - thirdparty/git.git/blame - t/t4151-am-abort.sh
Merge branch 'en/fetch-negotiation-default-fix'
[thirdparty/git.git] / t / t4151-am-abort.sh
CommitLineData
3e5057a8
NS
1#!/bin/sh
2
3test_description='am --abort'
4
5. ./test-lib.sh
6
7test_expect_success setup '
08495412 8 test_write_lines a b c d e f g >file-1 &&
3e5057a8
NS
9 cp file-1 file-2 &&
10 test_tick &&
11 git add file-1 file-2 &&
12 git commit -m initial &&
13 git tag initial &&
e06764c8 14 git format-patch --stdout --root initial >initial.patch &&
95f8ebbf 15 for i in 2 3 4 5 6
3e5057a8
NS
16 do
17 echo $i >>file-1 &&
9944d1a0
OM
18 echo $i >otherfile-$i &&
19 git add otherfile-$i &&
3e5057a8 20 test_tick &&
e6821d09 21 git commit -a -m $i || return 1
3e5057a8 22 done &&
42b5e09d 23 git branch changes &&
a567fdcb 24 git format-patch --no-numbered initial &&
42b5e09d
EN
25 git checkout -b conflicting initial &&
26 echo different >>file-1 &&
27 echo whatever >new-file &&
28 git add file-1 new-file &&
29 git commit -m different &&
3e5057a8
NS
30 git checkout -b side initial &&
31 echo local change >file-2-expect
32'
33
34for with3 in '' ' -3'
35do
36 test_expect_success "am$with3 stops at a patch that does not apply" '
37
38 git reset --hard initial &&
39 cp file-2-expect file-2 &&
40
95f8ebbf 41 test_must_fail git am$with3 000[1245]-*.patch &&
3e5057a8 42 git log --pretty=tformat:%s >actual &&
08495412 43 test_write_lines 3 2 initial >expect &&
3e5057a8
NS
44 test_cmp expect actual
45 '
46
95f8ebbf 47 test_expect_success "am$with3 --skip continue after failed am$with3" '
3604e7c5 48 test_must_fail git am$with3 --skip >output &&
dee8b71e
RJ
49 test_i18ngrep "^Applying: 6$" output &&
50 test_cmp file-2-expect file-2 &&
3ca399d4 51 test ! -f .git/MERGE_RR
95f8ebbf
OM
52 '
53
3e5057a8 54 test_expect_success "am --abort goes back after failed am$with3" '
3604e7c5 55 git am --abort &&
3e5057a8
NS
56 git rev-parse HEAD >actual &&
57 git rev-parse initial >expect &&
58 test_cmp expect actual &&
59 test_cmp file-2-expect file-2 &&
60 git diff-index --exit-code --cached HEAD &&
3ca399d4 61 test ! -f .git/MERGE_RR
3e5057a8
NS
62 '
63
64done
65
88d50724
PT
66test_expect_success 'am -3 --skip removes otherfile-4' '
67 git reset --hard initial &&
68 test_must_fail git am -3 0003-*.patch &&
69 test 3 -eq $(git ls-files -u | wc -l) &&
70 test 4 = "$(cat otherfile-4)" &&
71 git am --skip &&
72 test_cmp_rev initial HEAD &&
20c3fe76
PT
73 test -z "$(git ls-files -u)" &&
74 test_path_is_missing otherfile-4
75'
76
77test_expect_success 'am -3 --abort removes otherfile-4' '
78 git reset --hard initial &&
79 test_must_fail git am -3 0003-*.patch &&
80 test 3 -eq $(git ls-files -u | wc -l) &&
81 test 4 = "$(cat otherfile-4)" &&
82 git am --abort &&
83 test_cmp_rev initial HEAD &&
2bb05186 84 test -z "$(git ls-files -u)" &&
88d50724
PT
85 test_path_is_missing otherfile-4
86'
87
7b3b7e37
JH
88test_expect_success 'am --abort will keep the local commits intact' '
89 test_must_fail git am 0004-*.patch &&
90 test_commit unrelated &&
91 git rev-parse HEAD >expect &&
92 git am --abort &&
93 git rev-parse HEAD >actual &&
94 test_cmp expect actual
95'
96
528484c6
PT
97test_expect_success 'am --abort will keep dirty index intact' '
98 git reset --hard initial &&
99 echo dirtyfile >dirtyfile &&
100 cp dirtyfile dirtyfile.expected &&
101 git add dirtyfile &&
102 test_must_fail git am 0001-*.patch &&
103 test_cmp_rev initial HEAD &&
104 test_path_is_file dirtyfile &&
105 test_cmp dirtyfile.expected dirtyfile &&
106 git am --abort &&
107 test_cmp_rev initial HEAD &&
108 test_path_is_file dirtyfile &&
109 test_cmp dirtyfile.expected dirtyfile
110'
111
2c970c9e
PT
112test_expect_success 'am -3 stops on conflict on unborn branch' '
113 git checkout -f --orphan orphan &&
114 git reset &&
115 rm -f otherfile-4 &&
116 test_must_fail git am -3 0003-*.patch &&
117 test 2 -eq $(git ls-files -u | wc -l) &&
118 test 4 = "$(cat otherfile-4)"
119'
120
f8da6801
PT
121test_expect_success 'am -3 --skip clears index on unborn branch' '
122 test_path_is_dir .git/rebase-apply &&
123 echo tmpfile >tmpfile &&
124 git add tmpfile &&
125 git am --skip &&
126 test -z "$(git ls-files)" &&
127 test_path_is_missing otherfile-4 &&
128 test_path_is_missing tmpfile
129'
130
20c3fe76
PT
131test_expect_success 'am -3 --abort removes otherfile-4 on unborn branch' '
132 git checkout -f --orphan orphan &&
133 git reset &&
134 rm -f otherfile-4 file-1 &&
135 test_must_fail git am -3 0003-*.patch &&
136 test 2 -eq $(git ls-files -u | wc -l) &&
137 test 4 = "$(cat otherfile-4)" &&
138 git am --abort &&
139 test -z "$(git ls-files -u)" &&
140 test_path_is_missing otherfile-4
141'
142
e06764c8
PT
143test_expect_success 'am -3 --abort on unborn branch removes applied commits' '
144 git checkout -f --orphan orphan &&
145 git reset &&
146 rm -f otherfile-4 otherfile-2 file-1 file-2 &&
147 test_must_fail git am -3 initial.patch 0003-*.patch &&
148 test 3 -eq $(git ls-files -u | wc -l) &&
149 test 4 = "$(cat otherfile-4)" &&
150 git am --abort &&
151 test -z "$(git ls-files -u)" &&
152 test_path_is_missing otherfile-4 &&
153 test_path_is_missing file-1 &&
154 test_path_is_missing file-2 &&
155 test 0 -eq $(git log --oneline 2>/dev/null | wc -l) &&
156 test refs/heads/orphan = "$(git symbolic-ref HEAD)"
157'
158
6ea3b67b
PT
159test_expect_success 'am --abort on unborn branch will keep local commits intact' '
160 git checkout -f --orphan orphan &&
161 git reset &&
162 test_must_fail git am 0004-*.patch &&
163 test_commit unrelated2 &&
164 git rev-parse HEAD >expect &&
165 git am --abort &&
166 git rev-parse HEAD >actual &&
167 test_cmp expect actual
168'
169
3ecc7040
PT
170test_expect_success 'am --skip leaves index stat info alone' '
171 git checkout -f --orphan skip-stat-info &&
172 git reset &&
173 test_commit skip-should-be-untouched &&
0e496492 174 test-tool chmtime =0 skip-should-be-untouched.t &&
3ecc7040
PT
175 git update-index --refresh &&
176 git diff-files --exit-code --quiet &&
177 test_must_fail git am 0001-*.patch &&
178 git am --skip &&
179 git diff-files --exit-code --quiet
180'
181
182test_expect_success 'am --abort leaves index stat info alone' '
183 git checkout -f --orphan abort-stat-info &&
184 git reset &&
185 test_commit abort-should-be-untouched &&
0e496492 186 test-tool chmtime =0 abort-should-be-untouched.t &&
3ecc7040
PT
187 git update-index --refresh &&
188 git diff-files --exit-code --quiet &&
189 test_must_fail git am 0001-*.patch &&
190 git am --abort &&
191 git diff-files --exit-code --quiet
192'
193
c5ead19e 194test_expect_success 'git am --abort return failed exit status when it fails' '
42b5e09d
EN
195 test_when_finished "rm -rf file-2/ && git reset --hard && git am --abort" &&
196 git checkout changes &&
197 git format-patch -1 --stdout conflicting >changes.mbox &&
198 test_must_fail git am --3way changes.mbox &&
199
200 git rm file-2 &&
201 mkdir file-2 &&
202 echo precious >file-2/somefile &&
203 test_must_fail git am --abort &&
204 test_path_is_dir file-2/
205'
206
207test_expect_success 'git am --abort cleans relevant files' '
208 git checkout changes &&
209 git format-patch -1 --stdout conflicting >changes.mbox &&
210 test_must_fail git am --3way changes.mbox &&
211
212 test_path_is_file new-file &&
213 echo further changes >>file-1 &&
214 echo change other file >>file-2 &&
215
216 # Abort, and expect the files touched by am to be reverted
217 git am --abort &&
218
219 test_path_is_missing new-file &&
220
221 # Files not involved in am operation are left modified
222 git diff --name-only changes >actual &&
223 test_write_lines file-2 >expect &&
224 test_cmp expect actual
225'
226
3e5057a8 227test_done