2007-12-08 13:29:47 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description='pre-commit hook'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
2007-12-10 08:42:45 +01:00
|
|
|
test_expect_success 'with no hook' '
|
2007-12-08 13:29:47 +01:00
|
|
|
|
2007-12-10 08:42:45 +01:00
|
|
|
echo "foo" > file &&
|
|
|
|
git add file &&
|
|
|
|
git commit -m "first"
|
|
|
|
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success '--no-verify with no hook' '
|
|
|
|
|
|
|
|
echo "bar" > file &&
|
|
|
|
git add file &&
|
|
|
|
git commit --no-verify -m "bar"
|
|
|
|
|
|
|
|
'
|
2007-12-08 13:29:47 +01:00
|
|
|
|
|
|
|
# now install hook that always succeeds
|
|
|
|
HOOKDIR="$(git rev-parse --git-dir)/hooks"
|
|
|
|
HOOK="$HOOKDIR/pre-commit"
|
|
|
|
mkdir -p "$HOOKDIR"
|
|
|
|
cat > "$HOOK" <<EOF
|
|
|
|
#!/bin/sh
|
|
|
|
exit 0
|
|
|
|
EOF
|
|
|
|
chmod +x "$HOOK"
|
|
|
|
|
2007-12-10 08:42:45 +01:00
|
|
|
test_expect_success 'with succeeding hook' '
|
|
|
|
|
|
|
|
echo "more" >> file &&
|
|
|
|
git add file &&
|
|
|
|
git commit -m "more"
|
2007-12-08 13:29:47 +01:00
|
|
|
|
2007-12-10 08:42:45 +01:00
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success '--no-verify with succeeding hook' '
|
|
|
|
|
|
|
|
echo "even more" >> file &&
|
|
|
|
git add file &&
|
|
|
|
git commit --no-verify -m "even more"
|
|
|
|
|
|
|
|
'
|
2007-12-08 13:29:47 +01:00
|
|
|
|
|
|
|
# now a hook that fails
|
|
|
|
cat > "$HOOK" <<EOF
|
|
|
|
#!/bin/sh
|
|
|
|
exit 1
|
|
|
|
EOF
|
|
|
|
|
2008-02-01 10:50:53 +01:00
|
|
|
test_expect_success 'with failing hook' '
|
2007-12-10 08:42:45 +01:00
|
|
|
|
|
|
|
echo "another" >> file &&
|
|
|
|
git add file &&
|
2008-07-12 17:47:52 +02:00
|
|
|
test_must_fail git commit -m "another"
|
2007-12-08 13:29:47 +01:00
|
|
|
|
2007-12-10 08:42:45 +01:00
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success '--no-verify with failing hook' '
|
|
|
|
|
|
|
|
echo "stuff" >> file &&
|
|
|
|
git add file &&
|
|
|
|
git commit --no-verify -m "stuff"
|
|
|
|
|
|
|
|
'
|
2007-12-08 13:29:47 +01:00
|
|
|
|
|
|
|
chmod -x "$HOOK"
|
2009-03-13 22:55:27 +01:00
|
|
|
test_expect_success POSIXPERM 'with non-executable hook' '
|
2007-12-10 08:42:45 +01:00
|
|
|
|
|
|
|
echo "content" >> file &&
|
|
|
|
git add file &&
|
|
|
|
git commit -m "content"
|
|
|
|
|
|
|
|
'
|
|
|
|
|
2009-03-13 22:55:27 +01:00
|
|
|
test_expect_success POSIXPERM '--no-verify with non-executable hook' '
|
2007-12-10 08:42:45 +01:00
|
|
|
|
|
|
|
echo "more content" >> file &&
|
|
|
|
git add file &&
|
|
|
|
git commit --no-verify -m "more content"
|
|
|
|
|
|
|
|
'
|
2011-06-02 11:26:25 +02:00
|
|
|
chmod +x "$HOOK"
|
|
|
|
|
|
|
|
# a hook that checks $GIT_PREFIX and succeeds inside the
|
|
|
|
# success/ subdirectory only
|
|
|
|
cat > "$HOOK" <<EOF
|
|
|
|
#!/bin/sh
|
|
|
|
test \$GIT_PREFIX = success/
|
|
|
|
EOF
|
|
|
|
|
|
|
|
test_expect_success 'with hook requiring GIT_PREFIX' '
|
|
|
|
|
|
|
|
echo "more content" >> file &&
|
|
|
|
git add file &&
|
|
|
|
mkdir success &&
|
|
|
|
(
|
|
|
|
cd success &&
|
|
|
|
git commit -m "hook requires GIT_PREFIX = success/"
|
|
|
|
) &&
|
|
|
|
rmdir success
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'with failing hook requiring GIT_PREFIX' '
|
|
|
|
|
|
|
|
echo "more content" >> file &&
|
|
|
|
git add file &&
|
|
|
|
mkdir fail &&
|
|
|
|
(
|
|
|
|
cd fail &&
|
|
|
|
test_must_fail git commit -m "hook must fail"
|
|
|
|
) &&
|
|
|
|
rmdir fail &&
|
|
|
|
git checkout -- file
|
|
|
|
'
|
2007-12-08 13:29:47 +01:00
|
|
|
|
2012-03-11 11:12:10 +01:00
|
|
|
test_expect_success 'check the author in hook' '
|
2012-03-11 11:51:32 +01:00
|
|
|
write_script "$HOOK" <<-\EOF &&
|
|
|
|
test "$GIT_AUTHOR_NAME" = "New Author" &&
|
|
|
|
test "$GIT_AUTHOR_EMAIL" = "newauthor@example.com"
|
|
|
|
EOF
|
|
|
|
test_must_fail git commit --allow-empty -m "by a.u.thor" &&
|
|
|
|
(
|
|
|
|
GIT_AUTHOR_NAME="New Author" &&
|
|
|
|
GIT_AUTHOR_EMAIL="newauthor@example.com" &&
|
|
|
|
export GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL &&
|
|
|
|
git commit --allow-empty -m "by new.author via env" &&
|
|
|
|
git show -s
|
|
|
|
) &&
|
|
|
|
git commit --author="New Author <newauthor@example.com>" \
|
|
|
|
--allow-empty -m "by new.author via command line" &&
|
|
|
|
git show -s
|
|
|
|
'
|
|
|
|
|
2007-12-08 13:29:47 +01:00
|
|
|
test_done
|