2016-02-03 14:48:40 +01:00
|
|
|
#!/bin/bash
|
2014-05-28 09:28:28 +02:00
|
|
|
#
|
2015-01-09 15:36:17 +01:00
|
|
|
# Simple pre-commit hook to check that there are no errors in the fdroidserver
|
|
|
|
# source files.
|
2014-05-28 09:28:28 +02:00
|
|
|
|
|
|
|
# Redirect output to stderr.
|
|
|
|
exec 1>&2
|
|
|
|
|
2016-02-03 14:48:40 +01:00
|
|
|
files=`git diff-index --cached HEAD 2>&1 | sed 's/^:.* //' | uniq | cut -b100-500`
|
2016-02-15 13:01:43 +01:00
|
|
|
if [ -z "$files" ]; then
|
2016-02-03 14:48:40 +01:00
|
|
|
PY_FILES="fdroid makebuildserver setup.py examples/*.py buildserver/*.py fdroidserver/*.py"
|
|
|
|
PY_TEST_FILES="tests/*.TestCase"
|
|
|
|
SH_FILES="hooks/pre-commit"
|
2017-02-13 22:36:28 +01:00
|
|
|
BASH_FILES="fd-commit jenkins-build completion/bash-completion buildserver/provision-*"
|
2016-09-12 13:05:05 +02:00
|
|
|
RB_FILES="buildserver/Vagrantfile"
|
2016-02-03 14:48:40 +01:00
|
|
|
else
|
|
|
|
# if actually committing right now, then only run on the files
|
|
|
|
# that are going to be committed at this moment
|
|
|
|
PY_FILES=
|
|
|
|
PY_TEST_FILES=
|
|
|
|
SH_FILES=
|
|
|
|
BASH_FILES=
|
|
|
|
RB_FILES=
|
|
|
|
|
|
|
|
for f in $files; do
|
2016-06-15 13:32:14 +02:00
|
|
|
test -e $f || continue
|
2016-02-03 14:48:40 +01:00
|
|
|
case $f in
|
|
|
|
*.py)
|
|
|
|
PY_FILES+=" $f"
|
|
|
|
;;
|
|
|
|
*.TestCase)
|
|
|
|
PY_TEST_FILES+=" $f"
|
|
|
|
;;
|
|
|
|
*.rb)
|
|
|
|
RB_FILES+=" $f"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
if head -1 $f | grep '^#!/bin/sh' > /dev/null 2>&1; then
|
|
|
|
SH_FILES+=" $f"
|
|
|
|
elif head -1 $f | grep '^#!/bin/bash' > /dev/null 2>&1; then
|
|
|
|
BASH_FILES+=" $f"
|
|
|
|
elif head -1 $f | grep '^#!.*python' > /dev/null 2>&1; then
|
|
|
|
PY_FILES+=" $f"
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
fi
|
2014-05-28 09:28:28 +02:00
|
|
|
|
2016-01-04 21:42:34 +01:00
|
|
|
# We ignore the following PEP8 warnings
|
|
|
|
# * E123: closing bracket does not match indentation of opening bracket's line
|
|
|
|
# - Broken if multiple indentation levels start on a single line
|
2015-02-08 06:58:24 +01:00
|
|
|
# * E501: line too long (82 > 79 characters)
|
|
|
|
# - Recommended for readability but not enforced
|
|
|
|
# - Some lines are awkward to wrap around a char limit
|
2015-03-05 15:24:52 +01:00
|
|
|
# * W503: line break before binary operator
|
|
|
|
# - Quite pedantic
|
2015-02-08 06:58:24 +01:00
|
|
|
|
2016-01-04 21:42:34 +01:00
|
|
|
PEP8_IGNORE="E123,E501,W503"
|
2015-02-08 06:58:24 +01:00
|
|
|
|
2014-11-09 14:34:24 +01:00
|
|
|
err() {
|
2016-07-13 13:07:03 +02:00
|
|
|
echo >&2 ERROR: "$@"
|
2014-11-09 14:34:24 +01:00
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
2016-02-15 16:25:43 +01:00
|
|
|
warn() {
|
2016-07-13 13:07:03 +02:00
|
|
|
echo >&2 WARNING: "$@"
|
2016-02-15 16:25:43 +01:00
|
|
|
}
|
|
|
|
|
2014-05-28 09:28:28 +02:00
|
|
|
cmd_exists() {
|
|
|
|
command -v $1 1>/dev/null
|
|
|
|
}
|
|
|
|
|
2016-01-15 00:19:11 +01:00
|
|
|
find_command() {
|
2016-07-13 13:14:19 +02:00
|
|
|
for name in $@; do
|
|
|
|
for suff in "3" "-python3" ""; do
|
|
|
|
cmd=${name}${suff}
|
|
|
|
if cmd_exists $cmd; then
|
|
|
|
echo $cmd
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
done
|
2016-01-15 00:19:11 +01:00
|
|
|
done
|
|
|
|
warn "$1 is not installed, using dummy placeholder!"
|
2016-07-13 13:14:19 +02:00
|
|
|
echo :
|
2016-01-15 00:19:11 +01:00
|
|
|
}
|
2014-05-28 09:28:28 +02:00
|
|
|
|
2016-01-15 00:19:11 +01:00
|
|
|
PYFLAKES=$(find_command pyflakes)
|
2016-07-13 13:14:19 +02:00
|
|
|
PEP8=$(find_command pycodestyle pep8)
|
2014-05-28 09:28:28 +02:00
|
|
|
|
2016-02-12 00:27:17 +01:00
|
|
|
if [ "$PY_FILES $PY_TEST_FILES" != " " ]; then
|
2016-02-03 14:48:40 +01:00
|
|
|
if ! $PYFLAKES $PY_FILES $PY_TEST_FILES; then
|
2014-11-09 14:36:58 +01:00
|
|
|
err "pyflakes tests failed!"
|
2016-02-03 14:48:40 +01:00
|
|
|
fi
|
2014-11-09 14:36:58 +01:00
|
|
|
fi
|
|
|
|
|
2016-02-12 00:27:17 +01:00
|
|
|
if [ "$PY_FILES" != "" ]; then
|
2016-02-03 14:48:40 +01:00
|
|
|
if ! $PEP8 --ignore=$PEP8_IGNORE $PY_FILES; then
|
2014-11-09 14:36:58 +01:00
|
|
|
err "pep8 tests failed!"
|
2016-02-03 14:48:40 +01:00
|
|
|
fi
|
2014-11-09 14:36:58 +01:00
|
|
|
fi
|
2014-09-18 19:56:11 +02:00
|
|
|
|
2015-09-01 20:10:01 +02:00
|
|
|
# The tests use a little hack in order to cleanly import the fdroidserver
|
|
|
|
# package locally like a regular package. pep8 doesn't see that, so this
|
|
|
|
# makes pep8 skip E402 on the test files that need that hack.
|
2016-02-12 00:27:17 +01:00
|
|
|
if [ "$PY_TEST_FILES" != "" ]; then
|
2016-02-03 14:48:40 +01:00
|
|
|
if ! $PEP8 --ignore=$PEP8_IGNORE,E402 $PY_TEST_FILES; then
|
2015-09-01 20:10:01 +02:00
|
|
|
err "pep8 tests failed!"
|
2016-02-03 14:48:40 +01:00
|
|
|
fi
|
2015-09-01 20:10:01 +02:00
|
|
|
fi
|
|
|
|
|
2014-11-09 14:31:50 +01:00
|
|
|
for f in $SH_FILES; do
|
2015-01-09 16:08:27 +01:00
|
|
|
if ! dash -n $f; then
|
|
|
|
err "dash tests failed!"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
for f in $BASH_FILES; do
|
2014-11-09 14:36:58 +01:00
|
|
|
if ! bash -n $f; then
|
|
|
|
err "bash tests failed!"
|
|
|
|
fi
|
2014-09-18 19:56:11 +02:00
|
|
|
done
|
|
|
|
|
2014-12-12 12:34:28 +01:00
|
|
|
for f in $RB_FILES; do
|
|
|
|
if ! ruby -c $f 1>/dev/null; then
|
|
|
|
err "ruby tests failed!"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2014-11-09 14:34:24 +01:00
|
|
|
exit 0
|