mirror of
https://github.com/moparisthebest/pacman
synced 2025-03-01 01:41:52 -05:00
Add two pactests for group and --needed interaction
The first step for resolving FS#20221. sync023 is the case from the bug report; sync022 is already working fine but we have no tests at all that test the --needed option in any form. Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
parent
7f5c486666
commit
e702f56ea6
25
test/pacman/tests/sync022.py
Normal file
25
test/pacman/tests/sync022.py
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
self.description = "Install a group from a sync db using --needed"
|
||||||
|
|
||||||
|
lp1 = pmpkg("pkg1")
|
||||||
|
lp2 = pmpkg("pkg2")
|
||||||
|
lp3 = pmpkg("pkg3")
|
||||||
|
|
||||||
|
sp1 = pmpkg("pkg1", "1.1-1")
|
||||||
|
sp2 = pmpkg("pkg2")
|
||||||
|
sp3 = pmpkg("pkg3")
|
||||||
|
|
||||||
|
for p in lp1, lp2, lp3, sp1, sp2, sp3:
|
||||||
|
setattr(p, "groups", ["grp"])
|
||||||
|
|
||||||
|
for p in lp1, lp2, lp3:
|
||||||
|
self.addpkg2db("local", p)
|
||||||
|
|
||||||
|
for p in sp1, sp2, sp3:
|
||||||
|
self.addpkg2db("sync", p);
|
||||||
|
|
||||||
|
self.args = "-S --needed grp"
|
||||||
|
|
||||||
|
self.addrule("PACMAN_RETCODE=0")
|
||||||
|
for p in sp1, sp2, sp3:
|
||||||
|
self.addrule("PKG_EXIST=%s" % p.name)
|
||||||
|
self.addrule("PKG_VERSION=pkg1|1.1-1")
|
31
test/pacman/tests/sync023.py
Normal file
31
test/pacman/tests/sync023.py
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
self.description = "Install a group from a sync db using --needed (testing repo)"
|
||||||
|
|
||||||
|
lp1 = pmpkg("pkg1", "1.1-1")
|
||||||
|
lp2 = pmpkg("pkg2")
|
||||||
|
lp3 = pmpkg("pkg3")
|
||||||
|
|
||||||
|
sp1 = pmpkg("pkg1")
|
||||||
|
sp2 = pmpkg("pkg2")
|
||||||
|
sp3 = pmpkg("pkg3")
|
||||||
|
newp1 = pmpkg("pkg1", "1.1-1")
|
||||||
|
|
||||||
|
for p in lp1, lp2, lp3, sp1, sp2, sp3, newp1:
|
||||||
|
setattr(p, "groups", ["grp"])
|
||||||
|
|
||||||
|
for p in lp1, lp2, lp3:
|
||||||
|
self.addpkg2db("local", p)
|
||||||
|
|
||||||
|
self.addpkg2db("testing", newp1);
|
||||||
|
|
||||||
|
for p in sp1, sp2, sp3:
|
||||||
|
self.addpkg2db("sync", p);
|
||||||
|
|
||||||
|
self.args = "-S --needed grp"
|
||||||
|
|
||||||
|
self.addrule("PACMAN_RETCODE=0")
|
||||||
|
for p in sp1, sp2, sp3:
|
||||||
|
self.addrule("PKG_EXIST=%s" % p.name)
|
||||||
|
# The newer version should still be installed
|
||||||
|
self.addrule("PKG_VERSION=pkg1|1.1-1")
|
||||||
|
|
||||||
|
self.expectfailure = True
|
Loading…
x
Reference in New Issue
Block a user