| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- #!/bin/sh
- set -e
- TESTDIR=$(readlink -f $(dirname $0))
- . $TESTDIR/framework
- setupenvironment
- configarchitecture 'amd64'
- changetowebserver
- copysource() {
- dd if="$1" bs=1 count="$2" of="$3" 2>/dev/null
- touch -d "$(stat --format '%y' "${TESTFILE}")" "$3"
- }
- DOWNLOADLOG='rootdir/tmp/testdownloadfile.log'
- testdownloadfile() {
- rm -f "$DOWNLOADLOG"
- msgtest "Testing download of file $2 with" "$1"
- if ! downloadfile "$2" "$3" > "$DOWNLOADLOG"; then
- cat >&2 "$DOWNLOADLOG"
- msgfail
- else
- msgpass
- fi
- cat "$DOWNLOADLOG" | while read field hash; do
- local EXPECTED
- case "$field" in
- 'MD5Sum-Hash:') EXPECTED="$(md5sum "$TESTFILE" | cut -d' ' -f 1)";;
- 'SHA1-Hash:') EXPECTED="$(sha1sum "$TESTFILE" | cut -d' ' -f 1)";;
- 'SHA256-Hash:') EXPECTED="$(sha256sum "$TESTFILE" | cut -d' ' -f 1)";;
- 'SHA512-Hash:') EXPECTED="$(sha512sum "$TESTFILE" | cut -d' ' -f 1)";;
- *) continue;;
- esac
- if [ "$4" = '=' ]; then
- msgtest 'Test downloaded file for correct' "$field"
- else
- msgtest 'Test downloaded file does not match in' "$field"
- fi
- if [ "$EXPECTED" "$4" "$hash" ]; then
- msgpass
- else
- cat >&2 "$DOWNLOADLOG"
- msgfail "expected: $EXPECTED ; got: $hash"
- fi
- done
- }
- TESTFILE='aptarchive/testfile'
- cp -a ${TESTDIR}/framework $TESTFILE
- testrun() {
- webserverconfig 'aptwebserver::support::range' 'true'
- local DOWN='./downloaded/testfile'
- copysource $TESTFILE 0 $DOWN
- testdownloadfile 'no data' "${1}/testfile" "$DOWN" '='
- testwebserverlaststatuscode '200' "$DOWNLOADLOG"
- copysource $TESTFILE 20 $DOWN
- testdownloadfile 'valid partial data' "${1}/testfile" "$DOWN" '='
- testwebserverlaststatuscode '206' "$DOWNLOADLOG"
- copysource /dev/zero 20 $DOWN
- testdownloadfile 'invalid partial data' "${1}/testfile" "$DOWN" '!='
- testwebserverlaststatuscode '206' "$DOWNLOADLOG"
- copysource $TESTFILE 1M $DOWN
- testdownloadfile 'completely downloaded file' "${1}/testfile" "$DOWN" '='
- testwebserverlaststatuscode '416' "$DOWNLOADLOG"
- copysource /dev/zero 1M $DOWN
- testdownloadfile 'too-big partial file' "${1}/testfile" "$DOWN" '='
- testwebserverlaststatuscode '200' "$DOWNLOADLOG"
- copysource /dev/zero 20 $DOWN
- touch $DOWN
- testdownloadfile 'old data' "${1}/testfile" "$DOWN" '='
- testwebserverlaststatuscode '200' "$DOWNLOADLOG"
- webserverconfig 'aptwebserver::support::range' 'false'
- copysource $TESTFILE 20 $DOWN
- testdownloadfile 'no server support' "${1}/testfile" "$DOWN" '='
- testwebserverlaststatuscode '200' "$DOWNLOADLOG"
- }
- testrun 'http://localhost:8080'
- changetohttpswebserver
- testrun 'https://localhost:4433'
|