summaryrefslogtreecommitdiff
path: root/test/pacman/tests/hook-type-reused.py
diff options
context:
space:
mode:
authorStefan Klinger <git@stefan-klinger.de>2018-02-25 18:36:05 +0100
committerAllan McRae <allan@archlinux.org>2018-03-14 12:53:52 +1000
commitd884a791b9523ebda4e780e9457842565c116ab5 (patch)
tree507f4aa0d6af8cac927749376c90e13f1757adfd /test/pacman/tests/hook-type-reused.py
parenta5dd5d41412930000d4e5ca602365639c7ccec86 (diff)
downloadpacman-d884a791b9523ebda4e780e9457842565c116ab5.tar.xz
hooks: Complain if hook parameters are overwritten. Fixed 2 space leaks.
Signed-off-by: Stefan Klinger <git@stefan-klinger.de> Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'test/pacman/tests/hook-type-reused.py')
-rw-r--r--test/pacman/tests/hook-type-reused.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/pacman/tests/hook-type-reused.py b/test/pacman/tests/hook-type-reused.py
new file mode 100644
index 00000000..472c8caf
--- /dev/null
+++ b/test/pacman/tests/hook-type-reused.py
@@ -0,0 +1,22 @@
+self.description = "Hook using multiple 'Type's"
+
+self.add_hook("hook",
+ """
+ [Trigger]
+ Type = Package
+ Type = File
+ Operation = Install
+ Target = foo
+
+ [Action]
+ When = PostTransaction
+ Exec = /bin/date
+ """);
+
+sp = pmpkg("foo")
+self.addpkg2db("sync", sp)
+
+self.args = "-S foo"
+
+self.addrule("PACMAN_RETCODE=0")
+self.addrule("PACMAN_OUTPUT=warning.*overwriting previous definition of Type")