]> git.saurik.com Git - apt.git/blame_incremental - test/integration/test-http-pipeline-messup
tests: support spaces in path and TMPDIR
[apt.git] / test / integration / test-http-pipeline-messup
... / ...
CommitLineData
1#!/bin/sh
2set -e
3
4TESTDIR="$(readlink -f "$(dirname "$0")")"
5. "$TESTDIR/framework"
6
7setupenvironment
8configarchitecture "i386"
9
10# try a little harder to create a size mismatch
11buildsimplenativepackage 'pkga' 'all' '1.0' 'stable' "Depends: foo" '' '' '' '' 'none'
12buildsimplenativepackage 'pkgb' 'all' '1.0' 'stable' "Depends: foo" '' '' '' '' 'none'
13buildsimplenativepackage 'pkgc' 'all' '1.0' 'stable' "Depends: f$(for i in $(seq 0 1000); do printf 'o'; done)" '' '' '' '' 'none'
14buildsimplenativepackage 'pkgd' 'all' '1.0' 'stable' "Depends: f$(for i in $(seq 0 1000); do printf 'o'; done)" '' '' '' '' 'none'
15
16setupaptarchive --no-update
17
18# simulate (and be a predictable) pipeline mess-up by the server/proxy
19changetowebserver \
20 -o 'aptwebserver::overwrite::.*pkga.*::filename=/pool/pkgd_1.0_all.deb' \
21 -o 'aptwebserver::overwrite::.*pkgc.*::filename=/pool/pkgb_1.0_all.deb' \
22 -o 'aptwebserver::overwrite::.*pkgb.*::filename=/pool/pkgc_1.0_all.deb' \
23 -o 'aptwebserver::overwrite::.*pkgd.*::filename=/pool/pkga_1.0_all.deb'
24
25echo 'Debug::Acquire::http "true";
26Debug::pkgAcquire::Worker "true";' > rootdir/etc/apt/apt.conf.d/99debug
27
28testsuccess aptget update
29
30cd downloaded
31# messup is bigger than pipeline: checks if fixup isn't trying too hard
32testfailure aptget download pkga pkgb pkgc pkgd -o Acquire::http::Pipeline-Depth=2
33for pkg in 'pkga' 'pkgd'; do
34 testfailure test -f ${pkg}_1.0_all.deb
35done
36for pkg in 'pkgb' 'pkgc'; do
37 testsuccess test -f ${pkg}_1.0_all.deb
38 testsuccess cmp ../incoming/${pkg}_1.0_all.deb ${pkg}_1.0_all.deb
39 rm -f ${pkg}_1.0_all.deb
40done
41
42# ensure that pipeling is enabled for rest of this test
43echo 'Acquire::http::Pipeline-Depth 10;' > ../rootdir/etc/apt/apt.conf.d/99enable-pipeline
44
45# the output is a bit strange: it looks like it has downloaded pkga 4 times
46testwarning aptget download pkga pkgb pkgc pkgd
47for pkg in 'pkga' 'pkgb' 'pkgc' 'pkgd'; do
48 testsuccess test -f ${pkg}_1.0_all.deb
49 testsuccess cmp ../incoming/${pkg}_1.0_all.deb ${pkg}_1.0_all.deb
50 rm -f ${pkg}_1.0_all.deb
51done
52
53# while hashes will pass (as none are available), sizes will not match, so failure
54# checks that no hashes means that pipeline depth is ignored as we can't fixup
55testfailure aptget download pkga pkgb pkgc pkgd --allow-unauthenticated -o Acquire::ForceHash=ROT26