]>
Commit | Line | Data |
---|---|---|
019dfaed MV |
1 | #!/bin/sh |
2 | set -e | |
3 | ||
3abb6a6a DK |
4 | TESTDIR="$(readlink -f "$(dirname "$0")")" |
5 | . "$TESTDIR/framework" | |
019dfaed MV |
6 | |
7 | setupenvironment | |
8 | configarchitecture "i386" | |
9 | ||
10 | # we need to insert a package into "unstable" so that a Release file is | |
11 | # create for the test | |
12 | insertpackage 'wheezy' 'unreleated-package' 'all' '1.0' | |
13 | ||
14 | # a "normal" package with source and binary | |
15 | insertpackage 'unstable' 'foo' 'all' '2.0' | |
16 | insertsource 'unstable' 'foo' 'all' '2.0' | |
17 | ||
66f13784 MV |
18 | # its possible to have multiple src versions in the sources file, ensure |
19 | # to pick the correct one in this case (bts #731853) | |
651ae5ce | 20 | insertsource 'stable' 'foo' 'all' '1.5' |
66f13784 | 21 | insertsource 'stable' 'foo' 'all' '0.5' |
019dfaed MV |
22 | insertpackage 'stable' 'foo' 'all' '1.0' |
23 | insertsource 'stable' 'foo' 'all' '1.0' | |
24 | ||
66f13784 MV |
25 | # this packages exists only as sources, add two versions to ensure that |
26 | # apt will pick the higher version number (bts #731853) | |
651ae5ce | 27 | insertsource 'wheezy' 'foo' 'all' '0.0.1' |
019dfaed MV |
28 | insertsource 'wheezy' 'foo' 'all' '0.1' |
29 | ||
3d284148 | 30 | # the order of these versions is chosen to ensure that |
321213f0 AC |
31 | # * apt will pick the one in the correct release, despite a higher version coming later and |
32 | # * apt will pick the highest version in a release, despite a lower version coming later. | |
33 | # (bts #746412) | |
34 | insertsource 'stable' 'baz' 'all' '1.0' | |
35 | insertsource 'unstable' 'baz' 'all' '2.0' | |
36 | insertsource 'unstable' 'baz' 'all' '1.5' | |
37 | ||
3d284148 DK |
38 | # ensure we really have the situation we wanted (first 2.0 is foo above) |
39 | testequal 'Version: 2.0 | |
40 | Version: 2.0 | |
41 | Version: 1.5' grep '^Version:' aptarchive/dists/unstable/main/source/Sources | |
42 | ||
7c4f1ca5 DK |
43 | insertsource 'stable' 'bar' 'any' '1.1' 'Vcs-Browser: https://anonscm.debian.org/cgit/bar/bar.git |
44 | Vcs-Git: git://anonscm.debian.org/bar/bar.git -b debian/experimental' | |
45 | ||
019dfaed MV |
46 | setupaptarchive |
47 | ||
48 | APTARCHIVE=$(readlink -f ./aptarchive) | |
49 | ||
50 | # normal operation gets highest version number | |
4652a9ee MV |
51 | HEADER="Reading package lists... |
52 | Building dependency tree..." | |
9d2a8a73 | 53 | DOWNLOAD1="Need to get 0 B/25 B of source archives. |
55ae7a51 MV |
54 | 'file://${APTARCHIVE}/foo_1.0.dsc' foo_1.0.dsc 11 SHA256:ed7c25c832596339bee13e4e7c45cf49f869b60d2bf57252f18191d75866c2a7 |
55 | 'file://${APTARCHIVE}/foo_1.0.tar.gz' foo_1.0.tar.gz 14 SHA256:f3da8c6ebc62c8ef2dae439a498dddcdacc1a07f45ff67ad12f44b6e2353c239" | |
9d2a8a73 | 56 | DOWNLOAD2="Need to get 0 B/25 B of source archives. |
55ae7a51 MV |
57 | 'file://${APTARCHIVE}/foo_2.0.dsc' foo_2.0.dsc 11 SHA256:0fcb803ffbeef26db884625aaf06e75f3eda5c994634980e7c20fd37ed1fc104 |
58 | 'file://${APTARCHIVE}/foo_2.0.tar.gz' foo_2.0.tar.gz 14 SHA256:ca9b0b828ca22372502af2b80f61f0bd9063910ece9fc34eeaf9d9e31aa8195a" | |
321213f0 AC |
59 | DOWNLOAD3="Need to get 0 B/25 B of source archives. |
60 | 'file://${APTARCHIVE}/baz_1.0.dsc' baz_1.0.dsc 11 SHA256:322245f56092b466801dda62d79c8687bba9724af6d16d450d655d29e41d3d7b | |
61 | 'file://${APTARCHIVE}/baz_1.0.tar.gz' baz_1.0.tar.gz 14 SHA256:0870bc73164ff5ba1f52153fdcb48e140137f9c7c122d57592cea136a57f73c0" | |
62 | DOWNLOAD4="Need to get 0 B/25 B of source archives. | |
63 | 'file://${APTARCHIVE}/baz_2.0.dsc' baz_2.0.dsc 11 SHA256:47d062d29070b3f592d1c8aed8c1e7913804bbb67ca1d64877c8219dac5e0420 | |
64 | 'file://${APTARCHIVE}/baz_2.0.tar.gz' baz_2.0.tar.gz 14 SHA256:11c1b202c94a64ab6433d9f0ed5515fce1dc7b20e6bcf51cec9ef8b9455f5a41" | |
25b86db1 | 65 | testsuccessequal "$HEADER |
9d2a8a73 | 66 | $DOWNLOAD2" aptget source -q --print-uris foo |
7c4f1ca5 DK |
67 | testsuccessequal "$HEADER |
68 | $DOWNLOAD2" aptget source -q --print-uris foo foo | |
019dfaed | 69 | |
c5909dcf | 70 | # select by release: suite |
25b86db1 | 71 | testsuccessequal "$HEADER |
bfa7bfc8 | 72 | Selected version '1.0' (stable) for foo |
9d2a8a73 | 73 | $DOWNLOAD1" aptget source -q --print-uris foo/stable |
25b86db1 | 74 | testsuccessequal "$HEADER |
c5909dcf | 75 | Selected version '2.0' (unstable) for foo |
9d2a8a73 | 76 | $DOWNLOAD2" aptget source -q --print-uris foo/unstable |
97ee4aad DK |
77 | testsuccessequal "$HEADER |
78 | Selected version '1.0' (stable) for foo | |
79 | $DOWNLOAD1" aptget source -q --print-uris foo -t stable | |
80 | testsuccessequal "$HEADER | |
81 | Selected version '2.0' (unstable) for foo | |
82 | $DOWNLOAD2" aptget source -q --print-uris foo -t unstable | |
321213f0 AC |
83 | testsuccessequal "$HEADER |
84 | Selected version '1.0' (stable) for baz | |
85 | $DOWNLOAD3" aptget source -q --print-uris baz -t stable | |
c5909dcf DK |
86 | |
87 | # select by release: codename | |
25b86db1 | 88 | testsuccessequal "$HEADER |
c5909dcf | 89 | Selected version '2.0' (sid) for foo |
9d2a8a73 | 90 | $DOWNLOAD2" aptget source -q --print-uris foo/sid |
97ee4aad DK |
91 | testsuccessequal "$HEADER |
92 | Selected version '2.0' (sid) for foo | |
93 | $DOWNLOAD2" aptget source -q --print-uris foo -t sid | |
321213f0 AC |
94 | testsuccessequal "$HEADER |
95 | Selected version '2.0' (sid) for baz | |
96 | $DOWNLOAD4" aptget source -q --print-uris baz -t sid | |
019dfaed MV |
97 | |
98 | # select by version | |
25b86db1 | 99 | testsuccessequal "$HEADER |
9d2a8a73 | 100 | $DOWNLOAD1" aptget source -q --print-uris foo=1.0 |
019dfaed | 101 | |
651ae5ce | 102 | # select by release with no binary package (Bug#731102) but ensure to get |
1e3f4083 | 103 | # highest version |
9d2a8a73 | 104 | DOWNLOAD01="Need to get 0 B/25 B of source archives. |
55ae7a51 MV |
105 | 'file://${APTARCHIVE}/foo_0.1.dsc' foo_0.1.dsc 11 SHA256:72af24b0290fe1d13a3e25fddd2633e43c87ff79d249bc850009e47bcce73565 |
106 | 'file://${APTARCHIVE}/foo_0.1.tar.gz' foo_0.1.tar.gz 14 SHA256:ec748ad88a71f98bfdc012e1a7632377d05fe3ebbf9c0922e0691fe4d79c0585" | |
25b86db1 | 107 | testsuccessequal "$HEADER |
bfa7bfc8 | 108 | Selected version '0.1' (wheezy) for foo |
9d2a8a73 | 109 | $DOWNLOAD01" aptget source -q --print-uris foo/wheezy |
019dfaed | 110 | |
c6b83f9c | 111 | # unavailable one |
25b86db1 | 112 | testfailureequal "$HEADER |
017d3f3b | 113 | E: Can not find version '9.9-not-there' of package 'foo' |
c6b83f9c MV |
114 | E: Unable to find a source package for foo" aptget source -q --print-uris foo=9.9-not-there |
115 | ||
65dcff55 | 116 | # version and release |
9d2a8a73 | 117 | DOWNLOAD001="Need to get 0 B/29 B of source archives. |
55ae7a51 MV |
118 | 'file://${APTARCHIVE}/foo_0.0.1.dsc' foo_0.0.1.dsc 13 SHA256:649dfe03bbb70cebdfe7c6bf9036f9f2472510b8f52e823bdf5ade362ebaa76f |
119 | 'file://${APTARCHIVE}/foo_0.0.1.tar.gz' foo_0.0.1.tar.gz 16 SHA256:ab7ba789d178362ecc808e49705e2338988a7f5b9410ec11a6c9555c017de907" | |
25b86db1 | 120 | testsuccessequal "$HEADER |
9d2a8a73 | 121 | $DOWNLOAD001" aptget source -q --print-uris -t unstable foo=0.0.1 |
f83b5627 | 122 | |
25b86db1 | 123 | testsuccessequal "$HEADER |
9d2a8a73 | 124 | Need to get 0 B/25 B of source archives. |
f83b5627 | 125 | Fetch source foo" aptget source -q -s foo |
7c4f1ca5 DK |
126 | |
127 | testfailureequal 'Reading package lists... | |
128 | Building dependency tree... | |
129 | E: Must specify at least one package to fetch source for' aptget source | |
130 | ||
131 | testsuccessequal "Reading package lists... | |
132 | Building dependency tree... | |
133 | NOTICE: 'bar' packaging is maintained in the 'Git' version control system at: | |
134 | git://anonscm.debian.org/bar/bar.git -b debian/experimental | |
135 | Please use: | |
136 | git clone git://anonscm.debian.org/bar/bar.git -b debian/experimental | |
137 | to retrieve the latest (possibly unreleased) updates to the package. | |
138 | Need to get 0 B/25 B of source archives. | |
139 | Fetch source bar" aptget source bar -s |