]>
Commit | Line | Data |
---|---|---|
019dfaed MV |
1 | #!/bin/sh |
2 | set -e | |
3 | ||
4 | TESTDIR=$(readlink -f $(dirname $0)) | |
5 | . $TESTDIR/framework | |
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 | ||
30 | setupaptarchive | |
31 | ||
32 | APTARCHIVE=$(readlink -f ./aptarchive) | |
33 | ||
34 | # normal operation gets highest version number | |
4652a9ee MV |
35 | HEADER="Reading package lists... |
36 | Building dependency tree..." | |
37 | testequal "$HEADER | |
38 | Need to get 0 B of source archives. | |
39 | 'file://${APTARCHIVE}/foo_2.0.dsc' foo_2.0.dsc 0 MD5Sum:d41d8cd98f00b204e9800998ecf8427e | |
40 | 'file://${APTARCHIVE}/foo_2.0.tar.gz' foo_2.0.tar.gz 0 MD5Sum:d41d8cd98f00b204e9800998ecf8427e" aptget source -q --print-uris foo | |
019dfaed MV |
41 | |
42 | # select by release | |
4652a9ee | 43 | testequal "$HEADER |
bfa7bfc8 | 44 | Selected version '1.0' (stable) for foo |
4652a9ee | 45 | Need to get 0 B of source archives. |
019dfaed | 46 | 'file://${APTARCHIVE}/foo_1.0.dsc' foo_1.0.dsc 0 MD5Sum:d41d8cd98f00b204e9800998ecf8427e |
4652a9ee | 47 | 'file://${APTARCHIVE}/foo_1.0.tar.gz' foo_1.0.tar.gz 0 MD5Sum:d41d8cd98f00b204e9800998ecf8427e" aptget source -q --print-uris foo/stable |
019dfaed MV |
48 | |
49 | # select by version | |
4652a9ee MV |
50 | testequal "$HEADER |
51 | Need to get 0 B of source archives. | |
52 | 'file://${APTARCHIVE}/foo_1.0.dsc' foo_1.0.dsc 0 MD5Sum:d41d8cd98f00b204e9800998ecf8427e | |
53 | 'file://${APTARCHIVE}/foo_1.0.tar.gz' foo_1.0.tar.gz 0 MD5Sum:d41d8cd98f00b204e9800998ecf8427e" aptget source -q --print-uris foo=1.0 | |
019dfaed | 54 | |
651ae5ce MV |
55 | # select by release with no binary package (Bug#731102) but ensure to get |
56 | # higest version | |
4652a9ee | 57 | testequal "$HEADER |
bfa7bfc8 | 58 | Selected version '0.1' (wheezy) for foo |
4652a9ee | 59 | Need to get 0 B of source archives. |
019dfaed | 60 | 'file://${APTARCHIVE}/foo_0.1.dsc' foo_0.1.dsc 0 MD5Sum:d41d8cd98f00b204e9800998ecf8427e |
4652a9ee | 61 | 'file://${APTARCHIVE}/foo_0.1.tar.gz' foo_0.1.tar.gz 0 MD5Sum:d41d8cd98f00b204e9800998ecf8427e" aptget source -q --print-uris foo/wheezy |
019dfaed | 62 | |
c6b83f9c MV |
63 | # unavailable one |
64 | testequal "$HEADER | |
017d3f3b | 65 | E: Can not find version '9.9-not-there' of package 'foo' |
c6b83f9c MV |
66 | E: Unable to find a source package for foo" aptget source -q --print-uris foo=9.9-not-there |
67 | ||
65dcff55 MV |
68 | # version and release |
69 | testequal "$HEADER | |
70 | Need to get 0 B of source archives. | |
71 | 'file://${APTARCHIVE}/foo_0.0.1.dsc' foo_0.0.1.dsc 0 MD5Sum:d41d8cd98f00b204e9800998ecf8427e | |
72 | 'file://${APTARCHIVE}/foo_0.0.1.tar.gz' foo_0.0.1.tar.gz 0 MD5Sum:d41d8cd98f00b204e9800998ecf8427e" aptget source -q --print-uris -t unstable foo=0.0.1 |