test-apt-get-source 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. #!/bin/sh
  2. set -e
  3. TESTDIR=$(readlink -f $(dirname $0))
  4. . $TESTDIR/framework
  5. setupenvironment
  6. configarchitecture "i386"
  7. # we need to insert a package into "unstable" so that a Release file is
  8. # create for the test
  9. insertpackage 'wheezy' 'unreleated-package' 'all' '1.0'
  10. # a "normal" package with source and binary
  11. insertpackage 'unstable' 'foo' 'all' '2.0'
  12. insertsource 'unstable' 'foo' 'all' '2.0'
  13. # its possible to have multiple src versions in the sources file, ensure
  14. # to pick the correct one in this case (bts #731853)
  15. insertsource 'stable' 'foo' 'all' '1.5'
  16. insertsource 'stable' 'foo' 'all' '0.5'
  17. insertpackage 'stable' 'foo' 'all' '1.0'
  18. insertsource 'stable' 'foo' 'all' '1.0'
  19. # this packages exists only as sources, add two versions to ensure that
  20. # apt will pick the higher version number (bts #731853)
  21. insertsource 'wheezy' 'foo' 'all' '0.0.1'
  22. insertsource 'wheezy' 'foo' 'all' '0.1'
  23. insertsource 'stable' 'bar' 'any' '1.1' 'Vcs-Browser: https://anonscm.debian.org/cgit/bar/bar.git
  24. Vcs-Git: git://anonscm.debian.org/bar/bar.git -b debian/experimental'
  25. setupaptarchive
  26. APTARCHIVE=$(readlink -f ./aptarchive)
  27. # normal operation gets highest version number
  28. HEADER="Reading package lists...
  29. Building dependency tree..."
  30. DOWNLOAD1="Need to get 0 B/25 B of source archives.
  31. 'file://${APTARCHIVE}/foo_1.0.dsc' foo_1.0.dsc 11 SHA256:ed7c25c832596339bee13e4e7c45cf49f869b60d2bf57252f18191d75866c2a7
  32. 'file://${APTARCHIVE}/foo_1.0.tar.gz' foo_1.0.tar.gz 14 SHA256:f3da8c6ebc62c8ef2dae439a498dddcdacc1a07f45ff67ad12f44b6e2353c239"
  33. DOWNLOAD2="Need to get 0 B/25 B of source archives.
  34. 'file://${APTARCHIVE}/foo_2.0.dsc' foo_2.0.dsc 11 SHA256:0fcb803ffbeef26db884625aaf06e75f3eda5c994634980e7c20fd37ed1fc104
  35. 'file://${APTARCHIVE}/foo_2.0.tar.gz' foo_2.0.tar.gz 14 SHA256:ca9b0b828ca22372502af2b80f61f0bd9063910ece9fc34eeaf9d9e31aa8195a"
  36. testsuccessequal "$HEADER
  37. $DOWNLOAD2" aptget source -q --print-uris foo
  38. testsuccessequal "$HEADER
  39. $DOWNLOAD2" aptget source -q --print-uris foo foo
  40. # select by release: suite
  41. testsuccessequal "$HEADER
  42. Selected version '1.0' (stable) for foo
  43. $DOWNLOAD1" aptget source -q --print-uris foo/stable
  44. testsuccessequal "$HEADER
  45. Selected version '2.0' (unstable) for foo
  46. $DOWNLOAD2" aptget source -q --print-uris foo/unstable
  47. testsuccessequal "$HEADER
  48. Selected version '1.0' (stable) for foo
  49. $DOWNLOAD1" aptget source -q --print-uris foo -t stable
  50. testsuccessequal "$HEADER
  51. Selected version '2.0' (unstable) for foo
  52. $DOWNLOAD2" aptget source -q --print-uris foo -t unstable
  53. # select by release: codename
  54. testsuccessequal "$HEADER
  55. Selected version '2.0' (sid) for foo
  56. $DOWNLOAD2" aptget source -q --print-uris foo/sid
  57. testsuccessequal "$HEADER
  58. Selected version '2.0' (sid) for foo
  59. $DOWNLOAD2" aptget source -q --print-uris foo -t sid
  60. # select by version
  61. testsuccessequal "$HEADER
  62. $DOWNLOAD1" aptget source -q --print-uris foo=1.0
  63. # select by release with no binary package (Bug#731102) but ensure to get
  64. # highest version
  65. DOWNLOAD01="Need to get 0 B/25 B of source archives.
  66. 'file://${APTARCHIVE}/foo_0.1.dsc' foo_0.1.dsc 11 SHA256:72af24b0290fe1d13a3e25fddd2633e43c87ff79d249bc850009e47bcce73565
  67. 'file://${APTARCHIVE}/foo_0.1.tar.gz' foo_0.1.tar.gz 14 SHA256:ec748ad88a71f98bfdc012e1a7632377d05fe3ebbf9c0922e0691fe4d79c0585"
  68. testsuccessequal "$HEADER
  69. Selected version '0.1' (wheezy) for foo
  70. $DOWNLOAD01" aptget source -q --print-uris foo/wheezy
  71. # unavailable one
  72. testfailureequal "$HEADER
  73. E: Can not find version '9.9-not-there' of package 'foo'
  74. E: Unable to find a source package for foo" aptget source -q --print-uris foo=9.9-not-there
  75. # version and release
  76. DOWNLOAD001="Need to get 0 B/29 B of source archives.
  77. 'file://${APTARCHIVE}/foo_0.0.1.dsc' foo_0.0.1.dsc 13 SHA256:649dfe03bbb70cebdfe7c6bf9036f9f2472510b8f52e823bdf5ade362ebaa76f
  78. 'file://${APTARCHIVE}/foo_0.0.1.tar.gz' foo_0.0.1.tar.gz 16 SHA256:ab7ba789d178362ecc808e49705e2338988a7f5b9410ec11a6c9555c017de907"
  79. testsuccessequal "$HEADER
  80. $DOWNLOAD001" aptget source -q --print-uris -t unstable foo=0.0.1
  81. testsuccessequal "$HEADER
  82. Need to get 0 B/25 B of source archives.
  83. Fetch source foo" aptget source -q -s foo
  84. testfailureequal 'Reading package lists...
  85. Building dependency tree...
  86. E: Must specify at least one package to fetch source for' aptget source
  87. testsuccessequal "Reading package lists...
  88. Building dependency tree...
  89. NOTICE: 'bar' packaging is maintained in the 'Git' version control system at:
  90. git://anonscm.debian.org/bar/bar.git -b debian/experimental
  91. Please use:
  92. git clone git://anonscm.debian.org/bar/bar.git -b debian/experimental
  93. to retrieve the latest (possibly unreleased) updates to the package.
  94. Need to get 0 B/25 B of source archives.
  95. Fetch source bar" aptget source bar -s