]> git.saurik.com Git - apt.git/blob - test/integration/test-handle-redirect-as-used-mirror-change
use the same redirection mirror for all index files
[apt.git] / test / integration / test-handle-redirect-as-used-mirror-change
1 #!/bin/sh
2 set -e
3
4 TESTDIR="$(readlink -f "$(dirname "$0")")"
5 . "$TESTDIR/framework"
6 setupenvironment
7 configarchitecture 'amd64'
8 configcompression '.' 'gz'
9
10 buildsimplenativepackage 'unrelated' 'all' '0.5~squeeze1' 'unstable'
11
12 setupaptarchive --no-update
13 changetowebserver
14 webserverconfig 'aptwebserver::redirect::replace::/redirectme/' "http://0.0.0.0:${APTHTTPPORT}/"
15 rewritesourceslist "http://localhost:${APTHTTPPORT}/redirectme"
16
17 testsuccessequal "Get:1 http://0.0.0.0:${APTHTTPPORT} unstable InRelease [$(stat -c %s aptarchive/dists/unstable/InRelease) B]
18 Get:2 http://0.0.0.0:${APTHTTPPORT} unstable/main Sources [$(stat -c %s aptarchive/dists/unstable/main/source/Sources.gz) B]
19 Get:3 http://0.0.0.0:${APTHTTPPORT} unstable/main all Packages [$(stat -c %s aptarchive/dists/unstable/main/binary-all/Packages.gz) B]
20 Get:4 http://0.0.0.0:${APTHTTPPORT} unstable/main Translation-en [$(stat -c %s aptarchive/dists/unstable/main/i18n/Translation-en.gz) B]
21 Reading package lists..." aptget update
22
23 # ensure we asked the redirector only once
24 testsuccessequal "Location: http://0.0.0.0:${APTHTTPPORT}/dists/unstable/InRelease" grep '^Location:' aptarchive/webserver.log
25
26 testsuccessequal "Hit:1 http://0.0.0.0:${APTHTTPPORT} unstable InRelease
27 Reading package lists..." aptget update
28
29 testsuccessequal "Location: http://0.0.0.0:${APTHTTPPORT}/dists/unstable/InRelease
30 Location: http://0.0.0.0:${APTHTTPPORT}/dists/unstable/InRelease" grep '^Location:' aptarchive/webserver.log
31
32 rm -rf rootdir/var/lib/apt/lists
33 testsuccess apt update -o Debug::Acquire::http=1 -o Acquire::SameMirrorForAllIndexes=0
34 testsuccessequal "Location: http://0.0.0.0:${APTHTTPPORT}/dists/unstable/InRelease
35 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/main/source/Sources.gz
38 Location: http://0.0.0.0:${APTHTTPPORT}/dists/unstable/main/binary-all/Packages.gz
39 Location: http://0.0.0.0:${APTHTTPPORT}/dists/unstable/main/i18n/Translation-en.gz" grep '^Location:' aptarchive/webserver.log