mirror of
https://github.com/moparisthebest/pacman
synced 2025-03-01 09:51:50 -05:00
Add a new removal smoke test
Hint: this will really stress hash table removal. Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
parent
01c3c7e4f2
commit
09e582b411
@ -4,18 +4,17 @@ p = pmpkg("pkg1000")
|
||||
|
||||
self.addpkg2db("local", p)
|
||||
|
||||
for i in range(1000):
|
||||
for i in xrange(1000):
|
||||
p = pmpkg("pkg%03d" % i)
|
||||
p.depends = ["pkg%03d" % (i+1)]
|
||||
p.files = ["usr/share/pkg%03d" % i]
|
||||
self.addpkg(p)
|
||||
|
||||
_list = []
|
||||
[_list.append(p.filename()) for p in self.localpkgs]
|
||||
self.args = "-U %s" % " ".join(_list)
|
||||
pkglist = [p.filename() for p in self.localpkgs]
|
||||
self.args = "-U %s" % " ".join(pkglist)
|
||||
|
||||
self.addrule("PACMAN_RETCODE=0")
|
||||
#for i in range(1000):
|
||||
#for i in xrange(1000):
|
||||
# self.addrule("PKG_EXIST=pkg%03d" %i)
|
||||
# picked 3 random packages to test for, since the loop is too much to handle
|
||||
self.addrule("PKG_EXIST=pkg050")
|
||||
|
19
test/pacman/tests/smoke003.py
Normal file
19
test/pacman/tests/smoke003.py
Normal file
@ -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")
|
Loading…
x
Reference in New Issue
Block a user