3 test_description
='auto squash'
7 .
"$TEST_DIRECTORY"/lib-rebase.sh
9 test_expect_success setup
'
13 git commit -m "initial commit" &&
18 git commit -m "first commit" &&
19 git tag first-commit &&
23 git commit -m "second commit" &&
28 git
reset --hard base
&&
32 git commit
-m "fixup! first" &&
36 git rebase
$2 -i HEAD^^^
&&
37 git log
--oneline >actual
&&
38 test_line_count
= 3 actual
&&
39 git
diff --exit-code $1 &&
40 test 1 = "$(git cat-file blob HEAD^:file1)" &&
41 test 1 = $
(git cat-file commit HEAD^ |
grep first |
wc -l)
44 test_expect_success
'auto fixup (option)' '
45 test_auto_fixup final-fixup-option --autosquash
48 test_expect_success
'auto fixup (config)' '
49 git config rebase.autosquash true &&
50 test_auto_fixup final-fixup-config-true &&
51 test_must_fail test_auto_fixup fixup-config-true-no --no-autosquash &&
52 git config rebase.autosquash false &&
53 test_must_fail test_auto_fixup final-fixup-config-false
57 git
reset --hard base
&&
61 git commit
-m "squash! first" &&
65 git rebase
$2 -i HEAD^^^
&&
66 git log
--oneline >actual
&&
67 test_line_count
= 3 actual
&&
68 git
diff --exit-code $1 &&
69 test 1 = "$(git cat-file blob HEAD^:file1)" &&
70 test 2 = $
(git cat-file commit HEAD^ |
grep first |
wc -l)
73 test_expect_success
'auto squash (option)' '
74 test_auto_squash final-squash --autosquash
77 test_expect_success
'auto squash (config)' '
78 git config rebase.autosquash true &&
79 test_auto_squash final-squash-config-true &&
80 test_must_fail test_auto_squash squash-config-true-no --no-autosquash &&
81 git config rebase.autosquash false &&
82 test_must_fail test_auto_squash final-squash-config-false
85 test_expect_success
'misspelled auto squash' '
86 git reset --hard base &&
90 git commit -m "squash! forst" &&
91 git tag final-missquash &&
93 git rebase --autosquash -i HEAD^^^ &&
94 git log --oneline >actual &&
95 test_line_count = 4 actual &&
96 git diff --exit-code final-missquash &&
97 test 0 = $(git rev-list final-missquash...HEAD | wc -l)
100 test_expect_success
'auto squash that matches 2 commits' '
101 git reset --hard base &&
105 git commit -m "first new commit" &&
109 git commit -m "squash! first" &&
110 git tag final-multisquash &&
112 git rebase --autosquash -i HEAD~4 &&
113 git log --oneline >actual &&
114 test_line_count = 4 actual &&
115 git diff --exit-code final-multisquash &&
116 test 1 = "$(git cat-file blob HEAD^^:file1)" &&
117 test 2 = $(git cat-file commit HEAD^^ | grep first | wc -l) &&
118 test 1 = $(git cat-file commit HEAD | grep first | wc -l)
121 test_expect_success
'auto squash that matches a commit after the squash' '
122 git reset --hard base &&
126 git commit -m "squash! third" &&
130 git commit -m "third commit" &&
131 git tag final-presquash &&
133 git rebase --autosquash -i HEAD~4 &&
134 git log --oneline >actual &&
135 test_line_count = 5 actual &&
136 git diff --exit-code final-presquash &&
137 test 0 = "$(git cat-file blob HEAD^^:file1)" &&
138 test 1 = "$(git cat-file blob HEAD^:file1)" &&
139 test 1 = $(git cat-file commit HEAD | grep third | wc -l) &&
140 test 1 = $(git cat-file commit HEAD^ | grep third | wc -l)
142 test_expect_success
'auto squash that matches a sha1' '
143 git reset --hard base &&
147 git commit -m "squash! $(git rev-parse --short HEAD^)" &&
148 git tag final-shasquash &&
150 git rebase --autosquash -i HEAD^^^ &&
151 git log --oneline >actual &&
152 test_line_count = 3 actual &&
153 git diff --exit-code final-shasquash &&
154 test 1 = "$(git cat-file blob HEAD^:file1)" &&
155 test 1 = $(git cat-file commit HEAD^ | grep squash | wc -l)
158 test_expect_success
'auto squash that matches longer sha1' '
159 git reset --hard base &&
163 git commit -m "squash! $(git rev-parse --short=11 HEAD^)" &&
164 git tag final-longshasquash &&
166 git rebase --autosquash -i HEAD^^^ &&
167 git log --oneline >actual &&
168 test_line_count = 3 actual &&
169 git diff --exit-code final-longshasquash &&
170 test 1 = "$(git cat-file blob HEAD^:file1)" &&
171 test 1 = $(git cat-file commit HEAD^ | grep squash | wc -l)
174 test_auto_commit_flags
() {
175 git
reset --hard base
&&
179 git commit
--$1 first-commit
&&
180 git tag final-commit-
$1 &&
182 git rebase
--autosquash -i HEAD^^^
&&
183 git log
--oneline >actual
&&
184 test_line_count
= 3 actual
&&
185 git
diff --exit-code final-commit-
$1 &&
186 test 1 = "$(git cat-file blob HEAD^:file1)" &&
187 test $2 = $
(git cat-file commit HEAD^ |
grep first |
wc -l)
190 test_expect_success
'use commit --fixup' '
191 test_auto_commit_flags fixup 1
194 test_expect_success
'use commit --squash' '
195 test_auto_commit_flags squash 2
198 test_auto_fixup_fixup
() {
199 git
reset --hard base
&&
203 git commit
-m "$1! first" &&
207 git commit
-m "$1! $2! first" &&
208 git tag
"final-$1-$2" &&
211 set_cat_todo_editor
&&
212 test_must_fail git rebase
--autosquash -i HEAD^^^^
>actual
&&
213 cat >expected
<<-EOF &&
214 pick $(git rev-parse --short HEAD^^^) first commit
215 $1 $(git rev-parse --short HEAD^) $1! first
216 $1 $(git rev-parse --short HEAD) $1! $2! first
217 pick $(git rev-parse --short HEAD^^) second commit
219 test_cmp expected actual
221 git rebase
--autosquash -i HEAD^^^^
&&
222 git log
--oneline >actual
&&
223 test_line_count
= 3 actual
224 git
diff --exit-code "final-$1-$2" &&
225 test 2 = "$(git cat-file blob HEAD^:file1)" &&
226 if test "$1" = "fixup"
228 test 1 = $
(git cat-file commit HEAD^ |
grep first |
wc -l)
229 elif test "$1" = "squash"
231 test 3 = $
(git cat-file commit HEAD^ |
grep first |
wc -l)
237 test_expect_success
'fixup! fixup!' '
238 test_auto_fixup_fixup fixup fixup
241 test_expect_success
'fixup! squash!' '
242 test_auto_fixup_fixup fixup squash
245 test_expect_success
'squash! squash!' '
246 test_auto_fixup_fixup squash squash
249 test_expect_success
'squash! fixup!' '
250 test_auto_fixup_fixup squash fixup