summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2012-12-11 15:29:50 +0100
committerAllan McRae <allan@archlinux.org>2012-12-14 03:35:34 +0100
commit4a427dbc1bca50c516c41e4ae2cb0122c686f88d (patch)
tree5691a9c0caa0604e287dca8686a922f4461cdcb0 /test
parent5a247ccbd4953e9bdd383ad30ca90ed740c9db3d (diff)
downloadpacman-4a427dbc1bca50c516c41e4ae2cb0122c686f88d.tar.gz
pacman-4a427dbc1bca50c516c41e4ae2cb0122c686f88d.tar.xz
Add pactests for not detecting directory conflicts with upgrades
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'test')
-rw-r--r--test/pacman/tests/fileconflict020.py20
-rw-r--r--test/pacman/tests/fileconflict021.py18
2 files changed, 38 insertions, 0 deletions
diff --git a/test/pacman/tests/fileconflict020.py b/test/pacman/tests/fileconflict020.py
new file mode 100644
index 00000000..306aca23
--- /dev/null
+++ b/test/pacman/tests/fileconflict020.py
@@ -0,0 +1,20 @@
+self.description = "upgrade introduces new directory that conflicts with a package file"
+
+lp1 = pmpkg("pkg1")
+lp1.files = ["usr/bin/foo"]
+self.addpkg2db("local", lp1)
+
+lp2 = pmpkg("pkg2")
+self.addpkg2db("local", lp2)
+
+p = pmpkg("pkg2", "1.0-2")
+p.files = ["usr/bin/foo/"]
+self.addpkg2db("sync", p)
+
+self.args = "-S pkg2"
+
+self.addrule("PACMAN_RETCODE=1")
+self.addrule("PKG_VERSION=pkg2|1.0-1")
+self.addrule("!DIR_EXIST=usr/bin/foo/")
+
+self.expectfailure = True
diff --git a/test/pacman/tests/fileconflict021.py b/test/pacman/tests/fileconflict021.py
new file mode 100644
index 00000000..ccb70f25
--- /dev/null
+++ b/test/pacman/tests/fileconflict021.py
@@ -0,0 +1,18 @@
+self.description = "upgrade package overwriting existing unowned file with directory"
+
+lp1 = pmpkg("pkg1")
+self.addpkg2db("local", lp1)
+
+self.filesystem = ["file"]
+
+p = pmpkg("pkg1", "1.0-2")
+p.files = ["file/"]
+self.addpkg2db("sync", p)
+
+self.args = "-S pkg1"
+
+self.addrule("PACMAN_RETCODE=1")
+self.addrule("PKG_VERSION=pkg1|1.0-1")
+self.addrule("!DIR_EXIST=file/")
+
+self.expectfailure = True