mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-11-10 07:12:03 +00:00
80 lines
1.8 KiB
Bash
80 lines
1.8 KiB
Bash
|
#!/bin/sh
|
|||
|
# $Id: testminiwget.sh,v 1.4 2011/05/09 08:53:15 nanard Exp $
|
|||
|
# project miniupnp : http://miniupnp.free.fr/
|
|||
|
# (c) 2011 Thomas Bernard
|
|||
|
#
|
|||
|
# test program for miniwget.c
|
|||
|
# is usually invoked by "make check"
|
|||
|
#
|
|||
|
# This test program :
|
|||
|
# 1 - launches a local HTTP server (minihttptestserver)
|
|||
|
# 2 - uses testminiwget to retreive data from this server
|
|||
|
# 3 - compares served and received data
|
|||
|
# 4 - kills the local HTTP server and exits
|
|||
|
#
|
|||
|
|
|||
|
HTTPSERVEROUT=/tmp/httpserverout
|
|||
|
EXPECTEDFILE=/tmp/expectedfile
|
|||
|
DOWNLOADEDFILE=/tmp/downloadedfile
|
|||
|
#ADDR=localhost
|
|||
|
ADDR="[::1]"
|
|||
|
PORT=
|
|||
|
RET=0
|
|||
|
|
|||
|
#make minihttptestserver
|
|||
|
#make testminiwget
|
|||
|
|
|||
|
# launching the test HTTP server
|
|||
|
./minihttptestserver -6 -e $EXPECTEDFILE > $HTTPSERVEROUT &
|
|||
|
while [ "$PORT" == "" ]; do
|
|||
|
PORT=`cat $HTTPSERVEROUT | sed 's/Listening on port \([0-9]*\)/\1/' `
|
|||
|
done
|
|||
|
echo "Test HTTP server is listening on $PORT"
|
|||
|
|
|||
|
URL1="http://$ADDR:$PORT/index.html"
|
|||
|
URL2="http://$ADDR:$PORT/chunked"
|
|||
|
URL3="http://$ADDR:$PORT/addcrap"
|
|||
|
|
|||
|
echo "standard test ..."
|
|||
|
./testminiwget $URL1 "${DOWNLOADEDFILE}.1"
|
|||
|
if cmp $EXPECTEDFILE "${DOWNLOADEDFILE}.1" ; then
|
|||
|
echo "ok"
|
|||
|
else
|
|||
|
echo "standard test FAILED"
|
|||
|
RET=1
|
|||
|
fi
|
|||
|
|
|||
|
echo "chunked transfert encoding test ..."
|
|||
|
./testminiwget $URL2 "${DOWNLOADEDFILE}.2"
|
|||
|
if cmp $EXPECTEDFILE "${DOWNLOADEDFILE}.2" ; then
|
|||
|
echo "ok"
|
|||
|
else
|
|||
|
echo "chunked transfert encoding test FAILED"
|
|||
|
RET=1
|
|||
|
fi
|
|||
|
|
|||
|
echo "response too long test ..."
|
|||
|
./testminiwget $URL3 "${DOWNLOADEDFILE}.3"
|
|||
|
if cmp $EXPECTEDFILE "${DOWNLOADEDFILE}.3" ; then
|
|||
|
echo "ok"
|
|||
|
else
|
|||
|
echo "response too long test FAILED"
|
|||
|
RET=1
|
|||
|
fi
|
|||
|
|
|||
|
# kill the test HTTP server
|
|||
|
kill %1
|
|||
|
wait %1
|
|||
|
|
|||
|
# remove temporary files (for success cases)
|
|||
|
if [ $RET -eq 0 ]; then
|
|||
|
rm -f "${DOWNLOADEDFILE}.1"
|
|||
|
rm -f "${DOWNLOADEDFILE}.2"
|
|||
|
rm -f "${DOWNLOADEDFILE}.3"
|
|||
|
rm -f $EXPECTEDFILE $HTTPSERVEROUT
|
|||
|
else
|
|||
|
echo "at least one of the test FAILED"
|
|||
|
fi
|
|||
|
exit $RET
|
|||
|
|