]>
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 | ||
13 | local GOODSHOW="$(aptcache show testpkg) | |
14 | " | |
15 | local GOODPOLICY="$(aptcache policy testpkg)" | |
16 | local GOODSHOWSRC="$(aptcache showsrc testpkg) | |
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" | |
49 | aptget install -d testpkg -qq && msgpass || msgfail | |
50 | msgtest "\tdeb file is present"; test -f rootdir/var/cache/apt/archives/testpkg_1.0_i386.deb && msgpass || msgfail | |
51 | aptget clean | |
52 | msgtest "\tdeb file is gone"; ! test -f rootdir/var/cache/apt/archives/testpkg_1.0_i386.deb && msgpass || msgfail | |
53 | fi | |
54 | rm rootdir/var/cache/apt/pkgcache.bin rootdir/var/cache/apt/srcpkgcache.bin | |
55 | testequal "$GOODSHOW" aptcache show testpkg | |
56 | testequal "$GOODSHOW" aptcache show testpkg | |
57 | rm rootdir/var/cache/apt/pkgcache.bin rootdir/var/cache/apt/srcpkgcache.bin | |
58 | testequal "$GOODPOLICY" aptcache policy testpkg | |
59 | testequal "$GOODPOLICY" aptcache policy testpkg | |
60 | rm rootdir/var/cache/apt/pkgcache.bin rootdir/var/cache/apt/srcpkgcache.bin | |
61 | testequal "$GOODSHOWSRC" aptcache showsrc testpkg | |
62 | testequal "$GOODSHOWSRC" aptcache showsrc testpkg | |
63 | rm -f rootdir/var/cache/apt/pkgcache.bin rootdir/var/cache/apt/srcpkgcache.bin | |
64 | rm -rf rootdir/var/cache/apt/archives | |
65 | msgtest "Check if the source is aptgetable" | |
66 | aptget source testpkg -qq 2> /dev/null > /dev/null && msgpass || msgfail | |
67 | msgtest "\tdsc file is present"; test -f testpkg_1.0.dsc && msgpass || msgfail | |
68 | msgtest "\tdirectory is present"; test -d testpkg-1.0 && msgpass || msgfail | |
69 | rm -rf testpkg-1.0 | |
70 | } | |
71 | ||
d88a49c8 | 72 | echo 'Acquire::GzipIndexes "false";' > rootdir/etc/apt/apt.conf.d/02compressindex |
f213b6ea DK |
73 | msgmsg "File: Test with uncompressed indexes" |
74 | testrun | |
75 | ||
76 | aptget update -qq -o Acquire::Pdiffs=1 | |
77 | msgmsg "File: Test with uncompressed indexes (update unchanged with pdiffs)" | |
78 | testrun | |
79 | ||
80 | aptget update -qq -o Acquire::Pdiffs=0 | |
81 | msgmsg "File: Test with uncompressed indexes (update unchanged without pdiffs)" | |
82 | testrun | |
83 | ||
84 | rm -rf rootdir/var/lib/apt/lists | |
85 | echo 'Acquire::CompressionTypes::Order:: "gz"; | |
86 | Acquire::GzipIndexes "true";' > rootdir/etc/apt/apt.conf.d/02compressindex | |
87 | ||
88 | aptget update -qq | |
89 | msgmsg "File: Test with compressed indexes" | |
90 | testrun "compressed" | |
91 | ||
92 | aptget update -qq -o Acquire::Pdiffs=1 | |
93 | msgmsg "File: Test with compressed indexes (update unchanged with pdiffs)" | |
94 | testrun "compressed" | |
95 | ||
96 | aptget update -qq -o Acquire::Pdiffs=0 | |
97 | msgmsg "File: Test with compressed indexes (update unchanged without pdiffs)" | |
98 | testrun "compressed" | |
99 | ||
100 | rm rootdir/etc/apt/apt.conf.d/02compressindex | |
101 | changetowebserver | |
102 | aptget update -qq | |
103 | local GOODPOLICY="$(aptcache policy testpkg)" | |
104 | test $(echo "$GOODPOLICY" | grep -e '^testpkg:' -e '^ Candidate:' -e '^ Installed: (none)' -e '500 http://' | wc -l) -eq 4 | |
105 | testequal "$GOODPOLICY" aptcache policy testpkg | |
106 | ||
107 | msgmsg "HTTP: Test with uncompressed indexes" | |
108 | testrun | |
109 | ||
110 | aptget update -qq -o Acquire::Pdiffs=1 | |
111 | msgmsg "HTTP: Test with uncompressed indexes (update unchanged with pdiffs)" | |
112 | testrun | |
113 | ||
114 | aptget update -qq -o Acquire::Pdiffs=0 | |
115 | msgmsg "HTTP: Test with uncompressed indexes (update unchanged without pdiffs)" | |
116 | testrun | |
117 | ||
118 | rm -rf rootdir/var/lib/apt/lists | |
119 | echo 'Acquire::CompressionTypes::Order:: "gz"; | |
120 | Acquire::GzipIndexes "true";' > rootdir/etc/apt/apt.conf.d/02compressindex | |
121 | ||
122 | aptget update -qq | |
123 | msgmsg "HTTP: Test with compressed indexes" | |
124 | testrun "compressed" | |
125 | ||
126 | aptget update -qq -o Acquire::Pdiffs=1 | |
127 | msgmsg "HTTP: Test with compressed indexes (update unchanged with pdiffs)" | |
128 | testrun "compressed" | |
129 | ||
130 | aptget update -qq -o Acquire::Pdiffs=0 | |
131 | msgmsg "HTTP: Test with compressed indexes (update unchanged without pdiffs)" | |
132 | testrun "compressed" |