forked from mcallegari/qlcplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
unittest.sh
executable file
·182 lines (156 loc) · 4.49 KB
/
unittest.sh
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
#!/bin/bash
#############################################################################
# Engine tests
#############################################################################
CURRUSER=$(whoami)
TESTPREFIX=""
SLEEPCMD=""
HAS_XSERVER="0"
if [ "$CURRUSER" == "buildbot" ] || [ "$CURRUSER" == "abuild" ]; then
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="xvfb-run"
HAS_XSERVER="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
HAS_XSERVER="1"
fi
# no X server ? Let's look for xvfb. This is how Travis is setup
if [ -n "$TRAVIS" ]; then
HAS_XSERVER="1"
fi
fi
fi
# run xmllint on fixture definitions
pushd .
cd resources/fixtures/scripts
VALIDATION_ERRORS=$(./check)
popd
echo $VALIDATION_ERRORS
if [ "${VALIDATION_ERRORS}" ]; then
echo "Fixture definitions are not valid. Please fix before commit."
exit 1
fi
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
# Isolate just the test name
test=$(echo ${test} | sed 's/engine\/test\///')
$SLEEPCMD
# Execute the test
pushd .
cd ${TESTDIR}/${test}
$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
#############################################################################
if [ "$HAS_XSERVER" -eq "1" ]; 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
# Isolate just the test name
test=$(echo ${test} | sed 's/ui\/test\///')
$SLEEPCMD
# Execute the test
pushd .
cd ${TESTDIR}/${test}
DYLD_FALLBACK_LIBRARY_PATH=$DYLD_FALLBACK_LIBRARY_PATH:../../../engine/src:../../src \
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:../../../engine/src:../../src $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 .
cd plugins/enttecwing/test
$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 .
cd plugins/velleman/test
$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 .
cd plugins/midi/test
$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 .
cd plugins/artnet/test
$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."