128 KiB DSC files ought to be enough for everyone
[ntk/apt.git] / test / integration / test-apt-ftparchive-src-cachedb
CommitLineData
ce928105
MV
1#!/bin/sh
2set -e
3
4assert_correct_sources_file() {
5 testequal "Package: bar
ce928105 6Architecture: all
e1a69e71
DK
7Version: 1.0
8Binary: bar
ce928105
MV
9Format: 3.0 (native)
10Directory: pool/main
11Files:
12 7b57dd065e51de5905288a5104d4bef5 406 bar_1.0.dsc
13 d41d8cd98f00b204e9800998ecf8427e 0 bar_1.0.tar.gz
14Package-List:
15 bar deb admin extra
16Checksums-Sha1:
17 17a40b76715f393ab7fd6485c9392a02f1adf903 406 bar_1.0.dsc
18 da39a3ee5e6b4b0d3255bfef95601890afd80709 0 bar_1.0.tar.gz
19Checksums-Sha256:
20 d9d7507f66a89258b6920aca47747d7a30e0e64b09ecabbf02b2efbdabf840a9 406 bar_1.0.dsc
21 e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 bar_1.0.tar.gz
22Checksums-Sha512:
23 ee0a9bfb6614159b45203fc29487d4f37387993ca0e6d6f27b80010498f3731d75753188ece307508ae9af0259bd11a6af15a1a38f0b87dbd5ea1273b7a7d53e 406 bar_1.0.dsc
24 cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e 0 bar_1.0.tar.gz
25
26Package: foo
ce928105 27Architecture: all
e1a69e71
DK
28Version: 1.0
29Binary: foo
ce928105
MV
30Format: 3.0 (native)
31Directory: pool/main
32Files:
33 d144826e6f02831c1933e910c92cd7e0 171 foo_1.0.dsc
34 d41d8cd98f00b204e9800998ecf8427e 0 foo_1.0.tar.gz
35Package-List:
36 foo deb admin extra
37Checksums-Sha1:
38 979306aa3ccff3d61bba062bb6977e2493c6f907 171 foo_1.0.dsc
39 da39a3ee5e6b4b0d3255bfef95601890afd80709 0 foo_1.0.tar.gz
40Checksums-Sha256:
41 8c780af8b5a6d5b3c2e2f9518940beebea52ac6d6ad7b52c082dc925cfe5b532 171 foo_1.0.dsc
42 e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 foo_1.0.tar.gz
43Checksums-Sha512:
44 3da0240fd764657c2f3661b4d750578a9a99b0580591b133756379d48117ebda87a5ed2467f513200d6e7eaf51422cbe91c15720eef7fb4bba2cc8ff81ebc547 171 foo_1.0.dsc
45 cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e 0 foo_1.0.tar.gz
e1a69e71 46" aptsortpkgs ./aptarchive/dists/test/main/source/Sources
ce928105
MV
47}
48
49create_source_files() {
50 NAME="$1"
51 REQUEST_CLEARSIGN="$2"
52
53 TARFILE="aptarchive/pool/main/${NAME}_1.0.tar.gz"
54 DSC_FILE="aptarchive/pool/main/${NAME}_1.0.dsc"
55 touch $TARFILE
56 if [ "$REQUEST_CLEARSIGN" = "CLEARSIGN" ]; then
57 printf -- "-----BEGIN PGP SIGNED MESSAGE-----\n\n" > $DSC_FILE
58 fi
59 cat >> $DSC_FILE << EOF
60Format: 3.0 (native)
61Source: $NAME
62Binary: $NAME
63Architecture: all
64Version: 1.0
65Package-List:
66 $NAME deb admin extra
67Files:
68 $(md5sum $TARFILE|cut -f1 -d' ') $(stat --print="%s" $TARFILE) ${NAME}_1.0.tar.gz
69EOF
70 if [ "$REQUEST_CLEARSIGN" = "CLEARSIGN" ]; then
71 cat >> $DSC_FILE <<EOF
72
73-----BEGIN PGP SIGNATURE-----
74Version: GnuPG v1.4.11 (GNU/Linux)
75
76iEYEARECAAYFAk3k/VoACgkQliSD4VZixzQxlgCgpav7j68z48qNTDFuT9fLqwT5
77DFwAoIXatJFENEC371bMKTkUKlwZxQEk
78=iI9V
79-----END PGP SIGNATURE-----
80EOF
81 fi
82}
83
84create_clearsigned_source_files() {
85 NAME="$1"
86 create_source_files "$NAME" "CLEARSIGN"
87}
88
89#
90# main()
91#
92TESTDIR=$(readlink -f $(dirname $0))
93. $TESTDIR/framework
94setupenvironment
95configarchitecture "i386"
96
97msgtest 'Test apt-ftparchive source with missing hashes in .dsc'
98
99mkdir -p aptarchive/pool/main
100create_source_files foo
101create_clearsigned_source_files bar
102
103mkdir -p aptarchive/dists/test/main/i18n/
104mkdir -p aptarchive/dists/test/main/source/
105
106mkdir aptarchive-overrides
107mkdir aptarchive-cache
cf6bbca0
MV
108
109
110
111# generate with --db option
112(cd aptarchive && aptftparchive --db ./test.db sources pool/main/ \
113 -o APT::FTPArchive::ShowCacheMisses=1 \
114 > dists/test/main/source/Sources \
115 2> stats-out.txt
116 testequal " Misses in Cache: 2" grep Misses stats-out.txt
117)
118assert_correct_sources_file
119
120# generate with --db option (again to ensure its in the cache)
121(cd aptarchive && aptftparchive --db ./test.db sources pool/main/ \
122 -o APT::FTPArchive::ShowCacheMisses=1 \
123 > dists/test/main/source/Sources \
124 2> stats-out.txt
125 testequal " Misses in Cache: 0" grep Misses stats-out.txt
126)
127assert_correct_sources_file
128
129
130
131# get ready for the "apt-ftparchive generate" command
ce928105
MV
132cat > apt-ftparchive.conf <<"EOF"
133Dir {
134 ArchiveDir "./aptarchive";
135 OverrideDir "./aptarchive-overrides";
136 CacheDir "./aptarchive-cache";
137};
138
139Default {
140 Packages::Compress ". gzip bzip2";
141 Contents::Compress ". gzip bzip2";
142 LongDescription "false";
143};
144
145TreeDefault {
146 BinCacheDB "packages-$(SECTION)-$(ARCH).db";
147 SrcCacheDB "sources-$(SECTION).db";
148
149 Directory "pool/$(SECTION)";
150 SrcDirectory "pool/$(SECTION)";
151
ce928105 152 Sources "$(DIST)/$(SECTION)/source/Sources";
ce928105
MV
153};
154
155Tree "dists/test" {
156 Sections "main";
157 Architectures "source";
158
159};
160EOF
161
0a3b93fc 162# generate (empty cachedb)
ce928105
MV
163aptftparchive generate apt-ftparchive.conf -o APT::FTPArchive::ShowCacheMisses=1 2> stats-out.txt
164testequal " Misses in Cache: 2" grep Misses stats-out.txt
165assert_correct_sources_file
166
167
168# generate again out of the cache
169rm -f ./aptarchive/dists/test/main/source/Sources
170aptftparchive generate apt-ftparchive.conf -o APT::FTPArchive::ShowCacheMisses=1 2> stats-out.txt
171testequal " Misses in Cache: 0" grep Misses stats-out.txt
172assert_correct_sources_file
173
cf6bbca0
MV
174
175
ce928105
MV
176# generate invalid files
177mkdir aptarchive/pool/invalid
178printf "meep" > aptarchive/pool/invalid/invalid_1.0.dsc
179testequal "
180E: Could not find a Source entry in the DSC 'aptarchive/pool/invalid/invalid_1.0.dsc'" aptftparchive sources aptarchive/pool/invalid
181rm -f aptarchive/pool/invalid/invalid_1.0.dsc
182
53ba4e2c
MV
183# ensure clean works
184rm -f aptarchive/pool/main/*
185aptftparchive clean apt-ftparchive.conf -o Debug::APT::FTPArchive::Clean=1 > clean-out.txt 2>&1
186testequal "0 Number of unique keys in the tree" grep unique clean-out.txt
187testequal "sources-main.db" grep sources-main.db clean-out.txt
188
ce928105 189