]>
Commit | Line | Data |
---|---|---|
6874a1a8 DK |
1 | #!/bin/sh |
2 | set -e | |
3 | ||
9962ae93 | 4 | TESTDIR=$(readlink -f $(dirname $0)) |
6874a1a8 DK |
5 | . $TESTDIR/framework |
6 | setupenvironment | |
7 | configarchitecture "i386" | |
8 | ||
9 | buildaptarchive | |
db4b5f77 | 10 | touch aptarchive/Packages |
6874a1a8 DK |
11 | setupflataptarchive |
12 | ||
13 | testaptgetupdate() { | |
8de79b68 | 14 | rm -rf rootdir/var/lib/apt |
6874a1a8 | 15 | aptget update 2>> testaptgetupdate.diff >> testaptgetupdate.diff || true |
ea65d079 | 16 | sed -i -e '/^Fetched / d' -e '/Ign / 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 |
28 | createemptyarchive() { |
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 |
40 | createemptyfile() { |
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 |
51 | setupcompressor() { |
52 | COMPRESSOR="$1" | |
53 | case $COMPRESSOR in | |
54 | gzip) COMPRESS="gz";; | |
55 | bzip2) COMPRESS="bz2";; | |
56 | lzma) COMPRESS="lzma";; | |
79d5bab6 | 57 | xz) COMPRESS="xz";; |
4260fd39 DK |
58 | esac |
59 | echo "Acquire::CompressionTypes::Order { \"${COMPRESS}\"; }; | |
5d885723 | 60 | Dir::Bin::uncompressed \"/does/not/exist\"; |
4260fd39 DK |
61 | Dir::Bin::gzip \"/does/not/exist\"; |
62 | Dir::Bin::bzip2 \"/does/not/exist\"; | |
79d5bab6 DK |
63 | Dir::Bin::lzma \"/does/not/exist\"; |
64 | Dir::Bin::xz \"/does/not/exist\";" > rootdir/etc/apt/apt.conf.d/00compressor | |
4260fd39 DK |
65 | if [ -e "/bin/${COMPRESSOR}" ]; then |
66 | echo "Dir::Bin::${COMPRESSOR} \"/bin/${COMPRESSOR}\";" >> rootdir/etc/apt/apt.conf.d/00compressor | |
67 | elif [ -e "/usr/bin/${COMPRESSOR}" ]; then | |
68 | echo "Dir::Bin::${COMPRESSOR} \"/usr/bin/${COMPRESSOR}\";" >> rootdir/etc/apt/apt.conf.d/00compressor | |
69 | else | |
70 | msgtest "Test for availability of compressor" "${COMPRESSOR}" | |
71 | msgfail | |
72 | exit 1 | |
73 | fi | |
74 | } | |
6874a1a8 | 75 | |
4260fd39 DK |
76 | testoverfile() { |
77 | setupcompressor "$1" | |
6874a1a8 | 78 | |
4260fd39 | 79 | createemptyfile 'en' |
fe0f7911 | 80 | testaptgetupdate "Get:1 file: InRelease [] |
4260fd39 DK |
81 | Reading package lists..." "empty file en.$COMPRESS over file" |
82 | ||
83 | createemptyarchive 'en' | |
fe0f7911 | 84 | testaptgetupdate "Get:1 file: InRelease [] |
4260fd39 DK |
85 | Reading package lists..." "empty archive en.$COMPRESS over file" |
86 | ||
87 | createemptyarchive 'Packages' | |
88 | # FIXME: Why omits the file transport the Packages Get line? | |
89 | #Get:3 file: Packages [] | |
ab53c018 | 90 | testaptgetupdate "Get:1 file: InRelease [] |
4260fd39 DK |
91 | Reading package lists..." "empty archive Packages.$COMPRESS over file" |
92 | ||
93 | createemptyfile 'Packages' | |
ab53c018 | 94 | testaptgetupdate "Get:1 file: InRelease [] |
4260fd39 | 95 | Err file: Packages |
5d885723 DK |
96 | Empty files can't be valid archives |
97 | W: Failed to fetch ${COMPRESSOR}:$(readlink -f aptarchive/Packages.$COMPRESS) Empty files can't be valid archives | |
6874a1a8 | 98 | |
196c511c | 99 | E: Some index files failed to download. They have been ignored, or old ones used instead." "empty file Packages.$COMPRESS over file" |
4260fd39 | 100 | } |
6874a1a8 | 101 | |
4260fd39 DK |
102 | testoverhttp() { |
103 | setupcompressor "$1" | |
6874a1a8 | 104 | |
4260fd39 | 105 | createemptyfile 'en' |
fe0f7911 | 106 | testaptgetupdate "Get:1 http://localhost InRelease [] |
ab53c018 DK |
107 | Get:2 http://localhost Packages [] |
108 | Get:3 http://localhost Translation-en | |
4260fd39 DK |
109 | Reading package lists..." "empty file en.$COMPRESS over http" |
110 | ||
111 | createemptyarchive 'en' | |
fe0f7911 | 112 | testaptgetupdate "Get:1 http://localhost InRelease [] |
ab53c018 DK |
113 | Get:2 http://localhost Packages [] |
114 | Get:3 http://localhost Translation-en [] | |
4260fd39 DK |
115 | Reading package lists..." "empty archive en.$COMPRESS over http" |
116 | ||
117 | createemptyarchive 'Packages' | |
fe0f7911 | 118 | testaptgetupdate "Get:1 http://localhost InRelease [] |
fe0f7911 | 119 | Get:2 http://localhost Packages [] |
4260fd39 | 120 | Reading package lists..." "empty archive Packages.$COMPRESS over http" |
6874a1a8 | 121 | |
4260fd39 DK |
122 | createemptyfile 'Packages' |
123 | #FIXME: we should response with a good error message instead | |
fe0f7911 | 124 | testaptgetupdate "Get:1 http://localhost InRelease [] |
fe0f7911 | 125 | Get:2 http://localhost Packages |
6874a1a8 | 126 | Err http://localhost Packages |
5d885723 DK |
127 | Empty files can't be valid archives |
128 | W: Failed to fetch ${COMPRESSOR}:$(readlink -f rootdir/var/lib/apt/lists/partial/localhost:8080_Packages) Empty files can't be valid archives | |
4260fd39 | 129 | |
196c511c | 130 | E: Some index files failed to download. They have been ignored, or old ones used instead." "empty file Packages.$COMPRESS over http" |
4260fd39 DK |
131 | } |
132 | ||
79d5bab6 | 133 | for COMPRESSOR in 'gzip' 'bzip2' 'lzma' 'xz'; do testoverfile $COMPRESSOR; done |
4260fd39 DK |
134 | |
135 | # do the same again with http instead of file | |
136 | changetowebserver | |
6874a1a8 | 137 | |
79d5bab6 | 138 | for COMPRESSOR in 'gzip' 'bzip2' 'lzma' 'xz'; do testoverhttp $COMPRESSOR; done |