4 TESTDIR
=$(readlink -f $(dirname $0))
7 configarchitecture
'amd64'
9 insertpackage
'unstable' 'unrelated' 'all' '0.5~squeeze1'
10 insertsource
'unstable' 'unrelated' 'all' '0.5~squeeze1'
12 setupaptarchive
--no-update
17 configallowinsecurerepositories
'true'
19 configallowinsecurerepositories
'false'
22 rm -rf rootdir
/var
/lib
/apt
/lists
/
24 local TEST
="test${1:-success}"
26 if [ "$1" = 'failure' ]; then
27 # accept the outdated Release file so we can check Hit behaviour
28 "test${2:-success}" aptget update
-o Acquire
::Min
-ValidTime=9999999
30 listcurrentlistsdirectory
> listsdir.lst
31 testsuccess
grep '_Packages\(\.gz\)\?$' listsdir.lst
32 testsuccess
grep '_Sources\(\.gz\)\?$' listsdir.lst
33 testsuccess
grep '_Translation-en\(\.gz\)\?$' listsdir.lst
35 # ensure no leftovers in partial
36 testfailure
ls 'rootdir/var/lib/apt/lists/partial/*'
38 # check that I-M-S header is kept in redirections
39 echo "$EXPECT" | sed -e 's#(invalid since [^)]\+)#(invalid since)#' > expected.output
40 $TEST aptget update
-o Debug
::pkgAcquire
::Worker
=0 -o Debug
::Acquire
::http
=0
41 sed -i -e 's#(invalid since [^)]\+)#(invalid since)#' rootdir
/tmp
/${TEST}.output
42 testequal
"$(cat expected.output)" cat rootdir
/tmp
/${TEST}.output
43 testfileequal
'listsdir.lst' "$(listcurrentlistsdirectory)"
45 # ensure that we still do a hash check for other files on ims hit of Release
46 if grep -q '^Hit:[0-9]\+ .* InRelease$' expected.output
|| ! grep -q '^Ign:[0-9]\+ .* Release\(\.gpg\)\?$' expected.output
; then
47 $TEST aptget update
-o Debug
::Acquire
::gpgv
=1
48 cp rootdir
/tmp
/${TEST}.output goodsign.output
49 testfileequal
'listsdir.lst' "$(listcurrentlistsdirectory)"
50 testsuccess
grep '^Got GOODSIG, key ID:GOODSIG' goodsign.output
53 # ensure no leftovers in partial
54 testfailure
ls 'rootdir/var/lib/apt/lists/partial/*'
58 EXPECT
='Hit:1 http://localhost:8080 unstable InRelease
59 Reading package lists...'
60 echo 'Acquire::GzipIndexes "0";' > rootdir
/etc
/apt
/apt.conf.d
/02compressindex
62 echo 'Acquire::GzipIndexes "1";' > rootdir
/etc
/apt
/apt.conf.d
/02compressindex
65 msgmsg
'Release/Release.gpg'
66 EXPECT
='Ign:1 http://localhost:8080 unstable InRelease
68 Hit:2 http://localhost:8080 unstable Release
69 Reading package lists...'
70 find aptarchive
-name 'InRelease' -delete
71 echo 'Acquire::GzipIndexes "0";' > rootdir
/etc
/apt
/apt.conf.d
/02compressindex
73 echo 'Acquire::GzipIndexes "1";' > rootdir
/etc
/apt
/apt.conf.d
/02compressindex
77 EXPECT
="Ign:1 http://localhost:8080 unstable InRelease
79 Hit:2 http://localhost:8080 unstable Release
80 Ign:3 http://localhost:8080 unstable Release.gpg
82 Reading package lists...
83 W: The data from 'http://localhost:8080 unstable Release' is not signed. Packages from that repository can not be authenticated."
84 find aptarchive
-name 'Release.gpg' -delete
85 echo 'Acquire::GzipIndexes "0";' > rootdir
/etc
/apt
/apt.conf.d
/02compressindex
87 echo 'Acquire::GzipIndexes "1";' > rootdir
/etc
/apt
/apt.conf.d
/02compressindex
91 # make the release file old
92 find aptarchive
-name '*Release' -exec sed -i \
93 -e "s#^Date: .*\$#Date: $(date -d '-2 weeks' '+%a, %d %b %Y %H:%M:%S %Z')#" \
94 -e '/^Valid-Until: / d' -e "/^Date: / a\
95 Valid-Until: $(date -d '-1 weeks' '+%a, %d %b %Y %H:%M:%S %Z')" '{}' \
;
98 msgmsg
'expired InRelease'
99 EXPECT
='Hit:1 http://localhost:8080 unstable InRelease
100 Reading package lists...
101 E: Release file for http://localhost:8080/dists/unstable/InRelease is expired (invalid since). Updates for this repository will not be applied.'
102 echo 'Acquire::GzipIndexes "0";' > rootdir
/etc
/apt
/apt.conf.d
/02compressindex
104 echo 'Acquire::GzipIndexes "1";' > rootdir
/etc
/apt
/apt.conf.d
/02compressindex
107 msgmsg
'expired Release/Release.gpg'
108 EXPECT
='Ign:1 http://localhost:8080 unstable InRelease
110 Hit:2 http://localhost:8080 unstable Release
111 Reading package lists...
112 E: Release file for http://localhost:8080/dists/unstable/Release is expired (invalid since). Updates for this repository will not be applied.'
113 find aptarchive
-name 'InRelease' -delete
114 echo 'Acquire::GzipIndexes "0";' > rootdir
/etc
/apt
/apt.conf.d
/02compressindex
116 echo 'Acquire::GzipIndexes "1";' > rootdir
/etc
/apt
/apt.conf.d
/02compressindex
119 msgmsg
'expired Release only'
120 EXPECT
="Ign:1 http://localhost:8080 unstable InRelease
122 Hit:2 http://localhost:8080 unstable Release
123 Ign:3 http://localhost:8080 unstable Release.gpg
125 Reading package lists...
126 W: The data from 'http://localhost:8080 unstable Release' is not signed. Packages from that repository can not be authenticated.
127 E: Release file for http://localhost:8080/dists/unstable/Release is expired (invalid since). Updates for this repository will not be applied."
128 find aptarchive
-name 'Release.gpg' -delete
129 echo 'Acquire::GzipIndexes "0";' > rootdir
/etc
/apt
/apt.conf.d
/02compressindex
130 runtest
'failure' 'warning'
131 echo 'Acquire::GzipIndexes "1";' > rootdir
/etc
/apt
/apt.conf.d
/02compressindex
132 runtest
'failure' 'warning'
135 msgmsg
'no Release at all'
136 EXPECT
="Ign:1 http://localhost:8080 unstable InRelease
138 Ign:2 http://localhost:8080 unstable Release
140 Ign:3 http://localhost:8080 unstable/main Sources
142 Ign:4 http://localhost:8080 unstable/main amd64 Packages
144 Ign:5 http://localhost:8080 unstable/main Translation-en
146 Ign:3 http://localhost:8080 unstable/main Sources
148 Ign:4 http://localhost:8080 unstable/main amd64 Packages
150 Ign:5 http://localhost:8080 unstable/main Translation-en
152 Ign:3 http://localhost:8080 unstable/main Sources
154 Ign:4 http://localhost:8080 unstable/main amd64 Packages
156 Ign:5 http://localhost:8080 unstable/main Translation-en
158 Hit:3 http://localhost:8080 unstable/main Sources
159 Hit:4 http://localhost:8080 unstable/main amd64 Packages
160 Hit:5 http://localhost:8080 unstable/main Translation-en
161 Reading package lists...
162 W: The repository 'http://localhost:8080 unstable Release' does not have a Release file. This is deprecated, please contact the owner of the repository."
163 find aptarchive
-name '*Release*' -delete
164 echo 'Acquire::GzipIndexes "0";
165 Acquire::PDiffs "0";' > rootdir
/etc
/apt
/apt.conf.d
/02compressindex
167 echo 'Acquire::GzipIndexes "1";
168 Acquire::PDiffs "0";' > rootdir
/etc
/apt
/apt.conf.d
/02compressindex