summaryrefslogtreecommitdiffstats
path: root/test/pacman/tests/hook-pkg-install-trigger-match.py
diff options
context:
space:
mode:
authorAndrew Gregory <andrew.gregory.8@gmail.com>2015-10-17 02:28:31 +0200
committerAllan McRae <allan@archlinux.org>2015-10-18 02:59:24 +0200
commita5759cb0d7a65d3637e0065258b7478530b75b7a (patch)
tree7bbf10f4e56c585f6dc52f4e476d79a1fb56a80e /test/pacman/tests/hook-pkg-install-trigger-match.py
parentb76409609c051e236a849746db79bd438e353b60 (diff)
downloadpacman-a5759cb0d7a65d3637e0065258b7478530b75b7a.tar.gz
pacman-a5759cb0d7a65d3637e0065258b7478530b75b7a.tar.xz
add hook tests
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'test/pacman/tests/hook-pkg-install-trigger-match.py')
-rw-r--r--test/pacman/tests/hook-pkg-install-trigger-match.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/pacman/tests/hook-pkg-install-trigger-match.py b/test/pacman/tests/hook-pkg-install-trigger-match.py
new file mode 100644
index 00000000..00dfb32b
--- /dev/null
+++ b/test/pacman/tests/hook-pkg-install-trigger-match.py
@@ -0,0 +1,23 @@
+self.description = "Install a package matching a hook"
+
+self.add_script("hook-script", ": > hook-output")
+self.add_hook("hook",
+ """
+ [Trigger]
+ Type = Package
+ Operation = Install
+ Target = foo
+
+ [Action]
+ When = PreTransaction
+ Exec = bin/hook-script
+ """);
+
+sp = pmpkg("foo")
+self.addpkg2db("sync", sp)
+
+self.args = "-S foo"
+
+self.addrule("PACMAN_RETCODE=0")
+self.addrule("PKG_EXIST=foo")
+self.addrule("FILE_EXIST=hook-output")