diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 09:59:37 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 09:59:37 +0000 |
commit | 76e2632459410dec81337edb6a9fee33c9a660f3 (patch) | |
tree | a73345df208eede4a4daad340515c9328f34625c /test/integration/test-or-group-substitution | |
parent | Initial commit. (diff) | |
download | apt-76e2632459410dec81337edb6a9fee33c9a660f3.tar.xz apt-76e2632459410dec81337edb6a9fee33c9a660f3.zip |
Adding upstream version 2.7.12.upstream/2.7.12
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'test/integration/test-or-group-substitution')
-rwxr-xr-x | test/integration/test-or-group-substitution | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/test/integration/test-or-group-substitution b/test/integration/test-or-group-substitution new file mode 100755 index 0000000..51bd9aa --- /dev/null +++ b/test/integration/test-or-group-substitution @@ -0,0 +1,45 @@ +#!/bin/sh +set -e + +TESTDIR="$(readlink -f "$(dirname "$0")")" +. "$TESTDIR/framework" + +setupenvironment +configarchitecture 'amd64' + +# One package (non-essential) depends on either of two other packages, which conflict with each other. + +insertinstalledpackage 'chrony' 'amd64' '1' 'Conflicts: openntpd' + +insertpackage 'sid' 'openntpd' 'amd64' '1' 'Conflicts: openntpd' + +insertinstalledpackage 'systemd' 'amd64' '1' 'Depends: chrony | openntpd' + +# An essential package depends on the non-essential package that has an or group dependency. + +insertinstalledpackage 'pop-desktop' 'amd64' '1' 'Depends: systemd +Essential: yes' + +# An additional, non-essential package depends on the package that has an or group dependency. + +insertinstalledpackage 'unrelated-package' 'amd64' '1' 'Depends: systemd' + +setupaptarchive + +# The test removes the currently-installed part of the or group +# (it should be replaced with the other one automatically.) +# +# The test should fail if the package "unrelated-package" is removed. + +testsuccessequal 'Reading package lists... +Building dependency tree... +The following additional packages will be installed: + openntpd +The following packages will be REMOVED: + chrony +The following NEW packages will be installed: + openntpd +0 upgraded, 1 newly installed, 1 to remove and 0 not upgraded. +Remv chrony [1] [systemd:amd64 ] +Inst openntpd (1 sid [amd64]) +Conf openntpd (1 sid [amd64])' aptget -s remove chrony |