summaryrefslogtreecommitdiffstats
path: root/test/pacman/tests/smoke003.py
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2011-02-03 03:46:27 +0100
committerAllan McRae <allan@archlinux.org>2011-02-04 00:55:46 +0100
commit09e582b4117356f996f6d94ca5e490aebd0a0fd5 (patch)
tree3dd7d8c7558e0005418a123afa52206c31db0742 /test/pacman/tests/smoke003.py
parent01c3c7e4f28d837f0b8a6aaaf27d16894d4b762d (diff)
downloadpacman-09e582b4117356f996f6d94ca5e490aebd0a0fd5.tar.gz
pacman-09e582b4117356f996f6d94ca5e490aebd0a0fd5.tar.xz
Add a new removal smoke test
Hint: this will really stress hash table removal. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'test/pacman/tests/smoke003.py')
-rw-r--r--test/pacman/tests/smoke003.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/pacman/tests/smoke003.py b/test/pacman/tests/smoke003.py
new file mode 100644
index 00000000..c2460fbf
--- /dev/null
+++ b/test/pacman/tests/smoke003.py
@@ -0,0 +1,19 @@
+self.description = "Remove a thousand packages in a single transaction"
+
+for i in xrange(1000):
+ p = pmpkg("pkg%03dname" % i)
+ p.files = ["usr/share/pkg%03d/file" % i]
+ self.addpkg2db("local", p)
+
+pkglist = ["pkg%03dname" % i for i in xrange(100, 1000)]
+self.args = "-R %s" % " ".join(pkglist)
+
+self.addrule("PACMAN_RETCODE=0")
+# picked random packages to test for, since a loop is too much to handle
+self.addrule("PKG_EXIST=pkg000name")
+self.addrule("PKG_EXIST=pkg050name")
+self.addrule("PKG_EXIST=pkg099name")
+self.addrule("!PKG_EXIST=pkg100name")
+self.addrule("!PKG_EXIST=pkg383name")
+self.addrule("!PKG_EXIST=pkg674name")
+self.addrule("!PKG_EXIST=pkg999name")