| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- #!/bin/sh
- set -e
- TESTDIR=$(readlink -f $(dirname $0))
- . $TESTDIR/framework
- setupenvironment
- configarchitecture "i386"
- # we need to insert a package into "unstable" so that a Release file is
- # create for the test
- insertpackage 'wheezy' 'unreleated-package' 'all' '1.0'
- # a "normal" package with source and binary
- insertpackage 'unstable' 'foo' 'all' '2.0'
- insertsource 'unstable' 'foo' 'all' '2.0'
- # its possible to have multiple src versions in the sources file, ensure
- # to pick the correct one in this case (bts #731853)
- insertsource 'stable' 'foo' 'all' '1.5'
- insertsource 'stable' 'foo' 'all' '0.5'
- insertpackage 'stable' 'foo' 'all' '1.0'
- insertsource 'stable' 'foo' 'all' '1.0'
- # this packages exists only as sources, add two versions to ensure that
- # apt will pick the higher version number (bts #731853)
- insertsource 'wheezy' 'foo' 'all' '0.0.1'
- insertsource 'wheezy' 'foo' 'all' '0.1'
- setupaptarchive
- APTARCHIVE=$(readlink -f ./aptarchive)
- # normal operation gets highest version number
- HEADER="Reading package lists...
- Building dependency tree..."
- DOWNLOAD1="Need to get 0 B/25 B of source archives.
- 'file://${APTARCHIVE}/foo_1.0.dsc' foo_1.0.dsc 11 MD5Sum:b998e085e36cf162e6a33c2801318fef
- 'file://${APTARCHIVE}/foo_1.0.tar.gz' foo_1.0.tar.gz 14 MD5Sum:d46b9a02af8487cbeb49165540c88184"
- DOWNLOAD2="Need to get 0 B/25 B of source archives.
- 'file://${APTARCHIVE}/foo_2.0.dsc' foo_2.0.dsc 11 MD5Sum:c0de572c6f8aa576c8ff78c81132ed55
- 'file://${APTARCHIVE}/foo_2.0.tar.gz' foo_2.0.tar.gz 14 MD5Sum:e10bb487c375b2b938d27bd31c2d1f5f"
- testsuccessequal "$HEADER
- $DOWNLOAD2" aptget source -q --print-uris foo
- # select by release: suite
- testsuccessequal "$HEADER
- Selected version '1.0' (stable) for foo
- $DOWNLOAD1" aptget source -q --print-uris foo/stable
- testsuccessequal "$HEADER
- Selected version '2.0' (unstable) for foo
- $DOWNLOAD2" aptget source -q --print-uris foo/unstable
- # select by release: codename
- testsuccessequal "$HEADER
- Selected version '2.0' (sid) for foo
- $DOWNLOAD2" aptget source -q --print-uris foo/sid
- # select by version
- testsuccessequal "$HEADER
- $DOWNLOAD1" aptget source -q --print-uris foo=1.0
- # select by release with no binary package (Bug#731102) but ensure to get
- # highest version
- DOWNLOAD01="Need to get 0 B/25 B of source archives.
- 'file://${APTARCHIVE}/foo_0.1.dsc' foo_0.1.dsc 11 MD5Sum:0811a4d85238056c613ea897f49f01af
- 'file://${APTARCHIVE}/foo_0.1.tar.gz' foo_0.1.tar.gz 14 MD5Sum:fa1ecb7a1a53e8e6f6551ca7db888a61"
- testsuccessequal "$HEADER
- Selected version '0.1' (wheezy) for foo
- $DOWNLOAD01" aptget source -q --print-uris foo/wheezy
- # unavailable one
- testfailureequal "$HEADER
- E: Can not find version '9.9-not-there' of package 'foo'
- E: Unable to find a source package for foo" aptget source -q --print-uris foo=9.9-not-there
- # version and release
- DOWNLOAD001="Need to get 0 B/29 B of source archives.
- 'file://${APTARCHIVE}/foo_0.0.1.dsc' foo_0.0.1.dsc 13 MD5Sum:6c819ebf0a21b1a480e1dbf6b8edfebd
- 'file://${APTARCHIVE}/foo_0.0.1.tar.gz' foo_0.0.1.tar.gz 16 MD5Sum:a3c7e1ac2159fc0faf522e110d6906fd"
- testsuccessequal "$HEADER
- $DOWNLOAD001" aptget source -q --print-uris -t unstable foo=0.0.1
- testsuccessequal "$HEADER
- Need to get 0 B/25 B of source archives.
- Fetch source foo" aptget source -q -s foo
|