]>
Commit | Line | Data |
---|---|---|
a4b8112b DK |
1 | #!/bin/sh |
2 | set -e | |
3 | ||
3abb6a6a DK |
4 | TESTDIR="$(readlink -f "$(dirname "$0")")" |
5 | . "$TESTDIR/framework" | |
a4b8112b DK |
6 | setupenvironment |
7 | configarchitecture 'amd64' | |
8 | configcompression '.' 'gz' | |
9 | ||
10 | buildsimplenativepackage 'unrelated' 'all' '0.5~squeeze1' 'unstable' | |
11 | ||
03a34b88 | 12 | export APT_DONT_SIGN='' |
a4b8112b | 13 | setupaptarchive --no-update |
6c0765c0 DK |
14 | changetowebserver |
15 | webserverconfig 'aptwebserver::redirect::replace::/redirectme/' "http://0.0.0.0:${APTHTTPPORT}/" | |
16 | rewritesourceslist "http://localhost:${APTHTTPPORT}/redirectme" | |
a4b8112b | 17 | |
6c0765c0 DK |
18 | testsuccessequal "Get:1 http://0.0.0.0:${APTHTTPPORT} unstable InRelease [$(stat -c %s aptarchive/dists/unstable/InRelease) B] |
19 | Get:2 http://0.0.0.0:${APTHTTPPORT} unstable/main Sources [$(stat -c %s aptarchive/dists/unstable/main/source/Sources.gz) B] | |
b2fd8524 DK |
20 | Get:3 http://0.0.0.0:${APTHTTPPORT} unstable/main all Packages [$(stat -c %s aptarchive/dists/unstable/main/binary-all/Packages.gz) B] |
21 | Get:4 http://0.0.0.0:${APTHTTPPORT} unstable/main Translation-en [$(stat -c %s aptarchive/dists/unstable/main/i18n/Translation-en.gz) B] | |
a4b8112b DK |
22 | Reading package lists..." aptget update |
23 | ||
9b8034a9 DK |
24 | # ensure we asked the redirector only once |
25 | testsuccessequal "Location: http://0.0.0.0:${APTHTTPPORT}/dists/unstable/InRelease" grep '^Location:' aptarchive/webserver.log | |
26 | ||
6c0765c0 DK |
27 | testsuccessequal "Hit:1 http://0.0.0.0:${APTHTTPPORT} unstable InRelease |
28 | Reading package lists..." aptget update | |
9b8034a9 DK |
29 | |
30 | testsuccessequal "Location: http://0.0.0.0:${APTHTTPPORT}/dists/unstable/InRelease | |
31 | Location: http://0.0.0.0:${APTHTTPPORT}/dists/unstable/InRelease" grep '^Location:' aptarchive/webserver.log | |
32 | ||
33 | rm -rf rootdir/var/lib/apt/lists | |
34 | testsuccess apt update -o Debug::Acquire::http=1 -o Acquire::SameMirrorForAllIndexes=0 | |
35 | testsuccessequal "Location: http://0.0.0.0:${APTHTTPPORT}/dists/unstable/InRelease | |
36 | Location: http://0.0.0.0:${APTHTTPPORT}/dists/unstable/InRelease | |
37 | Location: http://0.0.0.0:${APTHTTPPORT}/dists/unstable/InRelease | |
38 | Location: http://0.0.0.0:${APTHTTPPORT}/dists/unstable/main/source/Sources.gz | |
39 | Location: http://0.0.0.0:${APTHTTPPORT}/dists/unstable/main/binary-all/Packages.gz | |
40 | Location: http://0.0.0.0:${APTHTTPPORT}/dists/unstable/main/i18n/Translation-en.gz" grep '^Location:' aptarchive/webserver.log | |
84ac6edf | 41 | |
737ce313 | 42 | cd downloaded |
84ac6edf DK |
43 | testsuccess apthelper download-file "http://localhost:${APTHTTPPORT}/redirectme/dists/unstable/InRelease" inrelease |
44 | testsuccess test -s inrelease | |
03a34b88 DK |
45 | cd - >/dev/null |
46 | ||
47 | find aptarchive -name 'InRelease' -delete | |
48 | rm -rf rootdir/var/lib/apt/lists | |
49 | ||
50 | testsuccessequal "Ign:1 http://0.0.0.0:${APTHTTPPORT} unstable InRelease | |
51 | 404 Not Found | |
52 | Get:2 http://0.0.0.0:${APTHTTPPORT} unstable Release [$(stat -c %s aptarchive/dists/unstable/Release) B] | |
53 | Get:3 http://0.0.0.0:${APTHTTPPORT} unstable Release.gpg [$(stat -c %s aptarchive/dists/unstable/Release.gpg) B] | |
54 | Get:4 http://0.0.0.0:${APTHTTPPORT} unstable/main Sources [$(stat -c %s aptarchive/dists/unstable/main/source/Sources.gz) B] | |
55 | Get:5 http://0.0.0.0:${APTHTTPPORT} unstable/main all Packages [$(stat -c %s aptarchive/dists/unstable/main/binary-all/Packages.gz) B] | |
56 | Get:6 http://0.0.0.0:${APTHTTPPORT} unstable/main Translation-en [$(stat -c %s aptarchive/dists/unstable/main/i18n/Translation-en.gz) B] | |
57 | Reading package lists..." aptget update | |
58 | ||
59 | testsuccessequal "Ign:1 http://0.0.0.0:${APTHTTPPORT} unstable InRelease | |
60 | 404 Not Found | |
61 | Hit:2 http://0.0.0.0:${APTHTTPPORT} unstable Release | |
62 | Reading package lists..." aptget update | |
63 | ||
64 |