X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/55ae7a516126f9f064d8353bf962256b7307590a..950733c947acd50afe498e900954d911454c57e7:/test/integration/test-apt-get-source?ds=sidebyside diff --git a/test/integration/test-apt-get-source b/test/integration/test-apt-get-source index 6791bdd98..99777a530 100755 --- a/test/integration/test-apt-get-source +++ b/test/integration/test-apt-get-source @@ -27,6 +27,22 @@ insertsource 'stable' 'foo' 'all' '1.0' insertsource 'wheezy' 'foo' 'all' '0.0.1' insertsource 'wheezy' 'foo' 'all' '0.1' +# the order of these versions is chosen to ensure that +# * apt will pick the one in the correct release, despite a higher version coming later and +# * apt will pick the highest version in a release, despite a lower version coming later. +# (bts #746412) +insertsource 'stable' 'baz' 'all' '1.0' +insertsource 'unstable' 'baz' 'all' '2.0' +insertsource 'unstable' 'baz' 'all' '1.5' + +# ensure we really have the situation we wanted (first 2.0 is foo above) +testequal 'Version: 2.0 +Version: 2.0 +Version: 1.5' grep '^Version:' aptarchive/dists/unstable/main/source/Sources + +insertsource 'stable' 'bar' 'any' '1.1' 'Vcs-Browser: https://anonscm.debian.org/cgit/bar/bar.git +Vcs-Git: git://anonscm.debian.org/bar/bar.git -b debian/experimental' + setupaptarchive APTARCHIVE=$(readlink -f ./aptarchive) @@ -40,8 +56,16 @@ DOWNLOAD1="Need to get 0 B/25 B of source archives. DOWNLOAD2="Need to get 0 B/25 B of source archives. 'file://${APTARCHIVE}/foo_2.0.dsc' foo_2.0.dsc 11 SHA256:0fcb803ffbeef26db884625aaf06e75f3eda5c994634980e7c20fd37ed1fc104 'file://${APTARCHIVE}/foo_2.0.tar.gz' foo_2.0.tar.gz 14 SHA256:ca9b0b828ca22372502af2b80f61f0bd9063910ece9fc34eeaf9d9e31aa8195a" +DOWNLOAD3="Need to get 0 B/25 B of source archives. +'file://${APTARCHIVE}/baz_1.0.dsc' baz_1.0.dsc 11 SHA256:322245f56092b466801dda62d79c8687bba9724af6d16d450d655d29e41d3d7b +'file://${APTARCHIVE}/baz_1.0.tar.gz' baz_1.0.tar.gz 14 SHA256:0870bc73164ff5ba1f52153fdcb48e140137f9c7c122d57592cea136a57f73c0" +DOWNLOAD4="Need to get 0 B/25 B of source archives. +'file://${APTARCHIVE}/baz_2.0.dsc' baz_2.0.dsc 11 SHA256:47d062d29070b3f592d1c8aed8c1e7913804bbb67ca1d64877c8219dac5e0420 +'file://${APTARCHIVE}/baz_2.0.tar.gz' baz_2.0.tar.gz 14 SHA256:11c1b202c94a64ab6433d9f0ed5515fce1dc7b20e6bcf51cec9ef8b9455f5a41" testsuccessequal "$HEADER $DOWNLOAD2" aptget source -q --print-uris foo +testsuccessequal "$HEADER +$DOWNLOAD2" aptget source -q --print-uris foo foo # select by release: suite testsuccessequal "$HEADER @@ -56,6 +80,9 @@ $DOWNLOAD1" aptget source -q --print-uris foo -t stable testsuccessequal "$HEADER Selected version '2.0' (unstable) for foo $DOWNLOAD2" aptget source -q --print-uris foo -t unstable +testsuccessequal "$HEADER +Selected version '1.0' (stable) for baz +$DOWNLOAD3" aptget source -q --print-uris baz -t stable # select by release: codename testsuccessequal "$HEADER @@ -64,6 +91,9 @@ $DOWNLOAD2" aptget source -q --print-uris foo/sid testsuccessequal "$HEADER Selected version '2.0' (sid) for foo $DOWNLOAD2" aptget source -q --print-uris foo -t sid +testsuccessequal "$HEADER +Selected version '2.0' (sid) for baz +$DOWNLOAD4" aptget source -q --print-uris baz -t sid # select by version testsuccessequal "$HEADER @@ -93,3 +123,17 @@ $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 + +testfailureequal 'Reading package lists... +Building dependency tree... +E: Must specify at least one package to fetch source for' aptget source + +testsuccessequal "Reading package lists... +Building dependency tree... +NOTICE: 'bar' packaging is maintained in the 'Git' version control system at: +git://anonscm.debian.org/bar/bar.git -b debian/experimental +Please use: +git clone git://anonscm.debian.org/bar/bar.git -b debian/experimental +to retrieve the latest (possibly unreleased) updates to the package. +Need to get 0 B/25 B of source archives. +Fetch source bar" aptget source bar -s