summaryrefslogtreecommitdiffstats
path: root/test/pacman/tests/hook-pkg-upgrade-trigger-match.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/pacman/tests/hook-pkg-upgrade-trigger-match.py')
-rw-r--r--test/pacman/tests/hook-pkg-upgrade-trigger-match.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/pacman/tests/hook-pkg-upgrade-trigger-match.py b/test/pacman/tests/hook-pkg-upgrade-trigger-match.py
new file mode 100644
index 00000000..77c28309
--- /dev/null
+++ b/test/pacman/tests/hook-pkg-upgrade-trigger-match.py
@@ -0,0 +1,26 @@
+self.description = "Upgrade a package matching an Upgrade hook"
+
+self.add_script("hook-script", ": > hook-output")
+self.add_hook("hook",
+ """
+ [Trigger]
+ Type = Package
+ Operation = Upgrade
+ Target = foo
+
+ [Action]
+ When = PreTransaction
+ Exec = bin/hook-script
+ """);
+
+lp = pmpkg("foo", "1-1")
+self.addpkg2db("local", lp)
+
+sp = pmpkg("foo", "1-2")
+self.addpkg2db("sync", sp)
+
+self.args = "-S foo"
+
+self.addrule("PACMAN_RETCODE=0")
+self.addrule("PKG_VERSION=foo|1-2")
+self.addrule("FILE_EXIST=hook-output")