]>
Commit | Line | Data |
---|---|---|
0a3b93fc MV |
1 | #!/bin/sh |
2 | set -e | |
3 | ||
4 | ensure_correct_packages_file() { | |
5 | testequal "Package: foo | |
6 | Priority: optional | |
7 | Section: others | |
8 | Installed-Size: 29 | |
9 | Maintainer: Joe Sixpack <joe@example.org> | |
10 | Architecture: i386 | |
11 | Version: 1 | |
12 | Filename: pool/main/foo_1_i386.deb" head -n8 ./aptarchive/dists/test/main/binary-i386/Packages | |
13 | } | |
14 | ||
15 | ensure_correct_contents_file() { | |
16 | testequal "usr/bin/foo-i386 others/foo | |
17 | usr/share/doc/foo/FEATURES others/foo | |
18 | usr/share/doc/foo/changelog others/foo | |
19 | usr/share/doc/foo/copyright others/foo" cat ./aptarchive/dists/test/Contents-i386 | |
20 | } | |
21 | ||
22 | # | |
23 | # main() | |
24 | # | |
25 | TESTDIR=$(readlink -f $(dirname $0)) | |
26 | . $TESTDIR/framework | |
27 | setupenvironment | |
28 | configarchitecture "i386" | |
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) | |
72 | aptftparchive generate ftparchive.conf -o APT::FTPArchive::ShowCacheMisses=1 2> stats-out.txt | |
73 | ensure_correct_packages_file | |
74 | ensure_correct_contents_file | |
75 | testequal " Misses in Cache: 2 | |
76 | dists/test/Contents-i386: New 402 B Misses in Cache: 0" grep Misses stats-out.txt | |
77 | ||
78 | # generate again | |
79 | aptftparchive generate ftparchive.conf -o APT::FTPArchive::ShowCacheMisses=1 2> stats-out.txt | |
80 | ensure_correct_packages_file | |
81 | ensure_correct_contents_file | |
82 | testequal " Misses in Cache: 0 | |
83 | dists/test/Contents-i386: Misses in Cache: 0" grep Misses stats-out.txt | |
84 | ||
85 | # and again (with removing the Packages file) | |
86 | rm -f ./aptarchive/dists/test/main/binary-i386/* | |
87 | rm -f ./aptarchive/dists/test/Contents-i386 | |
88 | aptftparchive generate ftparchive.conf -o APT::FTPArchive::ShowCacheMisses=1 2> stats-out.txt | |
89 | ensure_correct_packages_file | |
90 | ensure_correct_contents_file | |
91 | testequal " Misses in Cache: 0 | |
92 | dists/test/Contents-i386: New 402 B Misses in Cache: 0" grep Misses stats-out.txt | |
93 |