1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-08-13 17:03:46 -04:00
pacman/pactest/tests/remove052.py
Allan McRae ae40d1c05b Pactest for removing multiple items in a dependency chain.
This adds a test for when removing multilpe packages recursively from a
chain of dependent packages. This situation can occur when removing
installed dependencies with makepkg if a "makedepend" recursively depends on
a "depend" or if redundant dependancies are included.

Signed-off-by: Allan McRae <mcrae_allan at hotmail.com>
Signed-off-by: Xavier Chantry <shiningxc@gmail.com>
Signed-off-by: Dan McGee <dan@archlinux.org>
2008-05-29 06:37:19 -05:00

22 lines
466 B
Python

self.description = "-Rs test (dependency chain)"
lp1 = pmpkg("pkg1")
lp1.depends = ["pkg2"]
self.addpkg2db("local", lp1)
lp2 = pmpkg("pkg2")
lp2.depends = ["pkg3"]
lp2.reason = 1
self.addpkg2db("local", lp2)
lp3 = pmpkg("pkg3")
lp3.reason = 1
self.addpkg2db("local", lp3)
self.args = "-Rs %s" % " ".join([p.name for p in lp1, lp3])
self.addrule("PACMAN_RETCODE=0")
self.addrule("!PKG_EXIST=pkg1")
self.addrule("!PKG_EXIST=pkg2")
self.addrule("!PKG_EXIST=pkg3")