summaryrefslogtreecommitdiffstats
path: root/pactest/tests/upgrade055.py
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2007-02-27 17:15:47 +0100
committerDan McGee <dan@archlinux.org>2007-02-27 17:15:47 +0100
commit6673d188b949effa40b9206919cc50a37863c32d (patch)
tree9ec609d90a3caea045d2d6c14b7a2a46fb2df2f4 /pactest/tests/upgrade055.py
parentb8c8b2ec5573a795cdd1453dbc265b034953d2fa (diff)
downloadpacman-6673d188b949effa40b9206919cc50a37863c32d.tar.gz
pacman-6673d188b949effa40b9206919cc50a37863c32d.tar.xz
* Updated description of test upgrade052.
* Added the actual "Nagy's bug" as upgrade055.py. * Updated the Makefile to distribute the pactest readme. * Removed COPYING from the pactest directory- see COPYING at the root for the same license.
Diffstat (limited to 'pactest/tests/upgrade055.py')
-rw-r--r--pactest/tests/upgrade055.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/pactest/tests/upgrade055.py b/pactest/tests/upgrade055.py
new file mode 100644
index 00000000..c70c08da
--- /dev/null
+++ b/pactest/tests/upgrade055.py
@@ -0,0 +1,26 @@
+self.description = "Upgrade a package that provides one of two imaginary packages"
+
+lp1 = pmpkg("pkg1")
+lp1.depends = ["imaginary", "imaginary2"]
+self.addpkg2db("local", lp1)
+
+lp2 = pmpkg("pkg2")
+lp2.provides = ["imaginary"]
+lp2.requiredby = [ "pkg1" ]
+self.addpkg2db("local", lp2)
+
+lp3 = pmpkg("pkg3")
+lp3.provides = ["imaginary2"]
+lp3.requiredby = [ "pkg1" ]
+self.addpkg2db("local", lp3)
+
+p = pmpkg("pkg2", "1.0-2")
+p.provides = ["imaginary"]
+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")