blob: cf51950243745b1713b2307f9b66365f33e949df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
#!/bin/sh
#
# Ensure that when going from unauthenticated to authenticated all
# files are checked again
#
set -e
TESTDIR=$(readlink -f $(dirname $0))
. $TESTDIR/framework
umask 022
setupenvironment
configarchitecture "i386"
insertpackage 'unstable' 'foo' 'all' '1.0'
insertsource 'unstable' 'foo' 'all' '1.0'
setupaptarchive
changetowebserver
# FIXME:
# - also check the unauth -> auth success case, i.e. that all files are
# reverified
runtest() {
# start unauthenticated
find rootdir/var/lib/apt/lists/ -type f | xargs rm -f
rm -f aptarchive/dists/unstable/*Release*
aptget update -qq --allow-insecure-repositories
# FIXME: this really shouldn't be needed
rm -f rootdir/var/lib/apt/lists/partial/*
# become authenticated
generatereleasefiles
signreleasefiles
# move uncompressed away
mv aptarchive/dists/unstable/main/binary-i386/Packages \
aptarchive/dists/unstable/main/binary-i386/Packages.uncompressed
# and ensure we re-check the downloaded data
msgtest "Check rollback on going from unauth -> auth"
# change the local packages file
PKGS=$(ls rootdir/var/lib/apt/lists/*Packages*)
echo "meep" > $PKGS
ls rootdir/var/lib/apt/lists/ > lists.before
# update and ensure all is reverted on the hashsum failure
aptget update -o Debug::Acquire::Transaction=0 -o Debug::pkgAcquire::Auth=1 -o Debug::pkgAcquire::worker=0 -o Debug::acquire::http=0 > output.log 2>&1 || true
# ensure we have before what we have after
ls rootdir/var/lib/apt/lists/ > lists.after
if diff -u lists.before lists.after; then
msgpass
else
cat output.log
msgfail
fi
# move uncompressed back for release file
mv aptarchive/dists/unstable/main/binary-i386/Packages.uncompressed \
aptarchive/dists/unstable/main/binary-i386/Packages
}
for COMPRESSEDINDEXES in 'false' 'true'; do
echo "Acquire::GzipIndexes \"$COMPRESSEDINDEXES\";" > rootdir/etc/apt/apt.conf.d/compressindexes
if $COMPRESSEDINDEXES; then
msgmsg 'Run tests with GzipIndexes enabled'
else
msgmsg 'Run tests with GzipIndexes disabled'
fi
runtest
done
|