]> git.saurik.com Git - apt.git/blame - test/integration/test-apt-update-expected-size
fix compile and tests error
[apt.git] / test / integration / test-apt-update-expected-size
CommitLineData
a2d40703
MV
1#!/bin/sh
2set -e
3
4TESTDIR=$(readlink -f $(dirname $0))
5. $TESTDIR/framework
6
7setupenvironment
8configarchitecture "i386"
9
10insertpackage 'unstable' 'apt' 'all' '1.0'
11
12setupaptarchive --no-update
13changetowebserver
14
15# normal update works fine
16testsuccess aptget update
17
c48eea97
MV
18# make InRelease really big
19mv aptarchive/dists/unstable/InRelease aptarchive/dists/unstable/InRelease.good
27e6c17a 20dd if=/dev/zero of=aptarchive/dists/unstable/InRelease bs=1M count=2 2>/dev/null
c48eea97 21touch -d '+1hour' aptarchive/dists/unstable/InRelease
ee279506 22aptget update -o Apt::Get::List-Cleanup=0 -o acquire::MaxReleaseFileSize=$((1*1000*1000)) -o Debug::pkgAcquire::worker=0 > output.log
27e6c17a
MV
23msgtest 'Check that the max write warning is triggered'
24if grep -q "Writing more data than expected" output.log; then
25 msgpass
26else
27 cat output.log
28 msgfail
29fi
ee279506
MV
30# ensure the failed InRelease file got renamed
31testsuccess ls rootdir/var/lib/apt/lists/partial/*InRelease.FAILED
27e6c17a 32mv aptarchive/dists/unstable/InRelease.good aptarchive/dists/unstable/InRelease
c48eea97 33
ee279506 34
a2d40703
MV
35# append junk at the end of the Packages.gz/Packages
36SIZE="$(stat --printf=%s aptarchive/dists/unstable/main/binary-i386/Packages)"
37echo "1234567890" >> aptarchive/dists/unstable/main/binary-i386/Packages.gz
38echo "1234567890" >> aptarchive/dists/unstable/main/binary-i386/Packages
39NEW_SIZE="$(stat --printf=%s aptarchive/dists/unstable/main/binary-i386/Packages)"
40rm -f rootdir/var/lib/apt/lists/localhost*
9d653a6d 41testequal "W: Failed to fetch http://localhost:8080/dists/unstable/main/binary-i386/Packages Writing more data than expected ($NEW_SIZE > $SIZE)
a2d40703
MV
42
43E: Some index files failed to download. They have been ignored, or old ones used instead." aptget update -qq
44