chiark / gitweb /
pre-commit: port to python3
[fdroidserver.git] / hooks / pre-commit
1 #!/bin/bash
2 #
3 # Simple pre-commit hook to check that there are no errors in the fdroidserver
4 # source files.
5
6 # Redirect output to stderr.
7 exec 1>&2
8
9 files=`git diff-index --cached HEAD 2>&1 | sed 's/^:.*     //' | uniq | cut -b100-500`
10 if [ -z "$files" ]; then
11     PY_FILES="fdroid makebuildserver setup.py examples/*.py buildserver/*.py fdroidserver/*.py"
12     PY_TEST_FILES="tests/*.TestCase"
13     SH_FILES="hooks/pre-commit"
14     BASH_FILES="fd-commit jenkins-build docs/update.sh completion/bash-completion"
15     RB_FILES="buildserver/cookbooks/*/recipes/*.rb"
16 else
17     # if actually committing right now, then only run on the files
18     # that are going to be committed at this moment
19     PY_FILES=
20     PY_TEST_FILES=
21     SH_FILES=
22     BASH_FILES=
23     RB_FILES=
24
25     for f in $files; do
26         case $f in
27             *.py)
28                 PY_FILES+=" $f"
29                 ;;
30             *.TestCase)
31                 PY_TEST_FILES+=" $f"
32                 ;;
33             *.rb)
34                 RB_FILES+=" $f"
35                 ;;
36             *)
37                 if head -1 $f | grep '^#!/bin/sh' > /dev/null 2>&1; then
38                     SH_FILES+=" $f"
39                 elif head -1 $f | grep '^#!/bin/bash' > /dev/null 2>&1; then
40                     BASH_FILES+=" $f"
41                 elif head -1 $f | grep '^#!.*python' > /dev/null 2>&1; then
42                     PY_FILES+=" $f"
43                 fi
44                 ;;
45         esac
46     done
47 fi
48
49 # In the default configuration, the checks E123, E133, E226, E241 and E242 are
50 # ignored because they are not rules unanimously accepted
51 # On top of those, we ignore:
52 # * E501: line too long (82 > 79 characters)
53 #   - Recommended for readability but not enforced
54 #   - Some lines are awkward to wrap around a char limit
55 # * W503: line break before binary operator
56 #   - It's quite new
57 #   - Quite pedantic
58
59 PEP8_IGNORE="E123,E133,E226,E241,E242,E501,W503"
60
61 err() {
62         echo ERROR: "$@"
63         exit 1
64 }
65
66 warn() {
67         echo WARNING: "$@"
68 }
69
70 cmd_exists() {
71         command -v $1 1>/dev/null
72 }
73
74 if cmd_exists pyflakes-python3; then
75         PYFLAKES=pyflakes-python3
76 elif cmd_exists pyflakes; then
77         PYFLAKES=pyflakes
78 else
79         PYFLAKES=echo
80         warn "pyflakes is not installed, using dummy placeholder!"
81 fi
82
83 if cmd_exists pep8-python3; then
84         PEP8=pep8-python3
85 elif cmd_exists pep8; then
86         PEP8=pep8
87 else
88         err "pep8 is not installed!"
89 fi
90
91 if [ "$PY_FILES $PY_TEST_FILES" != " " ]; then
92     if ! $PYFLAKES $PY_FILES $PY_TEST_FILES; then
93         err "pyflakes tests failed!"
94     fi
95 fi
96
97 if [ "$PY_FILES" != "" ]; then
98     if ! $PEP8 --ignore=$PEP8_IGNORE $PY_FILES; then
99         err "pep8 tests failed!"
100     fi
101 fi
102
103 # The tests use a little hack in order to cleanly import the fdroidserver
104 # package locally like a regular package.  pep8 doesn't see that, so this
105 # makes pep8 skip E402 on the test files that need that hack.
106 if [ "$PY_TEST_FILES" != "" ]; then
107     if ! $PEP8 --ignore=$PEP8_IGNORE,E402 $PY_TEST_FILES; then
108         err "pep8 tests failed!"
109     fi
110 fi
111
112 for f in $SH_FILES; do
113         if ! dash -n $f; then
114                 err "dash tests failed!"
115         fi
116 done
117
118 for f in $BASH_FILES; do
119         if ! bash -n $f; then
120                 err "bash tests failed!"
121         fi
122 done
123
124 for f in $RB_FILES; do
125         if ! ruby -c $f 1>/dev/null; then
126                 err "ruby tests failed!"
127         fi
128 done
129
130 exit 0