diff options
author | Julian Andres Klode <julian.klode@canonical.com> | 2019-05-09 22:23:17 +0200 |
---|---|---|
committer | Julian Andres Klode <julian.klode@canonical.com> | 2019-06-11 16:49:03 +0200 |
commit | 9244f712396c10b674740cc79fdab61c47173d04 (patch) | |
tree | ed9dcc194dba59faae6340e8bea55c5b57b2c867 /test/integration/test-apt-get-satisfy | |
parent | 35cb34d721e11a9e7dfa9ccd29d5bd58da8f7efc (diff) |
Introduce apt satisfy and apt-get satisfy
Allow to satisfy dependency strings supplied on
the command line, optionally prefixed with
"Conflicts:" to satisfy them like Conflicts.
Build profiles and architecture restriction lists,
as used in build dependencies, are supported as
well.
Compared to build-dep, build-essential is not
installed automatically, and installing of recommended
packages follows the global default, which defaults
to yes.
Closes: #275379
See merge request apt-team/apt!63
Diffstat (limited to 'test/integration/test-apt-get-satisfy')
-rwxr-xr-x | test/integration/test-apt-get-satisfy | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/test/integration/test-apt-get-satisfy b/test/integration/test-apt-get-satisfy new file mode 100755 index 000000000..f2e04d789 --- /dev/null +++ b/test/integration/test-apt-get-satisfy @@ -0,0 +1,72 @@ +#!/bin/sh +set -e + +TESTDIR="$(readlink -f "$(dirname "$0")")" +. "$TESTDIR/framework" + +setupenvironment +configarchitecture 'i386' 'amd64' + +insertpackage 'stable' 'depends' 'i386' '1' +insertpackage 'stable' 'depends' 'amd64' '1' +insertinstalledpackage 'conflicts' 'i386' '1' 'Multi-Arch: same' +insertinstalledpackage 'conflicts' 'amd64' '1' 'Multi-Arch: same' +setupaptarchive + + +testsuccessequal "Reading package lists... +Building dependency tree... +The following packages will be REMOVED: + conflicts +The following NEW packages will be installed: + depends +0 upgraded, 1 newly installed, 1 to remove and 0 not upgraded. +Remv conflicts [1] +Inst depends (1 stable [i386]) +Conf depends (1 stable [i386])" aptget satisfy --simulate "depends (>= 1)" "Conflicts: conflicts:i386 (>= 1) [i386], conflicts:amd64 (>= 1) [amd64]" + +testsuccessequal "Reading package lists... +Building dependency tree... +The following packages will be REMOVED: + conflicts:amd64 +The following NEW packages will be installed: + depends:amd64 +0 upgraded, 1 newly installed, 1 to remove and 0 not upgraded. +Remv conflicts:amd64 [1] +Inst depends:amd64 (1 stable [amd64]) +Conf depends:amd64 (1 stable [amd64])" aptget satisfy --simulate "depends (>= 1)" "Conflicts: conflicts:i386 (>= 1) [i386], conflicts:amd64 (>= 1) [amd64]" --host-architecture amd64 + +msgmsg "Build profile" + +testsuccessequal "Reading package lists... +Building dependency tree... +0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded." aptget satisfy --simulate "depends:amd64 <a>, depends:i386 <i>" + +testsuccessequal "Reading package lists... +Building dependency tree... +The following NEW packages will be installed: + depends:amd64 +0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. +Inst depends:amd64 (1 stable [amd64]) +Conf depends:amd64 (1 stable [amd64])" aptget satisfy --simulate "depends:amd64 <a>, depends:i386 <i>" -P a + +testsuccessequal "Reading package lists... +Building dependency tree... +The following NEW packages will be installed: + depends +0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. +Inst depends (1 stable [i386]) +Conf depends (1 stable [i386])" aptget satisfy --simulate "depends:amd64 <a>, depends:i386 <i>" -P i + + +msgmsg "Broken syntax" +testfailureequal "E: Problem parsing dependency: apt (>= 2" aptget satisfy 'foo' 'apt (>= 2' -s +testfailureequal "E: Problem parsing dependency: Conflicts: apt (>= 2" aptget satisfy 'foo' 'Conflicts: apt (>= 2' -s + + +msgmsg "Legacy operators" +testfailureequal "E: Invalid operator '<' at offset 5, did you mean '<<' or '<='? - in: foo (< 1)" aptget satisfy 'foo (< 1)' -s +testfailureequal "E: Invalid operator '>' at offset 5, did you mean '>>' or '>='? - in: foo (> 1)" aptget satisfy 'foo (> 1)' -s + +msgmsg "Unsupported dependency type" +testfailureequal "E: Problem parsing dependency: Recommends: foo" aptget satisfy 'Recommends: foo' -s |