From a5759cb0d7a65d3637e0065258b7478530b75b7a Mon Sep 17 00:00:00 2001 From: Andrew Gregory Date: Fri, 16 Oct 2015 20:28:31 -0400 Subject: add hook tests Signed-off-by: Allan McRae --- .../pacman/tests/hook-file-remove-trigger-match.py | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 test/pacman/tests/hook-file-remove-trigger-match.py (limited to 'test/pacman/tests/hook-file-remove-trigger-match.py') 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") -- cgit v1.2.3-24-g4f1b