2011-01-17 15:59:41 +03:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2013-06-10 12:52:38 +04:00
|
|
|
# Build a coverage-enabled darkhttpd, run unit tests and calculate coverage.
|
2011-01-17 15:59:41 +03:00
|
|
|
#
|
2013-04-28 15:45:14 +04:00
|
|
|
cd $(dirname $0)
|
2011-01-17 15:59:41 +03:00
|
|
|
DIR=tmp.httpd.tests
|
|
|
|
PORT=12346
|
|
|
|
|
|
|
|
if [ ! -e test.py ]; then
|
|
|
|
echo "can't find test.py, aborting" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
2011-05-03 14:11:09 +04:00
|
|
|
if [ \( ! -x a.out \) -o \( ../darkhttpd.c -nt a.out \) ]; then
|
2013-06-10 14:41:46 +04:00
|
|
|
echo "===> building a.out, darkhttpd.gcno"
|
2011-01-17 15:59:41 +03:00
|
|
|
gcc -g -fprofile-arcs -ftest-coverage ../darkhttpd.c || exit 1
|
|
|
|
fi
|
|
|
|
if [ -e $DIR ]; then
|
|
|
|
rm -rf $DIR || exit 1
|
|
|
|
fi
|
|
|
|
mkdir $DIR || exit 1
|
2011-04-16 13:15:32 +04:00
|
|
|
rm -f darkhttpd.gcda darkhttpd.log
|
2013-06-10 14:41:46 +04:00
|
|
|
|
|
|
|
echo "===> run usage statement"
|
2011-05-03 14:14:10 +04:00
|
|
|
./a.out >/dev/null
|
2013-04-28 18:31:54 +04:00
|
|
|
|
2013-06-10 14:41:46 +04:00
|
|
|
echo "===> run tests against a basic instance (generates darkhttpd.gcda)"
|
2013-04-28 18:55:08 +04:00
|
|
|
./a.out $DIR --port $PORT --log darkhttpd.log >/dev/null &
|
2011-01-17 15:59:41 +03:00
|
|
|
PID=$!
|
|
|
|
kill -0 $PID || exit 1
|
|
|
|
python test.py
|
|
|
|
kill $PID
|
2013-06-10 14:41:46 +04:00
|
|
|
wait $PID
|
2013-04-28 18:31:54 +04:00
|
|
|
|
2013-06-10 14:41:46 +04:00
|
|
|
echo "===> run forwarding tests"
|
2013-04-28 18:31:54 +04:00
|
|
|
./a.out $DIR --port $PORT \
|
|
|
|
--forward example.com http://www.example.com \
|
2013-04-28 18:55:08 +04:00
|
|
|
--forward secure.example.com https://www.example.com/secure >/dev/null &
|
2013-04-28 18:31:54 +04:00
|
|
|
PID=$!
|
|
|
|
kill -0 $PID || exit 1
|
|
|
|
python test_forward.py
|
|
|
|
kill $PID
|
2013-06-10 14:41:46 +04:00
|
|
|
wait $PID
|
2013-04-28 18:31:54 +04:00
|
|
|
|
2013-06-10 14:41:46 +04:00
|
|
|
echo "===> run no-server-id tests"
|
2013-04-28 18:55:08 +04:00
|
|
|
./a.out $DIR --port $PORT --no-server-id >/dev/null &
|
|
|
|
PID=$!
|
|
|
|
kill -0 $PID || exit 1
|
|
|
|
python test_server_id.py
|
|
|
|
kill $PID
|
2013-06-10 14:41:46 +04:00
|
|
|
wait $PID
|
|
|
|
|
|
|
|
echo "===> run mimemap tests"
|
|
|
|
echo "test/type1 a1" > $DIR/mimemap
|
|
|
|
echo "test/this-gets-replaced ap2" >> $DIR/mimemap
|
|
|
|
echo "# this is a comment" >> $DIR/mimemap
|
|
|
|
printf "test/type3\\tapp3\n" >> $DIR/mimemap
|
|
|
|
echo "test/type2 ap2" >> $DIR/mimemap
|
|
|
|
./a.out $DIR --port $PORT --mimetypes $DIR/mimemap >/dev/null &
|
|
|
|
PID=$!
|
|
|
|
kill -0 $PID || exit 1
|
|
|
|
python test_mimemap.py
|
|
|
|
kill $PID
|
|
|
|
wait $PID
|
2013-04-28 18:55:08 +04:00
|
|
|
|
2013-06-10 14:41:46 +04:00
|
|
|
echo "===> generating darkhttpd.c.gcov report"
|
2011-01-17 15:59:41 +03:00
|
|
|
gcov darkhttpd
|
2013-04-28 15:45:14 +04:00
|
|
|
rm -rf $DIR
|
|
|
|
rm -f darkhttpd.gcda darkhttpd.gcno darkhttpd.log a.out
|
|
|
|
echo done
|