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
|
2011-01-17 15:59:41 +03:00
|
|
|
gcc -g -fprofile-arcs -ftest-coverage ../darkhttpd.c || exit 1
|
|
|
|
# generates a.out, darkhttpd.gcno
|
|
|
|
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
|
2011-05-03 14:14:10 +04:00
|
|
|
# display usage statement
|
|
|
|
./a.out >/dev/null
|
2013-04-28 18:31:54 +04:00
|
|
|
|
|
|
|
# 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-04-28 18:31:54 +04:00
|
|
|
|
|
|
|
# run forward tests
|
|
|
|
./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-04-28 18:55:08 +04:00
|
|
|
# run no-server-id tests
|
|
|
|
./a.out $DIR --port $PORT --no-server-id >/dev/null &
|
|
|
|
PID=$!
|
|
|
|
kill -0 $PID || exit 1
|
|
|
|
python test_server_id.py
|
|
|
|
kill $PID
|
|
|
|
|
2013-04-28 15:45:14 +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
|