summaryrefslogtreecommitdiffstats
path: root/test/pacman/tests/hook-abortonfail.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/pacman/tests/hook-abortonfail.py')
-rw-r--r--test/pacman/tests/hook-abortonfail.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/test/pacman/tests/hook-abortonfail.py b/test/pacman/tests/hook-abortonfail.py
new file mode 100644
index 00000000..e5044c08
--- /dev/null
+++ b/test/pacman/tests/hook-abortonfail.py
@@ -0,0 +1,25 @@
+self.description = "Abort transaction on hook failure with AbortOnFail"
+
+self.add_script("hook-script", ": > hook-output; exit 1")
+self.add_hook("hook",
+ """
+ [Trigger]
+ Type = Package
+ Operation = Install
+ Target = foo
+
+ [Action]
+ When = PreTransaction
+ Exec = bin/hook-script
+ AbortOnFail
+ """);
+
+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")
+self.addrule("PACMAN_OUTPUT=failed to run transaction hooks")