]>
Commit | Line | Data |
---|---|---|
23397c9d DK |
1 | #!/bin/sh |
2 | set -e | |
3 | ||
3abb6a6a DK |
4 | TESTDIR="$(readlink -f "$(dirname "$0")")" |
5 | . "$TESTDIR/framework" | |
23397c9d DK |
6 | setupenvironment |
7 | configarchitecture 'i386' | |
8 | configcompression 'gz' | |
9 | ||
10 | insertpackage 'testing' 'foo' 'all' '1' | |
11 | insertpackage 'testing' 'foo2' 'all' '1' | |
12 | insertsource 'testing' 'foo' 'all' '1' | |
13 | insertsource 'testing' 'foo2' 'all' '1' | |
14 | ||
15 | setupaptarchive --no-update | |
16 | changetowebserver | |
17 | ||
18 | echo 'Package: bar | |
19 | Maintainer: Doctor Evil <evil@example.com> | |
20 | Description: come to the dark side | |
21 | ' > aptarchive/DoctorEvil | |
22 | compressfile aptarchive/DoctorEvil | |
23 | ||
24 | find aptarchive \( -name 'Packages' -o -name 'Sources' -o -name 'Translation-en' \) -delete | |
25 | ||
26 | testsuccess aptget update | |
27 | testsuccess aptcache show foo | |
28 | testsuccess aptget install foo -s | |
29 | ||
30 | for get in $(sed -n 's#^GET /\([^ ]\+\.gz\) HTTP.\+$#\1#p' aptarchive/webserver.log); do | |
31 | msgmsg 'Test hashsum mismatch with file' "$get" | |
32 | rm -rf rootdir/var/lib/apt/lists | |
33 | webserverconfig 'aptwebserver::overwrite' '' | |
34 | webserverconfig "aptwebserver::overwrite::$(printf '%s' "${get}" | sed 's#/#%2F#g' )::filename" '%2FDoctorEvil.gz' | |
35 | ||
9397ea94 MV |
36 | testfailure aptget update |
37 | cp rootdir/tmp/testfailure.output rootdir/tmp/update.output | |
3261271e | 38 | testsuccess grep -E "$(basename "$get" '.gz').*Hash Sum mismatch" rootdir/tmp/update.output |
9397ea94 MV |
39 | testfailure aptcache show foo |
40 | testfailure aptget install foo -s | |
23397c9d DK |
41 | |
42 | testfailure aptcache show bar | |
43 | testfailure aptget install bar -s | |
44 | done |