summaryrefslogtreecommitdiff
path: root/test/integration/test-bug-722207-print-uris-even-if-very-quiet
Commit message (Collapse)AuthorAgeFilesLines
* use HashStringList in the acquire systemDavid Kalnischkies2014-05-091-4/+4
| | | | | | | | | | | | | It is not very extensible to have the supported Hashes hardcoded everywhere and especially if it is part of virtual method names. It is also possible that a method does not support the 'best' hash (yet), so we might end up not being able to verify a file even though we have a common subset of supported hashes. And those are just two of the cases in which it is handy to have a more dynamic selection. The downside is that this is a MAJOR API break, but the HashStringList has a string constructor for compatibility, so with a bit of luck the few frontends playing with the acquire system directly are okay.
* use pkgAcqArchive in 'download' for proper errorsDavid Kalnischkies2013-10-031-1/+1
| | | | | | | With a bit of trickery we can reuse the usual infrastructure we have in place to acquire deb files for the 'download' operation as well, which gains us authentification check & display, error messages, correct filenames and "downloads" from the root-owned archives.
* test: apt-get source with more than one argumentDavid Kalnischkies2013-09-261-0/+6
| | | | | Closes: 722549 Git-Dch: Ignore
* print-uris prints regardless of quiet-level againDavid Kalnischkies2013-09-261-0/+24
While the InstallPackages code was moved from apt-get into the private library the output was moved from (std::)cout to c1out which isn't shown in quiet level 2 (and above), so we flip back to std::cout to ensure that it is always printed as you are not going to use --print-uris if you don't want to see the uris… Closes: 722207