]> git.saurik.com Git - apt.git/blame - test/integration/test-bug-778375-server-has-no-reason-phrase
ensure outdated files are dropped without lists-cleanup
[apt.git] / test / integration / test-bug-778375-server-has-no-reason-phrase
CommitLineData
905fba60
DK
1#!/bin/sh
2set -e
3
3abb6a6a
DK
4TESTDIR="$(readlink -f "$(dirname "$0")")"
5. "$TESTDIR/framework"
905fba60
DK
6
7setupenvironment
8configarchitecture 'native'
9
10echo 'found' > aptarchive/working
11changetohttpswebserver -o 'aptwebserver::redirect::replace::/redirectme/=/' \
12 -o 'aptwebserver::httpcode::200=200' -o 'aptwebserver::httpcode::404=404' \
13 -o 'aptwebserver::httpcode::301=301'
14
15testdownload() {
16 rm -f downfile
17 msgtest "download of a $1 via" "${3%%:*}"
18 $2 --nomsg downloadfile "$3" downfile
19
20 cp rootdir/tmp/testsuccess.output download.log
21 #looking for "HTTP server doesn't give Reason-Phrase for 200"
22 testsuccess grep 'give Reason-Phrase for' download.log
23
24 if [ "$2" = 'testsuccess' ]; then
25 testfileequal downfile 'found'
26 else
27 testfailure test -e downfile
28 fi
29}
30
31runtest() {
32 testdownload 'file works' 'testsuccess' "$1/working"
33 testdownload 'file via redirect works' 'testsuccess' "$1/redirectme/working"
34
35 testdownload 'non-existent file fails' 'testfailure' "$1/failing"
36 testdownload 'non-existent file via redirect fails' 'testfailure' "$1/redirectme/failing"
37}
38
6c0765c0
DK
39runtest "http://localhost:${APTHTTPPORT}"
40runtest "https://localhost:${APTHTTPSPORT}"