]> git.saurik.com Git - apt.git/blame - test/integration/test-bug-595691-empty-and-broken-archive-files
check that the right amount of packages is installed if multiple passed in
[apt.git] / test / integration / test-bug-595691-empty-and-broken-archive-files
CommitLineData
6874a1a8
DK
1#!/bin/sh
2set -e
3
9962ae93 4TESTDIR=$(readlink -f $(dirname $0))
6874a1a8
DK
5. $TESTDIR/framework
6setupenvironment
7configarchitecture "i386"
8
9buildaptarchive
db4b5f77 10touch aptarchive/Packages
6874a1a8
DK
11setupflataptarchive
12
13testaptgetupdate() {
4260fd39 14 rm -rf rootdir/var/lib/apt rootdir/var/cache/apt
6874a1a8 15 aptget update 2>> testaptgetupdate.diff >> testaptgetupdate.diff || true
1054d76b 16 sed -i -e '/^Fetched / d' -e 's#\[[0-9]* [kMGTPY]*B\]#\[\]#' testaptgetupdate.diff
6874a1a8
DK
17 GIVEN="$1"
18 shift
19 msgtest "Test for correctness of" "apt-get update with $*"
20 if [ -z "$GIVEN" ]; then
21 echo -n "" | checkdiff - testaptgetupdate.diff && msgpass || msgfail
22 else
23 echo "$GIVEN" | checkdiff - testaptgetupdate.diff && msgpass || msgfail
24 fi
25 rm testaptgetupdate.diff
26}
27
4260fd39
DK
28createemptyarchive() {
29 find aptarchive/ \( -name "Packages*" -o -name "en*" \) -type f -delete
30 if [ "en" = "$1" ]; then
31 echo -n "" | $COMPRESSOR > aptarchive/Packages.$COMPRESS
32 fi
33 touch aptarchive/Packages
34 echo -n "" | $COMPRESSOR > aptarchive/${1}.$COMPRESS
ab53c018 35 generatereleasefiles
4260fd39
DK
36 signreleasefiles
37 rm -f aptarchive/Packages
38}
6874a1a8 39
4260fd39
DK
40createemptyfile() {
41 find aptarchive/ \( -name "Packages*" -o -name "en*" \) -type f -delete
42 if [ "en" = "$1" ]; then
43 echo -n "" | $COMPRESSOR > aptarchive/Packages.$COMPRESS
44 fi
45 touch aptarchive/Packages aptarchive/${1}.$COMPRESS
ab53c018 46 generatereleasefiles
4260fd39
DK
47 signreleasefiles
48 rm -f aptarchive/Packages
49}
6874a1a8 50
4260fd39
DK
51setupcompressor() {
52 COMPRESSOR="$1"
53 case $COMPRESSOR in
54 gzip) COMPRESS="gz";;
55 bzip2) COMPRESS="bz2";;
56 lzma) COMPRESS="lzma";;
57 esac
58 echo "Acquire::CompressionTypes::Order { \"${COMPRESS}\"; };
5d885723 59Dir::Bin::uncompressed \"/does/not/exist\";
4260fd39
DK
60Dir::Bin::gzip \"/does/not/exist\";
61Dir::Bin::bzip2 \"/does/not/exist\";
62Dir::Bin::lzma \"/does/not/exist\";" > rootdir/etc/apt/apt.conf.d/00compressor
63 if [ -e "/bin/${COMPRESSOR}" ]; then
64 echo "Dir::Bin::${COMPRESSOR} \"/bin/${COMPRESSOR}\";" >> rootdir/etc/apt/apt.conf.d/00compressor
65 elif [ -e "/usr/bin/${COMPRESSOR}" ]; then
66 echo "Dir::Bin::${COMPRESSOR} \"/usr/bin/${COMPRESSOR}\";" >> rootdir/etc/apt/apt.conf.d/00compressor
67 else
68 msgtest "Test for availability of compressor" "${COMPRESSOR}"
69 msgfail
70 exit 1
71 fi
72}
6874a1a8 73
4260fd39
DK
74testoverfile() {
75 setupcompressor "$1"
6874a1a8 76
4260fd39 77 createemptyfile 'en'
fe0f7911 78 testaptgetupdate "Get:1 file: InRelease []
ab53c018 79Ign file: Translation-en
4260fd39
DK
80Reading package lists..." "empty file en.$COMPRESS over file"
81
82 createemptyarchive 'en'
fe0f7911 83 testaptgetupdate "Get:1 file: InRelease []
4260fd39
DK
84Reading package lists..." "empty archive en.$COMPRESS over file"
85
86 createemptyarchive 'Packages'
87 # FIXME: Why omits the file transport the Packages Get line?
88 #Get:3 file: Packages []
ab53c018
DK
89 testaptgetupdate "Get:1 file: InRelease []
90Ign file: Translation-en
4260fd39
DK
91Reading package lists..." "empty archive Packages.$COMPRESS over file"
92
93 createemptyfile 'Packages'
ab53c018
DK
94 testaptgetupdate "Get:1 file: InRelease []
95Ign file: Translation-en
4260fd39 96Err file: Packages
5d885723
DK
97 Empty files can't be valid archives
98W: Failed to fetch ${COMPRESSOR}:$(readlink -f aptarchive/Packages.$COMPRESS) Empty files can't be valid archives
6874a1a8 99
4260fd39
DK
100E: Some index files failed to download, they have been ignored, or old ones used instead." "empty file Packages.$COMPRESS over file"
101}
6874a1a8 102
4260fd39
DK
103testoverhttp() {
104 setupcompressor "$1"
6874a1a8 105
4260fd39 106 createemptyfile 'en'
fe0f7911 107 testaptgetupdate "Get:1 http://localhost InRelease []
ab53c018
DK
108Get:2 http://localhost Packages []
109Get:3 http://localhost Translation-en
110Ign http://localhost Translation-en
4260fd39
DK
111Reading package lists..." "empty file en.$COMPRESS over http"
112
113 createemptyarchive 'en'
fe0f7911 114 testaptgetupdate "Get:1 http://localhost InRelease []
ab53c018
DK
115Get:2 http://localhost Packages []
116Get:3 http://localhost Translation-en []
4260fd39
DK
117Reading package lists..." "empty archive en.$COMPRESS over http"
118
119 createemptyarchive 'Packages'
fe0f7911 120 testaptgetupdate "Get:1 http://localhost InRelease []
fe0f7911 121Get:2 http://localhost Packages []
ab53c018 122Ign http://localhost Translation-en
4260fd39 123Reading package lists..." "empty archive Packages.$COMPRESS over http"
6874a1a8 124
4260fd39
DK
125 createemptyfile 'Packages'
126 #FIXME: we should response with a good error message instead
fe0f7911 127 testaptgetupdate "Get:1 http://localhost InRelease []
fe0f7911 128Get:2 http://localhost Packages
ab53c018 129Ign http://localhost Translation-en
6874a1a8 130Err http://localhost Packages
5d885723
DK
131 Empty files can't be valid archives
132W: Failed to fetch ${COMPRESSOR}:$(readlink -f rootdir/var/lib/apt/lists/partial/localhost:8080_Packages) Empty files can't be valid archives
4260fd39
DK
133
134E: Some index files failed to download, they have been ignored, or old ones used instead." "empty file Packages.$COMPRESS over http"
135}
136
137for COMPRESSOR in 'gzip' 'bzip2' 'lzma'; do testoverfile $COMPRESSOR; done
138
139# do the same again with http instead of file
140changetowebserver
6874a1a8 141
4260fd39 142for COMPRESSOR in 'gzip' 'bzip2' 'lzma'; do testoverhttp $COMPRESSOR; done