2009-12-08 04:13:14 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description='auto squash'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
test_expect_success setup '
|
|
|
|
echo 0 >file0 &&
|
|
|
|
git add . &&
|
|
|
|
test_tick &&
|
|
|
|
git commit -m "initial commit" &&
|
|
|
|
echo 0 >file1 &&
|
|
|
|
echo 2 >file2 &&
|
|
|
|
git add . &&
|
|
|
|
test_tick &&
|
|
|
|
git commit -m "first commit" &&
|
|
|
|
echo 3 >file3 &&
|
|
|
|
git add . &&
|
|
|
|
test_tick &&
|
|
|
|
git commit -m "second commit" &&
|
|
|
|
git tag base
|
|
|
|
'
|
|
|
|
|
2010-07-14 13:59:57 +02:00
|
|
|
test_auto_fixup() {
|
2009-12-08 04:13:14 +01:00
|
|
|
git reset --hard base &&
|
|
|
|
echo 1 >file1 &&
|
|
|
|
git add -u &&
|
|
|
|
test_tick &&
|
2010-10-01 23:19:19 +02:00
|
|
|
git commit -m "fixup! first" &&
|
2009-12-08 04:13:14 +01:00
|
|
|
|
2010-07-14 13:59:57 +02:00
|
|
|
git tag $1 &&
|
2009-12-08 04:13:14 +01:00
|
|
|
test_tick &&
|
2010-07-14 13:59:57 +02:00
|
|
|
git rebase $2 -i HEAD^^^ &&
|
2009-12-08 04:13:14 +01:00
|
|
|
git log --oneline >actual &&
|
|
|
|
test 3 = $(wc -l <actual) &&
|
2010-07-14 13:59:57 +02:00
|
|
|
git diff --exit-code $1 &&
|
2009-12-08 04:13:14 +01:00
|
|
|
test 1 = "$(git cat-file blob HEAD^:file1)" &&
|
|
|
|
test 1 = $(git cat-file commit HEAD^ | grep first | wc -l)
|
2010-07-14 13:59:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
test_expect_success 'auto fixup (option)' '
|
|
|
|
test_auto_fixup final-fixup-option --autosquash
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'auto fixup (config)' '
|
|
|
|
git config rebase.autosquash true &&
|
|
|
|
test_auto_fixup final-fixup-config-true &&
|
|
|
|
test_must_fail test_auto_fixup fixup-config-true-no --no-autosquash &&
|
|
|
|
git config rebase.autosquash false &&
|
|
|
|
test_must_fail test_auto_fixup final-fixup-config-false
|
2009-12-08 04:13:14 +01:00
|
|
|
'
|
|
|
|
|
2010-07-14 13:59:57 +02:00
|
|
|
test_auto_squash() {
|
2009-12-08 04:13:14 +01:00
|
|
|
git reset --hard base &&
|
|
|
|
echo 1 >file1 &&
|
|
|
|
git add -u &&
|
|
|
|
test_tick &&
|
2010-10-01 23:19:19 +02:00
|
|
|
git commit -m "squash! first" &&
|
2009-12-08 04:13:14 +01:00
|
|
|
|
2010-07-14 13:59:57 +02:00
|
|
|
git tag $1 &&
|
2009-12-08 04:13:14 +01:00
|
|
|
test_tick &&
|
2010-07-14 13:59:57 +02:00
|
|
|
git rebase $2 -i HEAD^^^ &&
|
2009-12-08 04:13:14 +01:00
|
|
|
git log --oneline >actual &&
|
|
|
|
test 3 = $(wc -l <actual) &&
|
2010-07-14 13:59:57 +02:00
|
|
|
git diff --exit-code $1 &&
|
2009-12-08 04:13:14 +01:00
|
|
|
test 1 = "$(git cat-file blob HEAD^:file1)" &&
|
|
|
|
test 2 = $(git cat-file commit HEAD^ | grep first | wc -l)
|
2010-07-14 13:59:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
test_expect_success 'auto squash (option)' '
|
|
|
|
test_auto_squash final-squash --autosquash
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'auto squash (config)' '
|
|
|
|
git config rebase.autosquash true &&
|
|
|
|
test_auto_squash final-squash-config-true &&
|
|
|
|
test_must_fail test_auto_squash squash-config-true-no --no-autosquash &&
|
|
|
|
git config rebase.autosquash false &&
|
|
|
|
test_must_fail test_auto_squash final-squash-config-false
|
2009-12-08 04:13:14 +01:00
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'misspelled auto squash' '
|
|
|
|
git reset --hard base &&
|
|
|
|
echo 1 >file1 &&
|
|
|
|
git add -u &&
|
|
|
|
test_tick &&
|
2010-10-01 23:19:19 +02:00
|
|
|
git commit -m "squash! forst" &&
|
2009-12-08 04:13:14 +01:00
|
|
|
git tag final-missquash &&
|
|
|
|
test_tick &&
|
|
|
|
git rebase --autosquash -i HEAD^^^ &&
|
|
|
|
git log --oneline >actual &&
|
|
|
|
test 4 = $(wc -l <actual) &&
|
|
|
|
git diff --exit-code final-missquash &&
|
|
|
|
test 0 = $(git rev-list final-missquash...HEAD | wc -l)
|
|
|
|
'
|
|
|
|
|
|
|
|
test_done
|