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