]>
Commit | Line | Data |
---|---|---|
0a3b93fc MV |
1 | #!/bin/sh |
2 | set -e | |
3 | ||
4 | ensure_correct_packages_file() { | |
5 | testequal "Package: foo | |
e8fb1cdf DK |
6 | Architecture: i386 |
7 | Version: 1 | |
0a3b93fc MV |
8 | Priority: optional |
9 | Section: others | |
0a3b93fc | 10 | Maintainer: Joe Sixpack <joe@example.org> |
e8fb1cdf | 11 | $(dpkg-deb -I ./aptarchive/pool/main/foo_1_i386.deb | grep 'Installed-Size:' | sed 's#^ ##') |
25b86db1 | 12 | Filename: pool/main/foo_1_i386.deb" head -n8 ./aptarchive/dists/test/main/binary-i386/Packages |
0a3b93fc MV |
13 | } |
14 | ||
15 | ensure_correct_contents_file() { | |
25b86db1 | 16 | testfileequal ./aptarchive/dists/test/Contents-i386 "usr/bin/foo-i386 others/foo |
0a3b93fc MV |
17 | usr/share/doc/foo/FEATURES others/foo |
18 | usr/share/doc/foo/changelog others/foo | |
25b86db1 | 19 | usr/share/doc/foo/copyright others/foo" |
0a3b93fc MV |
20 | } |
21 | ||
22 | # | |
23 | # main() | |
24 | # | |
3abb6a6a DK |
25 | TESTDIR="$(readlink -f "$(dirname "$0")")" |
26 | . "$TESTDIR/framework" | |
0a3b93fc | 27 | setupenvironment |
2a64259c | 28 | configarchitecture 'i386' |
0a3b93fc MV |
29 | |
30 | mkdir -p aptarchive/dists/test/main/i18n/ | |
31 | mkdir -p aptarchive/dists/test/main/source/ | |
32 | mkdir -p aptarchive/dists/test/main/binary-i386 | |
33 | mkdir -p aptarchive/pool/main | |
34 | ||
35 | mkdir aptarchive-overrides | |
36 | mkdir aptarchive-cache | |
37 | cat > ftparchive.conf <<"EOF" | |
38 | Dir { | |
39 | ArchiveDir "./aptarchive"; | |
40 | OverrideDir "./aptarchive-overrides"; | |
41 | CacheDir "./aptarchive-cache"; | |
42 | }; | |
43 | ||
44 | Default { | |
45 | Packages::Compress ". gzip bzip2"; | |
46 | Contents::Compress ". gzip bzip2"; | |
47 | LongDescription "false"; | |
48 | }; | |
49 | ||
50 | TreeDefault { | |
51 | BinCacheDB "packages-$(SECTION)-$(ARCH).db"; | |
52 | ||
53 | Directory "pool/$(SECTION)"; | |
54 | SrcDirectory "pool/$(SECTION)"; | |
55 | ||
56 | Packages "$(DIST)/$(SECTION)/binary-$(ARCH)/Packages"; | |
57 | Contents "$(DIST)/Contents-$(ARCH)"; | |
58 | }; | |
59 | ||
60 | Tree "dists/test" { | |
61 | Sections "main"; | |
62 | Architectures "i386"; | |
63 | ||
64 | }; | |
65 | EOF | |
66 | ||
67 | # build one pacakge | |
68 | buildsimplenativepackage 'foo' 'i386' '1' 'test' | |
69 | mv incoming/* aptarchive/pool/main/ | |
70 | ||
71 | # generate (empty cachedb) | |
87d6947d | 72 | testsuccess aptftparchive generate ftparchive.conf -o APT::FTPArchive::ShowCacheMisses=1 |
d9e518c6 | 73 | cp rootdir/tmp/testsuccess.output stats-out.txt |
0a3b93fc MV |
74 | ensure_correct_packages_file |
75 | ensure_correct_contents_file | |
22ac12b2 DK |
76 | testsuccessequal ' Misses in Cache: 2 |
77 | dists/test/Contents-i386: New 402 B Misses in Cache: 0' grep Misses stats-out.txt | |
0a3b93fc MV |
78 | |
79 | # generate again | |
87d6947d | 80 | testsuccess aptftparchive generate ftparchive.conf -o APT::FTPArchive::ShowCacheMisses=1 |
d9e518c6 | 81 | cp rootdir/tmp/testsuccess.output stats-out.txt |
0a3b93fc MV |
82 | ensure_correct_packages_file |
83 | ensure_correct_contents_file | |
22ac12b2 DK |
84 | testsuccessequal ' Misses in Cache: 0 |
85 | dists/test/Contents-i386: Misses in Cache: 0' grep Misses stats-out.txt | |
0a3b93fc MV |
86 | |
87 | # and again (with removing the Packages file) | |
88 | rm -f ./aptarchive/dists/test/main/binary-i386/* | |
89 | rm -f ./aptarchive/dists/test/Contents-i386 | |
87d6947d | 90 | testsuccess aptftparchive generate ftparchive.conf -o APT::FTPArchive::ShowCacheMisses=1 |
d9e518c6 | 91 | cp rootdir/tmp/testsuccess.output stats-out.txt |
0a3b93fc MV |
92 | ensure_correct_packages_file |
93 | ensure_correct_contents_file | |
22ac12b2 DK |
94 | testsuccessequal ' Misses in Cache: 0 |
95 | dists/test/Contents-i386: New 402 B Misses in Cache: 0' grep Misses stats-out.txt | |
0a3b93fc | 96 | |
53ba4e2c MV |
97 | # and clean |
98 | rm -rf aptarchive/pool/main/* | |
87d6947d DK |
99 | testsuccessequal "packages-main-i386.db" aptftparchive clean ftparchive.conf |
100 | testsuccess aptftparchive clean ftparchive.conf -o Debug::APT::FTPArchive::Clean=1 | |
d9e518c6 | 101 | cp rootdir/tmp/testsuccess.output clean-out.txt |
25b86db1 DK |
102 | testsuccessequal "0 Number of unique keys in the tree" grep unique clean-out.txt |
103 | testsuccessequal "packages-main-i386.db" grep packages-main-i386.db clean-out.txt |