summaryrefslogtreecommitdiffstats
path: root/test/pacman/tests/hook-file-remove-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-file-remove-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-file-remove-trigger-match.py')
-rw-r--r--test/pacman/tests/hook-file-remove-trigger-match.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/pacman/tests/hook-file-remove-trigger-match.py b/test/pacman/tests/hook-file-remove-trigger-match.py
new file mode 100644
index 00000000..6c9375c0
--- /dev/null
+++ b/test/pacman/tests/hook-file-remove-trigger-match.py
@@ -0,0 +1,24 @@
+self.description = "Remove a package matching a file removal hook"
+
+self.add_script("hook-script", ": > hook-output")
+self.add_hook("hook",
+ """
+ [Trigger]
+ Type = File
+ Operation = Remove
+ Target = bin/foo
+
+ [Action]
+ When = PreTransaction
+ Exec = bin/hook-script
+ """);
+
+lp = pmpkg("foo")
+lp.files = ["bin/foo"]
+self.addpkg2db("local", lp)
+
+self.args = "-R foo"
+
+self.addrule("PACMAN_RETCODE=0")
+self.addrule("!PKG_EXIST=foo")
+self.addrule("FILE_EXIST=hook-output")