]>
Commit | Line | Data |
---|---|---|
f213b6ea DK |
1 | #!/bin/sh |
2 | set -e | |
3 | ||
9962ae93 | 4 | TESTDIR=$(readlink -f $(dirname $0)) |
f213b6ea DK |
5 | . $TESTDIR/framework |
6 | ||
7 | setupenvironment | |
8 | configarchitecture "i386" | |
9 | ||
10 | buildsimplenativepackage "testpkg" "i386" "1.0" | |
11 | setupaptarchive | |
12 | ||
718f797c | 13 | GOODSHOW="$(aptcache show testpkg) |
f213b6ea | 14 | " |
718f797c DK |
15 | GOODPOLICY="$(aptcache policy testpkg)" |
16 | GOODSHOWSRC="$(aptcache showsrc testpkg) | |
f213b6ea DK |
17 | " |
18 | ||
b761356f | 19 | test $(echo "$GOODSHOW" | grep -e '^Package: testpkg' -e '^Version: 1.0' -e '^Architecture: i386' | wc -l) -eq 3 || msgdie 'show is broken' |
f213b6ea | 20 | testequal "$GOODSHOW" aptcache show testpkg |
b761356f | 21 | test $(echo "$GOODPOLICY" | grep -e '^testpkg:' -e '^ Candidate:' -e '^ Installed: (none)' -e '500 file:/' | wc -l) -eq 4 || msgdie 'policy is broken' |
f213b6ea | 22 | testequal "$GOODPOLICY" aptcache policy testpkg |
b761356f | 23 | test $(echo "$GOODSHOWSRC" | grep -e '^Package: testpkg' -e '^Format: 3.0 (native)' -e '^Files:' -e '^Checksums-Sha256:' | wc -l) -eq 4 || msgdie 'showsrc is broken' |
f213b6ea DK |
24 | testequal "$GOODSHOWSRC" aptcache showsrc testpkg |
25 | ||
26 | ||
27 | testrun() { | |
28 | local F | |
29 | if [ -e rootdir/var/lib/apt/lists/*localhost*Release ]; then | |
30 | msgtest "Check if all index files are" "${1:-uncompressed}" | |
31 | if [ "$1" = "compressed" ]; then | |
32 | ! test -e rootdir/var/lib/apt/lists/*_Packages || F=1 | |
33 | ! test -e rootdir/var/lib/apt/lists/*_Sources || F=1 | |
34 | test -e rootdir/var/lib/apt/lists/*_Packages.gz || F=1 | |
35 | test -e rootdir/var/lib/apt/lists/*_Sources.gz || F=1 | |
36 | else | |
37 | test -e rootdir/var/lib/apt/lists/*_Packages || F=1 | |
38 | test -e rootdir/var/lib/apt/lists/*_Sources || F=1 | |
39 | ! test -e rootdir/var/lib/apt/lists/*_Packages.gz || F=1 | |
40 | ! test -e rootdir/var/lib/apt/lists/*_Sources.gz || F=1 | |
41 | fi | |
42 | if [ -n "$F" ]; then | |
43 | ls -laR rootdir/var/lib/apt/lists/ | |
44 | msgfail | |
45 | else | |
46 | msgpass | |
47 | fi | |
48 | msgtest "Check if package is downloadable" | |
0440d936 DK |
49 | testsuccess --nomsg aptget install -d testpkg |
50 | msgtest "\tdeb file is present"; testsuccess --nomsg test -f rootdir/var/cache/apt/archives/testpkg_1.0_i386.deb | |
f213b6ea | 51 | aptget clean |
0440d936 | 52 | msgtest "\tdeb file is gone"; testfailure --nomsg test -f rootdir/var/cache/apt/archives/testpkg_1.0_i386.deb |
f213b6ea | 53 | fi |
8de79b68 | 54 | rm -f rootdir/var/cache/apt/pkgcache.bin rootdir/var/cache/apt/srcpkgcache.bin |
f213b6ea DK |
55 | testequal "$GOODSHOW" aptcache show testpkg |
56 | testequal "$GOODSHOW" aptcache show testpkg | |
8de79b68 | 57 | rm -f rootdir/var/cache/apt/pkgcache.bin rootdir/var/cache/apt/srcpkgcache.bin |
f213b6ea DK |
58 | testequal "$GOODPOLICY" aptcache policy testpkg |
59 | testequal "$GOODPOLICY" aptcache policy testpkg | |
8de79b68 | 60 | rm -f rootdir/var/cache/apt/pkgcache.bin rootdir/var/cache/apt/srcpkgcache.bin |
f213b6ea DK |
61 | testequal "$GOODSHOWSRC" aptcache showsrc testpkg |
62 | testequal "$GOODSHOWSRC" aptcache showsrc testpkg | |
8de79b68 | 63 | aptget clean |
f213b6ea | 64 | msgtest "Check if the source is aptgetable" |
0440d936 DK |
65 | testsuccess --nomsg aptget source testpkg |
66 | msgtest "\tdsc file is present"; testsuccess --nomsg test -f testpkg_1.0.dsc | |
67 | msgtest "\tdirectory is present"; testsuccess --nomsg test -d testpkg-1.0 | |
f213b6ea DK |
68 | rm -rf testpkg-1.0 |
69 | } | |
70 | ||
d88a49c8 | 71 | echo 'Acquire::GzipIndexes "false";' > rootdir/etc/apt/apt.conf.d/02compressindex |
f213b6ea DK |
72 | msgmsg "File: Test with uncompressed indexes" |
73 | testrun | |
74 | ||
0440d936 | 75 | testsuccess aptget update -o Acquire::Pdiffs=1 |
f213b6ea DK |
76 | msgmsg "File: Test with uncompressed indexes (update unchanged with pdiffs)" |
77 | testrun | |
78 | ||
0440d936 | 79 | testsuccess aptget update -o Acquire::Pdiffs=0 |
f213b6ea DK |
80 | msgmsg "File: Test with uncompressed indexes (update unchanged without pdiffs)" |
81 | testrun | |
82 | ||
83 | rm -rf rootdir/var/lib/apt/lists | |
84 | echo 'Acquire::CompressionTypes::Order:: "gz"; | |
85 | Acquire::GzipIndexes "true";' > rootdir/etc/apt/apt.conf.d/02compressindex | |
86 | ||
0440d936 | 87 | testsuccess aptget update |
f213b6ea DK |
88 | msgmsg "File: Test with compressed indexes" |
89 | testrun "compressed" | |
90 | ||
0440d936 | 91 | testsuccess aptget update -o Acquire::Pdiffs=1 |
f213b6ea DK |
92 | msgmsg "File: Test with compressed indexes (update unchanged with pdiffs)" |
93 | testrun "compressed" | |
94 | ||
0440d936 | 95 | testsuccess aptget update -o Acquire::Pdiffs=0 |
f213b6ea DK |
96 | msgmsg "File: Test with compressed indexes (update unchanged without pdiffs)" |
97 | testrun "compressed" | |
98 | ||
99 | rm rootdir/etc/apt/apt.conf.d/02compressindex | |
100 | changetowebserver | |
0440d936 | 101 | testsuccess aptget update |
718f797c | 102 | GOODPOLICY="$(aptcache policy testpkg)" |
f213b6ea DK |
103 | test $(echo "$GOODPOLICY" | grep -e '^testpkg:' -e '^ Candidate:' -e '^ Installed: (none)' -e '500 http://' | wc -l) -eq 4 |
104 | testequal "$GOODPOLICY" aptcache policy testpkg | |
105 | ||
106 | msgmsg "HTTP: Test with uncompressed indexes" | |
107 | testrun | |
108 | ||
0440d936 | 109 | testsuccess aptget update -o Acquire::Pdiffs=1 |
f213b6ea DK |
110 | msgmsg "HTTP: Test with uncompressed indexes (update unchanged with pdiffs)" |
111 | testrun | |
112 | ||
0440d936 | 113 | testsuccess aptget update -o Acquire::Pdiffs=0 |
f213b6ea DK |
114 | msgmsg "HTTP: Test with uncompressed indexes (update unchanged without pdiffs)" |
115 | testrun | |
116 | ||
117 | rm -rf rootdir/var/lib/apt/lists | |
118 | echo 'Acquire::CompressionTypes::Order:: "gz"; | |
119 | Acquire::GzipIndexes "true";' > rootdir/etc/apt/apt.conf.d/02compressindex | |
120 | ||
0440d936 | 121 | testsuccess aptget update |
f213b6ea DK |
122 | msgmsg "HTTP: Test with compressed indexes" |
123 | testrun "compressed" | |
124 | ||
0440d936 | 125 | testsuccess aptget update -o Acquire::Pdiffs=1 |
f213b6ea DK |
126 | msgmsg "HTTP: Test with compressed indexes (update unchanged with pdiffs)" |
127 | testrun "compressed" | |
128 | ||
0440d936 | 129 | testsuccess aptget update -o Acquire::Pdiffs=0 |
f213b6ea DK |
130 | msgmsg "HTTP: Test with compressed indexes (update unchanged without pdiffs)" |
131 | testrun "compressed" |