#!/bin/sh # # Copyright (c) 2010 Thomas Rast # test_description='Test the post-rewrite hook.' . ./test-lib.sh test_expect_success 'setup' ' test_commit A foo A && test_commit B foo B && test_commit C foo C && test_commit D foo D && git checkout A^0 && test_commit E bar E && test_commit F foo F && git checkout master ' mkdir .git/hooks cat >.git/hooks/post-rewrite < "$TRASH_DIRECTORY"/post-rewrite.args cat > "$TRASH_DIRECTORY"/post-rewrite.data EOF chmod u+x .git/hooks/post-rewrite clear_hook_input () { rm -f post-rewrite.args post-rewrite.data } verify_hook_input () { test_cmp expected.args "$TRASH_DIRECTORY"/post-rewrite.args && test_cmp expected.data "$TRASH_DIRECTORY"/post-rewrite.data } test_expect_success 'git commit --amend' ' clear_hook_input && echo "D new message" > newmsg && oldsha=$(git rev-parse HEAD^0) && git commit -Fnewmsg --amend && echo amend > expected.args && echo $oldsha $(git rev-parse HEAD^0) > expected.data && verify_hook_input ' test_expect_success 'git commit --amend --no-post-rewrite' ' clear_hook_input && echo "D new message again" > newmsg && git commit --no-post-rewrite -Fnewmsg --amend && test ! -f post-rewrite.args && test ! -f post-rewrite.data ' test_expect_success 'git rebase' ' git reset --hard D && clear_hook_input && test_must_fail git rebase --onto A B && echo C > foo && git add foo && git rebase --continue && echo rebase >expected.args && cat >expected.data < foo && git add foo && git rebase --continue && echo rebase >expected.args && cat >expected.data <expected.args && cat >expected.data < foo && git add foo && git rebase --continue && echo rebase >expected.args && cat >expected.data < foo && git add foo && git rebase --continue && echo rebase >expected.args && cat >expected.data < foo && git add foo && git rebase --continue && echo rebase >expected.args && cat >expected.data < foo && git add foo && git rebase --continue && echo rebase >expected.args && cat >expected.data < foo && git add foo && git rebase --continue && echo rebase >expected.args && cat >expected.data <expected.args && cat >expected.data < foo && git add foo && git rebase --continue && echo rebase >expected.args && cat >expected.data <