blob: 9473c2779ef0df109f6943a949583676ea5ceabf [file] [log] [blame]
Nanako Shiraishi3e5057a2008-07-16 19:39:10 +09001#!/bin/sh
2
3test_description='am --abort'
4
5. ./test-lib.sh
6
7test_expect_success setup '
8 for i in a b c d e f g
9 do
10 echo $i
11 done >file-1 &&
12 cp file-1 file-2 &&
13 test_tick &&
14 git add file-1 file-2 &&
15 git commit -m initial &&
16 git tag initial &&
Paul Tane06764c2015-06-06 19:46:11 +080017 git format-patch --stdout --root initial >initial.patch &&
Olivier Marin95f8ebb2008-07-21 15:39:06 +020018 for i in 2 3 4 5 6
Nanako Shiraishi3e5057a2008-07-16 19:39:10 +090019 do
20 echo $i >>file-1 &&
Olivier Marin9944d1a2008-07-24 14:44:40 +020021 echo $i >otherfile-$i &&
22 git add otherfile-$i &&
Nanako Shiraishi3e5057a2008-07-16 19:39:10 +090023 test_tick &&
Jeff Kinge6821d02015-03-25 01:29:52 -040024 git commit -a -m $i || return 1
Nanako Shiraishi3e5057a2008-07-16 19:39:10 +090025 done &&
Brian Gernhardta567fdc2008-10-02 16:55:39 -040026 git format-patch --no-numbered initial &&
Nanako Shiraishi3e5057a2008-07-16 19:39:10 +090027 git checkout -b side initial &&
28 echo local change >file-2-expect
29'
30
31for with3 in '' ' -3'
32do
33 test_expect_success "am$with3 stops at a patch that does not apply" '
34
35 git reset --hard initial &&
36 cp file-2-expect file-2 &&
37
Olivier Marin95f8ebb2008-07-21 15:39:06 +020038 test_must_fail git am$with3 000[1245]-*.patch &&
Nanako Shiraishi3e5057a2008-07-16 19:39:10 +090039 git log --pretty=tformat:%s >actual &&
40 for i in 3 2 initial
41 do
42 echo $i
43 done >expect &&
44 test_cmp expect actual
45 '
46
Olivier Marin95f8ebb2008-07-21 15:39:06 +020047 test_expect_success "am$with3 --skip continue after failed am$with3" '
Nanako Shiraishi3604e7c2008-09-03 17:59:29 +090048 test_must_fail git am$with3 --skip >output &&
Ævar Arnfjörð Bjarmasondff1a982011-05-21 18:43:52 +000049 test_i18ngrep "^Applying" output >output.applying &&
50 test_i18ngrep "^Applying: 6$" output.applying &&
51 test_i18ncmp file-2-expect file-2 &&
Jay Soffian3ca399d2010-07-14 13:18:11 -040052 test ! -f .git/MERGE_RR
Olivier Marin95f8ebb2008-07-21 15:39:06 +020053 '
54
Nanako Shiraishi3e5057a2008-07-16 19:39:10 +090055 test_expect_success "am --abort goes back after failed am$with3" '
Nanako Shiraishi3604e7c2008-09-03 17:59:29 +090056 git am --abort &&
Nanako Shiraishi3e5057a2008-07-16 19:39:10 +090057 git rev-parse HEAD >actual &&
58 git rev-parse initial >expect &&
59 test_cmp expect actual &&
60 test_cmp file-2-expect file-2 &&
61 git diff-index --exit-code --cached HEAD &&
Jay Soffian3ca399d2010-07-14 13:18:11 -040062 test ! -f .git/MERGE_RR
Nanako Shiraishi3e5057a2008-07-16 19:39:10 +090063 '
64
65done
66
Paul Tan88d50722015-06-06 19:46:07 +080067test_expect_success 'am -3 --skip removes otherfile-4' '
68 git reset --hard initial &&
69 test_must_fail git am -3 0003-*.patch &&
70 test 3 -eq $(git ls-files -u | wc -l) &&
71 test 4 = "$(cat otherfile-4)" &&
72 git am --skip &&
73 test_cmp_rev initial HEAD &&
Paul Tan20c3fe72015-06-06 19:46:10 +080074 test -z "$(git ls-files -u)" &&
75 test_path_is_missing otherfile-4
76'
77
78test_expect_success 'am -3 --abort removes otherfile-4' '
79 git reset --hard initial &&
80 test_must_fail git am -3 0003-*.patch &&
81 test 3 -eq $(git ls-files -u | wc -l) &&
82 test 4 = "$(cat otherfile-4)" &&
83 git am --abort &&
84 test_cmp_rev initial HEAD &&
Armin Kunaschik2bb05182016-05-09 11:57:25 -070085 test -z "$(git ls-files -u)" &&
Paul Tan88d50722015-06-06 19:46:07 +080086 test_path_is_missing otherfile-4
87'
88
Junio C Hamano7b3b7e32010-12-21 10:35:53 -080089test_expect_success 'am --abort will keep the local commits intact' '
90 test_must_fail git am 0004-*.patch &&
91 test_commit unrelated &&
92 git rev-parse HEAD >expect &&
93 git am --abort &&
94 git rev-parse HEAD >actual &&
95 test_cmp expect actual
96'
97
Paul Tan528484c2015-07-19 23:49:09 +080098test_expect_success 'am --abort will keep dirty index intact' '
99 git reset --hard initial &&
100 echo dirtyfile >dirtyfile &&
101 cp dirtyfile dirtyfile.expected &&
102 git add dirtyfile &&
103 test_must_fail git am 0001-*.patch &&
104 test_cmp_rev initial HEAD &&
105 test_path_is_file dirtyfile &&
106 test_cmp dirtyfile.expected dirtyfile &&
107 git am --abort &&
108 test_cmp_rev initial HEAD &&
109 test_path_is_file dirtyfile &&
110 test_cmp dirtyfile.expected dirtyfile
111'
112
Paul Tan2c970c92015-06-06 19:46:08 +0800113test_expect_success 'am -3 stops on conflict on unborn branch' '
114 git checkout -f --orphan orphan &&
115 git reset &&
116 rm -f otherfile-4 &&
117 test_must_fail git am -3 0003-*.patch &&
118 test 2 -eq $(git ls-files -u | wc -l) &&
119 test 4 = "$(cat otherfile-4)"
120'
121
Paul Tanf8da6802015-06-06 19:46:09 +0800122test_expect_success 'am -3 --skip clears index on unborn branch' '
123 test_path_is_dir .git/rebase-apply &&
124 echo tmpfile >tmpfile &&
125 git add tmpfile &&
126 git am --skip &&
127 test -z "$(git ls-files)" &&
128 test_path_is_missing otherfile-4 &&
129 test_path_is_missing tmpfile
130'
131
Paul Tan20c3fe72015-06-06 19:46:10 +0800132test_expect_success 'am -3 --abort removes otherfile-4 on unborn branch' '
133 git checkout -f --orphan orphan &&
134 git reset &&
135 rm -f otherfile-4 file-1 &&
136 test_must_fail git am -3 0003-*.patch &&
137 test 2 -eq $(git ls-files -u | wc -l) &&
138 test 4 = "$(cat otherfile-4)" &&
139 git am --abort &&
140 test -z "$(git ls-files -u)" &&
141 test_path_is_missing otherfile-4
142'
143
Paul Tane06764c2015-06-06 19:46:11 +0800144test_expect_success 'am -3 --abort on unborn branch removes applied commits' '
145 git checkout -f --orphan orphan &&
146 git reset &&
147 rm -f otherfile-4 otherfile-2 file-1 file-2 &&
148 test_must_fail git am -3 initial.patch 0003-*.patch &&
149 test 3 -eq $(git ls-files -u | wc -l) &&
150 test 4 = "$(cat otherfile-4)" &&
151 git am --abort &&
152 test -z "$(git ls-files -u)" &&
153 test_path_is_missing otherfile-4 &&
154 test_path_is_missing file-1 &&
155 test_path_is_missing file-2 &&
156 test 0 -eq $(git log --oneline 2>/dev/null | wc -l) &&
157 test refs/heads/orphan = "$(git symbolic-ref HEAD)"
158'
159
Paul Tan6ea3b672015-06-06 19:46:12 +0800160test_expect_success 'am --abort on unborn branch will keep local commits intact' '
161 git checkout -f --orphan orphan &&
162 git reset &&
163 test_must_fail git am 0004-*.patch &&
164 test_commit unrelated2 &&
165 git rev-parse HEAD >expect &&
166 git am --abort &&
167 git rev-parse HEAD >actual &&
168 test_cmp expect actual
169'
170
Paul Tan3ecc7042015-08-19 16:22:22 +0800171test_expect_success 'am --skip leaves index stat info alone' '
172 git checkout -f --orphan skip-stat-info &&
173 git reset &&
174 test_commit skip-should-be-untouched &&
175 test-chmtime =0 skip-should-be-untouched.t &&
176 git update-index --refresh &&
177 git diff-files --exit-code --quiet &&
178 test_must_fail git am 0001-*.patch &&
179 git am --skip &&
180 git diff-files --exit-code --quiet
181'
182
183test_expect_success 'am --abort leaves index stat info alone' '
184 git checkout -f --orphan abort-stat-info &&
185 git reset &&
186 test_commit abort-should-be-untouched &&
187 test-chmtime =0 abort-should-be-untouched.t &&
188 git update-index --refresh &&
189 git diff-files --exit-code --quiet &&
190 test_must_fail git am 0001-*.patch &&
191 git am --abort &&
192 git diff-files --exit-code --quiet
193'
194
Nanako Shiraishi3e5057a2008-07-16 19:39:10 +0900195test_done