3 test_description
='am --abort'
7 test_expect_success setup
'
14 git add file-1 file-2 &&
15 git commit -m initial &&
20 echo $i >otherfile-$i &&
21 git add otherfile-$i &&
23 git commit -a -m $i || break
25 git format-patch --no-numbered initial &&
26 git checkout -b side initial &&
27 echo local change >file-2-expect
32 test_expect_success
"am$with3 stops at a patch that does not apply" '
34 git reset --hard initial &&
35 cp file-2-expect file-2 &&
37 test_must_fail git am$with3 000[1245]-*.patch &&
38 git log --pretty=tformat:%s >actual &&
43 test_cmp expect actual
46 test_expect_success
"am$with3 --skip continue after failed am$with3" '
47 test_must_fail git am$with3 --skip >output &&
48 test_i18ngrep "^Applying" output >output.applying &&
49 test_i18ngrep "^Applying: 6$" output.applying &&
50 test_i18ncmp file-2-expect file-2 &&
51 test ! -f .git/MERGE_RR
54 test_expect_success
"am --abort goes back after failed am$with3" '
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
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)" &&
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 --abort will keep the local commits intact' '
78 test_must_fail git am 0004-*.patch &&
79 test_commit unrelated &&
80 git rev-parse HEAD >expect &&
82 git rev-parse HEAD >actual &&
83 test_cmp expect actual
86 test_expect_success
'am -3 stops on conflict on unborn branch' '
87 git checkout -f --orphan orphan &&
90 test_must_fail git am -3 0003-*.patch &&
91 test 2 -eq $(git ls-files -u | wc -l) &&
92 test 4 = "$(cat otherfile-4)"
95 test_expect_success
'am -3 --skip clears index on unborn branch' '
96 test_path_is_dir .git/rebase-apply &&
97 echo tmpfile >tmpfile &&
100 test -z "$(git ls-files)" &&
101 test_path_is_missing otherfile-4 &&
102 test_path_is_missing tmpfile