diff options
Diffstat (limited to 'test/pacman/tests/hook-pkg-remove-trigger-match.py')
-rw-r--r-- | test/pacman/tests/hook-pkg-remove-trigger-match.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/test/pacman/tests/hook-pkg-remove-trigger-match.py b/test/pacman/tests/hook-pkg-remove-trigger-match.py new file mode 100644 index 00000000..887b2058 --- /dev/null +++ b/test/pacman/tests/hook-pkg-remove-trigger-match.py @@ -0,0 +1,23 @@ +self.description = "Remove a package matching a removal hook" + +self.add_script("hook-script", ": > hook-output") +self.add_hook("hook", + """ + [Trigger] + Type = Package + Operation = Remove + Target = foo + + [Action] + When = PreTransaction + Exec = bin/hook-script + """); + +lp = pmpkg("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") |