Start the 2.46 cycle
[alt-git.git] / t / t4151-am-abort.sh
blobedb38da7010d33315f02a345a076ef803d460a32
1 #!/bin/sh
3 test_description='am --abort'
5 . ./test-lib.sh
7 test_expect_success setup '
8 test_write_lines a b c d e f g >file-1 &&
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 &&
14 git format-patch --stdout --root initial >initial.patch &&
15 for i in 2 3 4 5 6
17 echo $i >>file-1 &&
18 echo $i >otherfile-$i &&
19 git add otherfile-$i &&
20 test_tick &&
21 git commit -a -m $i || return 1
22 done &&
23 git branch changes &&
24 git format-patch --no-numbered initial &&
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 &&
30 git checkout -b side initial &&
31 echo local change >file-2-expect
34 for with3 in '' ' -3'
36 test_expect_success "am$with3 stops at a patch that does not apply" '
38 git reset --hard initial &&
39 cp file-2-expect file-2 &&
41 test_must_fail git am$with3 000[1245]-*.patch &&
42 git log --pretty=tformat:%s >actual &&
43 test_write_lines 3 2 initial >expect &&
44 test_cmp expect actual
47 test_expect_success "am$with3 --skip continue after failed am$with3" '
48 test_must_fail git am$with3 --skip >output &&
49 test_grep "^Applying: 6$" output &&
50 test_cmp file-2-expect file-2 &&
51 test ! -f .git/MERGE_RR
54 test_expect_success "am --abort goes back after failed am$with3" '
55 git am --abort &&
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 &&
61 test ! -f .git/MERGE_RR
64 done
66 test_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 &&
73 test -z "$(git ls-files -u)" &&
74 test_path_is_missing otherfile-4
77 test_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 &&
84 test -z "$(git ls-files -u)" &&
85 test_path_is_missing otherfile-4
88 test_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
97 test_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
112 test_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)"
121 test_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
131 test_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
143 test_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)"
159 test_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
170 test_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 &&
174 test-tool chmtime =0 skip-should-be-untouched.t &&
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
182 test_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 &&
186 test-tool chmtime =0 abort-should-be-untouched.t &&
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
194 test_expect_success 'git am --abort return failed exit status when it fails' '
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 &&
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/
207 test_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 &&
212 test_path_is_file new-file &&
213 echo further changes >>file-1 &&
214 echo change other file >>file-2 &&
216 # Abort, and expect the files touched by am to be reverted
217 git am --abort &&
219 test_path_is_missing new-file &&
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
227 test_done