summaryrefslogtreecommitdiff
path: root/check
blob: 5a18310a3ecd0c43215626ddd2b22b3dbe9b51cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
#!/bin/sh
#
# Run test suite for morph.
#
# Copyright (C) 2011-2013  Codethink Limited
# 
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
# 
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.


set -e


# Parse the command line.

full=false
while [ "$#" -gt 0 ]
do
    case "$1" in
        --full) full=true; shift ;;
        *) echo "ERROR: Unknown argument $1." 1>&2; exit 1 ;;
    esac
done


# Set PYTHONPATH to start with the current directory so that we always
# find the right version of it for the test suite.

case "$PYTHONPATH" in
    '') PYTHONPATH="$(pwd)" ;;
    *) PYTHONPATH="$(pwd):$PYTHONPATH" ;;
esac
export PYTHONPATH


# Clean up artifacts from previous (possibly failed) runs, build,
# and run the tests.

python setup.py clean check

HOME="$(pwd)/scripts"

cmdtest tests

if $full
then
    cmdtest tests.branching
else
    echo "NOT RUNNING test.branching"
fi

if $full
then
    cmdtest tests.merging
else
    echo "NOT RUNNING test.merging"
fi

cmdtest tests.deploy

# Building systems requires the 'filter' parameter of tarfile.TarFile.add():
# this was introduced in Python 2.7
if python --version 2>&1 | grep '^Python 2\.[78]' > /dev/null; then
    cmdtest tests.build
else
    echo "NOT RUNNING tests.build (requires Python 2.7)"
fi

# The as-root tests use YAML morphologies, so they require the PyYAML module.
if $full && [ $(whoami) = root ] && command -v mkfs.btrfs > /dev/null &&
    python -c "
import morphlib, sys
if not morphlib.got_yaml:
    sys.exit(1)
" > /dev/null 2>&1
then
    cmdtest tests.as-root
else
    echo "NOT RUNNING tests.as-root (requires PyYAML)"
fi

if [ -d .git ];
then
    echo "Checking copyright statements"
    git ls-files | xargs scripts/check-copyright-year
    
    echo 'Checking source code for silliness'
    git ls-files |
    grep -v '\.gz$' |
    grep -Ev 'tests[^/]*/.*\.std(out|err)' |
    grep -vF 'tests.build/build-system-autotools.script' |
    while read x
    do
        if tr -cd '\t' < "$x" | grep . > /dev/null
        then
            echo "ERROR: $x contains TAB characters" 1>&2
            grep -n -F "$(printf "\t")" "$x" 1>&2
            errors=1
        fi

        case "$x" in
            *)
                if awk 'length > 79' "$x" | grep . > /dev/null
                then
                    echo "ERROR: $x has lines longer than 79 chars" 1>&2
                    awk 'length > 79 { print NR, $0 }' "$x" 1>&2
                    errors=1
                fi
                ;;
        esac

        case "$x" in
            *.py)
                if head -1 "$x" | grep '^#!' > /dev/null
                then
                    echo "ERROR: $x has a hashbang" 1>&2
                    errors=1
                fi
                if grep except: "$x"
                then
                    echo "ERROR: $x has a bare except:" 1>&2
                    errors=1
                fi
                ;;
        esac
    done
fi
exit $errors