]>
Commit | Line | Data |
---|---|---|
b90faf24 DK |
1 | #!/bin/sh |
2 | set -e | |
3 | ||
4 | TESTDIR="$(readlink -f "$(dirname "$0")")" | |
5 | . "$TESTDIR/framework" | |
6 | setupenvironment | |
7 | configarchitecture 'amd64' | |
8 | ||
9 | insertpackage 'stable' 'foo' 'all' '1' | |
10 | insertsource 'stable' 'foo' 'all' '1' | |
11 | setupaptarchive --no-update | |
12 | ||
13 | # install a slowed down file: otherwise its to fast to reproduce combining | |
14 | NEWMETHODS="$(readlink -f rootdir)/usr/lib/apt/methods" | |
15 | OLDMETHODS="$(readlink -f rootdir/usr/lib/apt/methods)" | |
16 | rm "$NEWMETHODS" | |
17 | mkdir "$NEWMETHODS" | |
18 | backupIFS="$IFS" | |
19 | IFS="$(printf "\n\b")" | |
782c60a6 | 20 | for METH in $(find "$OLDMETHODS" -maxdepth 1 ! -type d); do |
b90faf24 DK |
21 | ln -s "$OLDMETHODS/$(basename "$METH")" "$NEWMETHODS" |
22 | done | |
23 | IFS="$backupIFS" | |
24 | ln -s "${OLDMETHODS}/http" "${NEWMETHODS}/http-ng" | |
25 | ||
26 | changetowebserver | |
30060442 | 27 | webserverconfig 'aptwebserver::redirect::replace::/redirectme/' "http://localhost:${APTHTTPPORT}/" |
b90faf24 DK |
28 | sed -i -e 's# http:# http-ng:#' $(find rootdir/etc/apt/sources.list.d -name '*-deb-src.list') |
29 | ||
30060442 | 30 | testsuccess apt update -o Debug::Acquire::http-ng=1 |
b90faf24 DK |
31 | cp rootdir/tmp/testsuccess.output update.log |
32 | # all requests are folded into the first Release file | |
33 | testsuccess grep ' http-ng://' update.log | |
34 | testfailure grep ' http://' update.log | |
30060442 DK |
35 | # see if method-specific debug was enabled |
36 | testsuccess grep '^Answer for: http-ng:' update.log | |
37 | ||
38 | rm -rf rootdir/var/lib/apt/lists | |
39 | sed -i -e "s#:${APTHTTPPORT}/#:${APTHTTPPORT}/redirectme#" rootdir/etc/apt/sources.list.d/* | |
40 | testsuccess apt update -o Debug::Acquire::http-ng=1 | |
41 | cp rootdir/tmp/testsuccess.output update.log | |
42 | # all requests are folded into the first Release file | |
43 | testsuccess grep ' http-ng://' update.log | |
44 | testfailure grep '^[^L].* http://' update.log | |
45 | # see if method-specific debug was enabled | |
46 | testsuccess grep '^Answer for: http-ng:' update.log |