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"
|
2007-12-10 08:42:45 +01:00
|
|
|
test_expect_success 'with non-executable hook' '
|
|
|
|
|
|
|
|
echo "content" >> file &&
|
|
|
|
git add file &&
|
|
|
|
git commit -m "content"
|
|
|
|
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success '--no-verify with non-executable hook' '
|
|
|
|
|
|
|
|
echo "more content" >> file &&
|
|
|
|
git add file &&
|
|
|
|
git commit --no-verify -m "more content"
|
|
|
|
|
|
|
|
'
|
2007-12-08 13:29:47 +01:00
|
|
|
|
|
|
|
test_done
|