]> git.saurik.com Git - apt.git/blame - test/integration/test-partial-file-support
test: Use a file to determine TEST_DEFAULT_GROUP
[apt.git] / test / integration / test-partial-file-support
CommitLineData
fd46d305
DK
1#!/bin/sh
2set -e
3
3abb6a6a
DK
4TESTDIR="$(readlink -f "$(dirname "$0")")"
5. "$TESTDIR/framework"
fd46d305
DK
6setupenvironment
7configarchitecture 'amd64'
8
9changetowebserver
10
11copysource() {
12 dd if="$1" bs=1 count="$2" of="$3" 2>/dev/null
13 touch -d "$(stat --format '%y' "${TESTFILE}")" "$3"
14}
15
0d58c26a
DK
16DOWNLOADLOG='rootdir/tmp/testdownloadfile.log'
17
fd46d305 18testdownloadfile() {
0d58c26a 19 rm -f "$DOWNLOADLOG"
dcbb364f
DK
20 msgtest "Testing download of file $2 with" "$1 $5"
21 if ! downloadfile "$2" "$3" "$5" > "$DOWNLOADLOG"; then
0d58c26a 22 cat >&2 "$DOWNLOADLOG"
fd46d305
DK
23 msgfail
24 else
25 msgpass
26 fi
ed793a19
DK
27 sed -e '/^ <- / s#%20# #g' -e '/^ <- / s#%0a#\n#g' "$DOWNLOADLOG" | grep '^.*-Hash: ' > receivedhashes.log
28 testsuccess test -s receivedhashes.log
29 local HASHES_OK=0
30 local HASHES_BAD=0
31 while read field hash; do
fd46d305
DK
32 local EXPECTED
33 case "$field" in
34 'MD5Sum-Hash:') EXPECTED="$(md5sum "$TESTFILE" | cut -d' ' -f 1)";;
35 'SHA1-Hash:') EXPECTED="$(sha1sum "$TESTFILE" | cut -d' ' -f 1)";;
36 'SHA256-Hash:') EXPECTED="$(sha256sum "$TESTFILE" | cut -d' ' -f 1)";;
37 'SHA512-Hash:') EXPECTED="$(sha512sum "$TESTFILE" | cut -d' ' -f 1)";;
ed793a19
DK
38 'Checksum-FileSize-Hash:')
39 #filesize is too weak to check for !=
40 if [ "$4" = '=' ]; then
41 EXPECTED="$(stat -c '%s' "$TESTFILE")"
42 else
43 continue
44 fi
45 ;;
fd46d305
DK
46 *) continue;;
47 esac
48 if [ "$4" = '=' ]; then
49 msgtest 'Test downloaded file for correct' "$field"
50 else
51 msgtest 'Test downloaded file does not match in' "$field"
52 fi
53 if [ "$EXPECTED" "$4" "$hash" ]; then
54 msgpass
ed793a19 55 HASHES_OK=$((HASHES_OK+1));
fd46d305 56 else
fd46d305 57 msgfail "expected: $EXPECTED ; got: $hash"
ed793a19 58 HASHES_BAD=$((HASHES_BAD+1));
fd46d305 59 fi
ed793a19
DK
60 done < receivedhashes.log
61 msgtest 'At least one good hash and no bad ones'
62 if [ $HASHES_OK -eq 0 ] || [ $HASHES_BAD -ne 0 ]; then
63 cat >&2 "$DOWNLOADLOG"
64 msgfail
65 else
66 msgpass
67 fi
fd46d305
DK
68}
69
fd46d305 70TESTFILE='aptarchive/testfile'
3abb6a6a
DK
71cp -a "${TESTDIR}/framework" "$TESTFILE"
72cp -a "${TESTDIR}/framework" "${TESTFILE}2"
ed793a19
DK
73
74followuprequest() {
75 local DOWN='./downloaded/testfile'
76
77 copysource $TESTFILE 1M $DOWN
78 testdownloadfile 'completely downloaded file' "${1}/testfile" "$DOWN" '='
79 testwebserverlaststatuscode '416' "$DOWNLOADLOG"
80
dcbb364f
DK
81 webserverconfig 'aptwebserver::support::content-range' 'false'
82 copysource $TESTFILE 1M $DOWN
51c04562 83 testdownloadfile 'completely downloaded file' "${1}/testfile" "$DOWN" '=' "SHA256:$(sha256sum "$TESTFILE" | cut -d' ' -f 1)"
dcbb364f
DK
84 testwebserverlaststatuscode '416' "$DOWNLOADLOG"
85 webserverconfig 'aptwebserver::support::content-range' 'true'
86
ed793a19
DK
87 copysource $TESTFILE 1M $DOWN
88 copysource "${TESTFILE}2" 20 "${DOWN}2"
89 msgtest 'Testing download of files with' 'completely downloaded file + partial file'
90 testsuccess --nomsg apthelper -o Debug::Acquire::${1%%:*}=1 -o Debug::pkgAcquire::Worker=1 \
91 download-file "$1/testfile" "$DOWN" '' "$1/testfile2" "${DOWN}2"
92 testwebserverlaststatuscode '206' 'rootdir/tmp/testsuccess.output'
93 testsuccess diff -u "$TESTFILE" "${DOWN}"
94 testsuccess diff -u "${DOWN}" "${DOWN}2"
95}
fd46d305
DK
96
97testrun() {
f2c0ec8b 98 webserverconfig 'aptwebserver::support::range' 'true'
d94b1d80 99 webserverconfig 'aptwebserver::response-header::Accept-Ranges' 'bytes'
03aa0847 100 local DOWN='./downloaded/testfile'
fd46d305 101
03aa0847
DK
102 copysource $TESTFILE 0 $DOWN
103 testdownloadfile 'no data' "${1}/testfile" "$DOWN" '='
0d58c26a 104 testwebserverlaststatuscode '200' "$DOWNLOADLOG"
fd46d305 105
03aa0847
DK
106 copysource $TESTFILE 20 $DOWN
107 testdownloadfile 'valid partial data' "${1}/testfile" "$DOWN" '='
0d58c26a 108 testwebserverlaststatuscode '206' "$DOWNLOADLOG"
fd46d305 109
03aa0847
DK
110 copysource /dev/zero 20 $DOWN
111 testdownloadfile 'invalid partial data' "${1}/testfile" "$DOWN" '!='
0d58c26a 112 testwebserverlaststatuscode '206' "$DOWNLOADLOG"
fd46d305 113
ed793a19
DK
114 webserverconfig 'aptwebserver::closeOnError' 'false'
115 followuprequest "$1"
116 webserverconfig 'aptwebserver::closeOnError' 'true'
117 followuprequest "$1"
118 webserverconfig 'aptwebserver::closeOnError' 'false'
fd46d305 119
03aa0847
DK
120 copysource /dev/zero 1M $DOWN
121 testdownloadfile 'too-big partial file' "${1}/testfile" "$DOWN" '='
0d58c26a 122 testwebserverlaststatuscode '200' "$DOWNLOADLOG"
fd46d305 123
03aa0847
DK
124 copysource /dev/zero 20 $DOWN
125 touch $DOWN
126 testdownloadfile 'old data' "${1}/testfile" "$DOWN" '='
0d58c26a 127 testwebserverlaststatuscode '200' "$DOWNLOADLOG"
fd46d305 128
d94b1d80
DK
129 if [ "${1%%:*}" = 'https' ] && expr match "$1" "^.*/redirectme$" >/dev/null; then
130 webserverconfig 'aptwebserver::response-header::Accept-Ranges' 'none'
131 else
132 webserverconfig 'aptwebserver::support::range' 'false'
133 fi
fd46d305 134
03aa0847
DK
135 copysource $TESTFILE 20 $DOWN
136 testdownloadfile 'no server support' "${1}/testfile" "$DOWN" '='
0d58c26a 137 testwebserverlaststatuscode '200' "$DOWNLOADLOG"
fd46d305
DK
138}
139
146f7715
DK
140serverconfigs() {
141 msgmsg "${1%%:*}: Test with Content-Length"
142 webserverconfig 'aptwebserver::chunked-transfer-encoding' 'false'
143 testrun "$1"
144 msgmsg "${1%%:*}: Test with Transfer-Encoding: chunked"
145 webserverconfig 'aptwebserver::chunked-transfer-encoding' 'true'
146 testrun "$1"
147}
148
6c0765c0 149serverconfigs "http://localhost:${APTHTTPPORT}"
fd46d305
DK
150
151changetohttpswebserver
152
6c0765c0 153serverconfigs "https://localhost:${APTHTTPSPORT}"
4bba5a88
DK
154
155webserverconfig 'aptwebserver::redirect::replace::/redirectme/' "https://localhost:${APTHTTPSPORT}/"
d94b1d80 156serverconfigs "https://localhost:${APTHTTPSPORT}/redirectme"
4bba5a88 157serverconfigs "http://localhost:${APTHTTPPORT}/redirectme"