]>
git.saurik.com Git - apt.git/blob - test/integration/test-releasefile-verification
4 TESTDIR
=$(readlink -f $(dirname $0))
8 configarchitecture
"i386"
15 local DATE
="${2:-now}"
16 if [ "$DATE" = 'now' -a "$1" = "${PKGFILE}-new" ]; then
19 for release
in $(find rootdir/var/lib/apt/lists 2> /dev/null); do
20 touch -d 'now - 6 hours' $release
23 cp $1 aptarchive
/Packages
24 find aptarchive
-name 'Release' -delete
25 cat aptarchive
/Packages
| gzip > aptarchive
/Packages.gz
26 cat aptarchive
/Packages
| bzip2 > aptarchive
/Packages.bz2
27 cat aptarchive
/Packages
| lzma
> aptarchive
/Packages.lzma
28 generatereleasefiles
"$DATE"
32 testequal
'Reading package lists...
33 Building dependency tree...
35 aptitude synaptic wajig dpkg-dev apt-doc bzip2 lzma python-apt
36 The following NEW packages will be installed:
38 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
39 After this operation, 5370 kB of additional disk space will be used.
40 Get:1 http://localhost/ apt 0.7.25.3
41 Download complete and in download only mode' aptget
install apt
-dy
45 testequal
'Reading package lists...
46 Building dependency tree...
48 aptitude synaptic wajig dpkg-dev apt-doc bzip2 lzma python-apt
49 The following NEW packages will be installed:
51 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
52 After this operation, 5808 kB of additional disk space will be used.
53 Get:1 http://localhost/ apt 0.8.0~pre1
54 Download complete and in download only mode' aptget
install apt
-dy
58 testequal
'Reading package lists...
59 Building dependency tree...
61 aptitude synaptic wajig dpkg-dev apt-doc bzip2 lzma python-apt
62 The following NEW packages will be installed:
64 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
65 After this operation, 5370 kB of additional disk space will be used.
66 WARNING: The following packages cannot be authenticated!
68 E: There are problems and -y was used without --force-yes' aptget
install apt
-dy
72 testequal
'Reading package lists...
73 Building dependency tree...
75 aptitude synaptic wajig dpkg-dev apt-doc bzip2 lzma python-apt
76 The following NEW packages will be installed:
78 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
79 After this operation, 5808 kB of additional disk space will be used.
80 WARNING: The following packages cannot be authenticated!
82 E: There are problems and -y was used without --force-yes' aptget
install apt
-dy
85 # fake our downloadable file
86 touch aptarchive
/apt.deb
88 PKGFILE
="${TESTDIR}/$(echo "$(basename $0)" | sed 's#^test-#Packages-#')"
92 rm -rf rootdir/var/lib/apt/lists
93 signreleasefiles 'Joe Sixpack'
94 find aptarchive/ -name "$DELETEFILE" -delete
95 msgtest 'Cold archive signed by' 'Joe Sixpack'
96 aptget update 2>&1 | grep -E '^(W|E): ' > /dev/null && msgfail || msgpass
97 testequal "$(cat ${PKGFILE})
101 prepare ${PKGFILE}-new
102 signreleasefiles 'Joe Sixpack'
103 find aptarchive/ -name "$DELETEFILE" -delete
104 msgtest 'Good warm archive signed by' 'Joe Sixpack'
105 aptget update 2>&1 | grep -E '^(W|E): ' > /dev/null && msgfail || msgpass
106 testequal "$(cat ${PKGFILE}-new)
112 rm -rf rootdir/var/lib/apt/lists
113 signreleasefiles 'Marvin Paranoid'
114 find aptarchive/ -name "$DELETEFILE" -delete
115 msgtest 'Cold archive signed by' 'Marvin Paranoid'
116 aptget update 2>&1 | grep -E '^(W|E): ' > /dev/null && msgpass || msgfail
117 testequal "$(cat ${PKGFILE})
121 prepare ${PKGFILE}-new
122 # weborf doesn't support If-Range
123 for release in $(find rootdir/var/lib/apt/lists/partial/ -name '*Release'); do
127 signreleasefiles 'Joe Sixpack'
128 find aptarchive/ -name "$DELETEFILE" -delete
129 msgtest 'Bad warm archive signed by' 'Joe Sixpack'
130 aptget update 2>&1 | grep -E '^(W|E): ' > /dev/null && msgfail || msgpass
131 testequal "$(cat ${PKGFILE}-new)
137 rm -rf rootdir/var/lib/apt/lists
138 signreleasefiles 'Joe Sixpack'
139 find aptarchive/ -name "$DELETEFILE" -delete
140 msgtest 'Cold archive signed by' 'Joe Sixpack'
141 aptget update 2>&1 | grep -E '^(W|E): ' > /dev/null && msgfail || msgpass
142 testequal "$(cat ${PKGFILE})
146 prepare ${PKGFILE}-new
147 signreleasefiles 'Marvin Paranoid'
148 find aptarchive/ -name "$DELETEFILE" -delete
149 msgtest 'Good warm archive signed by' 'Marvin Paranoid'
150 aptget update 2>&1 | grep -E '^(W|E): ' > /dev/null && msgpass || msgfail
151 testequal "$(cat ${PKGFILE})
156 DELETEFILE="InRelease
"
158 DELETEFILE="Release.gpg
"