summaryrefslogtreecommitdiffstats
path: root/pactest/tests/upgrade056.py
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2007-02-27 20:44:45 +0100
committerDan McGee <dan@archlinux.org>2007-02-27 20:44:45 +0100
commit7ee5a4e70f4cd673f8d9d26d1dcb00bc6f5d4337 (patch)
treed3f9c38a3a38eb3ee86f64ee19b72da2a2b31e15 /pactest/tests/upgrade056.py
parent7f086a4c5c5c3ce5707181a1b29a49e2e4e4353a (diff)
downloadpacman-7ee5a4e70f4cd673f8d9d26d1dcb00bc6f5d4337.tar.gz
pacman-7ee5a4e70f4cd673f8d9d26d1dcb00bc6f5d4337.tar.xz
* Added another test- I believe it is a possible situation and one we need to
deal with. Currently, libalpm with AND without Nagy's patch fails it. * Slight spacing update to pmenv.py.
Diffstat (limited to 'pactest/tests/upgrade056.py')
-rw-r--r--pactest/tests/upgrade056.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/pactest/tests/upgrade056.py b/pactest/tests/upgrade056.py
new file mode 100644
index 00000000..74394b36
--- /dev/null
+++ b/pactest/tests/upgrade056.py
@@ -0,0 +1,24 @@
+self.description = "Upgrade a package that removes a provide but another package still does"
+
+lp1 = pmpkg("pkg1")
+lp1.depends = ["imaginary"]
+self.addpkg2db("local", lp1)
+
+lp2 = pmpkg("pkg2")
+lp2.provides = ["imaginary"]
+lp2.requiredby = [ "pkg1" ]
+self.addpkg2db("local", lp2)
+
+lp3 = pmpkg("pkg3")
+lp3.provides = ["imaginary"]
+self.addpkg2db("local", lp3)
+
+p = pmpkg("pkg2", "1.0-2")
+self.addpkg(p)
+
+self.args = "-U %s" % p.filename()
+
+self.addrule("PACMAN_RETCODE=0")
+self.addrule("PKG_EXIST=pkg1")
+self.addrule("PKG_VERSION=pkg2|1.0-2")
+self.addrule("PKG_EXIST=pkg3")