summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2011-08-29 07:48:59 -0500
committerDan McGee <dan@archlinux.org>2011-08-29 07:48:59 -0500
commit7480df68ce7fe60e93dd833faf83dd5f2d6149c1 (patch)
tree230805a9f23fc6262761d0e852a4350a2765a841 /test
parentf46db04f98cb63b48208026865943e42e7ece2f4 (diff)
Rework scriptlet tests to not depend on pacman output
This actually does something in a scriptlet we can check with our normal set of rules, rather than relying on pacman debug output. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'test')
-rw-r--r--test/pacman/tests/scriptlet001.py13
-rw-r--r--test/pacman/tests/scriptlet002.py13
2 files changed, 10 insertions, 16 deletions
diff --git a/test/pacman/tests/scriptlet001.py b/test/pacman/tests/scriptlet001.py
index 1cf9053b..6f702eb8 100644
--- a/test/pacman/tests/scriptlet001.py
+++ b/test/pacman/tests/scriptlet001.py
@@ -2,18 +2,15 @@ self.description = "Scriptlet test (pre/post install)"
p1 = pmpkg("dummy")
p1.files = ['etc/dummy.conf']
-pre = "OUTPUT FROM PRE_INSTALL"
-post = "OUTPUT FROM POST_INSTALL"
-p1.install['pre_install'] = "echo " + pre
-p1.install['post_install'] = "echo " + post
+p1.install['pre_install'] = "echo foobar > pre_install"
+p1.install['post_install'] = "echo foobar > post_install"
self.addpkg(p1)
-# --debug is necessary to check PACMAN_OUTPUT
-self.args = "--debug -U %s" % p1.filename()
+self.args = "-U %s" % p1.filename()
self.addrule("PACMAN_RETCODE=0")
-self.addrule("PACMAN_OUTPUT=" + pre)
-self.addrule("PACMAN_OUTPUT=" + post)
+self.addrule("FILE_EXIST=pre_install")
+self.addrule("FILE_EXIST=post_install")
fakechroot = util.which("fakechroot")
if not fakechroot:
diff --git a/test/pacman/tests/scriptlet002.py b/test/pacman/tests/scriptlet002.py
index 59f60427..907f4199 100644
--- a/test/pacman/tests/scriptlet002.py
+++ b/test/pacman/tests/scriptlet002.py
@@ -2,18 +2,15 @@ self.description = "Scriptlet test (pre/post remove)"
p1 = pmpkg("dummy")
p1.files = ['etc/dummy.conf']
-pre = "OUTPUT FROM PRE_REMOVE";
-post = "OUTPUT FROM POST_REMOVE";
-p1.install['pre_remove'] = "echo " + pre
-p1.install['post_remove'] = "echo " + post
+p1.install['pre_remove'] = "echo foobar > pre_remove"
+p1.install['post_remove'] = "echo foobar > post_remove"
self.addpkg2db("local", p1)
-# --debug is necessary to check PACMAN_OUTPUT
-self.args = "--debug -R %s" % p1.name
+self.args = "-R %s" % p1.name
self.addrule("PACMAN_RETCODE=0")
-self.addrule("PACMAN_OUTPUT=" + pre)
-self.addrule("PACMAN_OUTPUT=" + post)
+self.addrule("FILE_EXIST=pre_remove")
+self.addrule("FILE_EXIST=post_remove")
fakechroot = util.which("fakechroot")
if not fakechroot: