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 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
|
#!/bin/bash
CURRUSER=$(whoami)
TESTPREFIX=""
SLEEPCMD=""
RUN_UI_TESTS="0"
THISCMD=`basename "$0"`
TARGET=${1:-}
if [ "$TARGET" != "ui" ] && [ "$TARGET" != "qmlui" ]; then
echo >&2 "Usage: $THISCMD ui|qmlui"
exit 1
fi
if [ "$CURRUSER" == "runner" ] \
|| [ "$CURRUSER" == "buildbot" ] \
|| [ "$CURRUSER" == "abuild" ]; then
echo "Found build environment with CURRUSER='$CURRUSER' and OSTYPE='$OSTYPE'"
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
if [ $(which xvfb-run) == "" ]; then
echo "xvfb-run not found in this system. Please install with: sudo apt-get install xvfb"
exit
fi
TESTPREFIX="QT_QPA_PLATFORM=minimal xvfb-run --auto-servernum"
RUN_UI_TESTS="1"
# if we're running as build slave, set a sleep time to start/stop xvfb between tests
SLEEPCMD="sleep 1"
elif [[ "$OSTYPE" == "darwin"* ]]; then
echo "We're on OSX. Any prefix needed?"
fi
else
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
XPID=$(pidof X)
if [ ! ${#XPID} -gt 0 ]; then
XPID=$(pidof Xorg)
fi
if [ ${#XPID} -gt 0 ]; then
RUN_UI_TESTS="1"
fi
fi
fi
#############################################################################
# Fixture definitions check with xmllint
#############################################################################
pushd resources/fixtures/scripts
./check
RET=$?
popd
if [ $RET -ne 0 ]; then
echo "Fixture definitions are not valid. Please fix before commit."
exit $RET
fi
#############################################################################
# Engine tests
#############################################################################
TESTDIR=engine/test
TESTS=$(find ${TESTDIR} -maxdepth 1 -mindepth 1 -type d)
for test in ${TESTS}
do
# Ignore .git
if [ $(echo ${test} | grep ".git") ]; then
continue
fi
# Ignore CMakeFiles
if [ $(echo ${test} | grep "CMakeFiles") ]; then
continue
fi
# Isolate just the test name
test=$(echo ${test} | sed 's/engine\/test\///')
$SLEEPCMD
# Execute the test
pushd ${TESTDIR}/${test}
echo "$TESTPREFIX ./test.sh"
eval $TESTPREFIX ./test.sh
RESULT=${?}
popd
if [ ${RESULT} != 0 ]; then
echo "${RESULT} Engine unit tests failed. Please fix before commit."
exit ${RESULT}
fi
done
#############################################################################
# UI tests
#############################################################################
# Skip ui in qmlui mode
if [ "$RUN_UI_TESTS" -eq "1" ] && [ "$TARGET" != "qmlui" ]; then
TESTDIR=ui/test
TESTS=$(find ${TESTDIR} -maxdepth 1 -mindepth 1 -type d)
for test in ${TESTS}
do
# Ignore .git
if [ $(echo ${test} | grep ".git") ]; then
continue
fi
# Ignore CMakeFiles
if [ $(echo ${test} | grep "CMakeFiles") ]; then
continue
fi
# Isolate just the test name
test=$(echo ${test} | sed 's/ui\/test\///')
$SLEEPCMD
# Execute the test
pushd ${TESTDIR}/${test}
eval DYLD_FALLBACK_LIBRARY_PATH=../../../engine/src:../../src:$DYLD_FALLBACK_LIBRARY_PATH \
LD_LIBRARY_PATH=../../../engine/src:../../src:$LD_LIBRARY_PATH $TESTPREFIX ./${test}_test
RESULT=${?}
popd
if [ ${RESULT} != 0 ]; then
echo "${RESULT} UI unit tests failed. Please fix before commit."
exit ${RESULT}
fi
done
fi
#############################################################################
# Enttec wing tests
#############################################################################
$SLEEPCMD
pushd plugins/enttecwing/test
eval $TESTPREFIX ./test.sh
RESULT=$?
if [ $RESULT != 0 ]; then
echo "${RESULT} Enttec wing unit tests failed. Please fix before commit."
exit $RESULT
fi
popd
#############################################################################
# Velleman test
#############################################################################
if [[ "$OSTYPE" == "darwin"* ]]; then
echo "Skip Velleman test (not supported on OSX)"
else
$SLEEPCMD
pushd plugins/velleman/test
eval $TESTPREFIX ./test.sh
RESULT=$?
if [ $RESULT != 0 ]; then
echo "Velleman unit test failed ($RESULT). Please fix before commit."
exit $RESULT
fi
popd
fi
#############################################################################
# MIDI tests
#############################################################################
$SLEEPCMD
pushd plugins/midi/test
eval $TESTPREFIX ./test.sh
RESULT=$?
if [ $RESULT != 0 ]; then
echo "${RESULT} MIDI unit tests failed. Please fix before commit."
exit $RESULT
fi
popd
#############################################################################
# ArtNet tests
#############################################################################
$SLEEPCMD
pushd plugins/artnet/test
eval $TESTPREFIX ./test.sh
RESULT=$?
if [ $RESULT != 0 ]; then
echo "${RESULT} ArtNet unit tests failed. Please fix before commit."
exit $RESULT
fi
popd
#############################################################################
# Final judgment
#############################################################################
echo "Unit tests passed."
|