]> git.saurik.com Git - apt.git/blame - test/integration/test-apt-get-source
condense parallel requests with the same hashes to one
[apt.git] / test / integration / test-apt-get-source
CommitLineData
019dfaed
MV
1#!/bin/sh
2set -e
3
4TESTDIR=$(readlink -f $(dirname $0))
5. $TESTDIR/framework
6
7setupenvironment
8configarchitecture "i386"
9
10# we need to insert a package into "unstable" so that a Release file is
11# create for the test
12insertpackage 'wheezy' 'unreleated-package' 'all' '1.0'
13
14# a "normal" package with source and binary
15insertpackage 'unstable' 'foo' 'all' '2.0'
16insertsource '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 20insertsource 'stable' 'foo' 'all' '1.5'
66f13784 21insertsource 'stable' 'foo' 'all' '0.5'
019dfaed
MV
22insertpackage 'stable' 'foo' 'all' '1.0'
23insertsource '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 27insertsource 'wheezy' 'foo' 'all' '0.0.1'
019dfaed
MV
28insertsource 'wheezy' 'foo' 'all' '0.1'
29
30setupaptarchive
31
32APTARCHIVE=$(readlink -f ./aptarchive)
33
34# normal operation gets highest version number
4652a9ee
MV
35HEADER="Reading package lists...
36Building dependency tree..."
9d2a8a73
DK
37DOWNLOAD1="Need to get 0 B/25 B of source archives.
38'file://${APTARCHIVE}/foo_1.0.dsc' foo_1.0.dsc 11 MD5Sum:b998e085e36cf162e6a33c2801318fef
39'file://${APTARCHIVE}/foo_1.0.tar.gz' foo_1.0.tar.gz 14 MD5Sum:d46b9a02af8487cbeb49165540c88184"
40DOWNLOAD2="Need to get 0 B/25 B of source archives.
41'file://${APTARCHIVE}/foo_2.0.dsc' foo_2.0.dsc 11 MD5Sum:c0de572c6f8aa576c8ff78c81132ed55
42'file://${APTARCHIVE}/foo_2.0.tar.gz' foo_2.0.tar.gz 14 MD5Sum:e10bb487c375b2b938d27bd31c2d1f5f"
25b86db1 43testsuccessequal "$HEADER
9d2a8a73 44$DOWNLOAD2" aptget source -q --print-uris foo
019dfaed 45
c5909dcf 46# select by release: suite
25b86db1 47testsuccessequal "$HEADER
bfa7bfc8 48Selected version '1.0' (stable) for foo
9d2a8a73 49$DOWNLOAD1" aptget source -q --print-uris foo/stable
25b86db1 50testsuccessequal "$HEADER
c5909dcf 51Selected version '2.0' (unstable) for foo
9d2a8a73 52$DOWNLOAD2" aptget source -q --print-uris foo/unstable
c5909dcf
DK
53
54# select by release: codename
25b86db1 55testsuccessequal "$HEADER
c5909dcf 56Selected version '2.0' (sid) for foo
9d2a8a73 57$DOWNLOAD2" aptget source -q --print-uris foo/sid
019dfaed
MV
58
59# select by version
25b86db1 60testsuccessequal "$HEADER
9d2a8a73 61$DOWNLOAD1" aptget source -q --print-uris foo=1.0
019dfaed 62
651ae5ce 63# select by release with no binary package (Bug#731102) but ensure to get
1e3f4083 64# highest version
9d2a8a73
DK
65DOWNLOAD01="Need to get 0 B/25 B of source archives.
66'file://${APTARCHIVE}/foo_0.1.dsc' foo_0.1.dsc 11 MD5Sum:0811a4d85238056c613ea897f49f01af
67'file://${APTARCHIVE}/foo_0.1.tar.gz' foo_0.1.tar.gz 14 MD5Sum:fa1ecb7a1a53e8e6f6551ca7db888a61"
25b86db1 68testsuccessequal "$HEADER
bfa7bfc8 69Selected version '0.1' (wheezy) for foo
9d2a8a73 70$DOWNLOAD01" aptget source -q --print-uris foo/wheezy
019dfaed 71
c6b83f9c 72# unavailable one
25b86db1 73testfailureequal "$HEADER
017d3f3b 74E: Can not find version '9.9-not-there' of package 'foo'
c6b83f9c
MV
75E: Unable to find a source package for foo" aptget source -q --print-uris foo=9.9-not-there
76
65dcff55 77# version and release
9d2a8a73
DK
78DOWNLOAD001="Need to get 0 B/29 B of source archives.
79'file://${APTARCHIVE}/foo_0.0.1.dsc' foo_0.0.1.dsc 13 MD5Sum:6c819ebf0a21b1a480e1dbf6b8edfebd
80'file://${APTARCHIVE}/foo_0.0.1.tar.gz' foo_0.0.1.tar.gz 16 MD5Sum:a3c7e1ac2159fc0faf522e110d6906fd"
25b86db1 81testsuccessequal "$HEADER
9d2a8a73 82$DOWNLOAD001" aptget source -q --print-uris -t unstable foo=0.0.1
f83b5627 83
25b86db1 84testsuccessequal "$HEADER
9d2a8a73 85Need to get 0 B/25 B of source archives.
f83b5627 86Fetch source foo" aptget source -q -s foo