summaryrefslogtreecommitdiffstats
path: root/pactest/tests/upgrade053.py
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2007-02-27 02:34:07 +0100
committerDan McGee <dan@archlinux.org>2007-02-27 02:34:07 +0100
commitf2ade9ab0de9ca5e71835c9a20114702844090d6 (patch)
treef7020379ba00386fc15a24709fa1bec6b5a43f48 /pactest/tests/upgrade053.py
parentcb311adeab04aa5a8780f48af450b5e20a00dedc (diff)
downloadpacman-f2ade9ab0de9ca5e71835c9a20114702844090d6.tar.gz
pacman-f2ade9ab0de9ca5e71835c9a20114702844090d6.tar.xz
* Added 5 new upgrade tests, which check various things with depends,
provides, and conflicts. - upgrade051 is known to fail- but we want to eventually make it work. - upgrade052 is Nagy's bug as reported on the ML- I think. If it isn't, let me know.
Diffstat (limited to 'pactest/tests/upgrade053.py')
-rw-r--r--pactest/tests/upgrade053.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/pactest/tests/upgrade053.py b/pactest/tests/upgrade053.py
new file mode 100644
index 00000000..78de0b5e
--- /dev/null
+++ b/pactest/tests/upgrade053.py
@@ -0,0 +1,19 @@
+self.description = "Upgrade a package with dependency on provided package (same)"
+
+lp1 = pmpkg("pkg1")
+lp1.depends = ["imaginary"]
+self.addpkg2db("local", lp1)
+
+lp2 = pmpkg("pkg2")
+lp2.provides = ["imaginary", "real"]
+self.addpkg2db("local", lp2)
+
+p = pmpkg("pkg1", "1.0-2")
+p.depends = ["imaginary"]
+self.addpkg(p)
+
+self.args = "-U %s" % p.filename()
+
+self.addrule("PACMAN_RETCODE=0")
+self.addrule("PKG_VERSION=pkg1|1.0-2")
+self.addrule("PKG_EXIST=pkg2")