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 --- test/pacman/tests/hook-file-change-packages.py | 32 ++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 test/pacman/tests/hook-file-change-packages.py (limited to 'test/pacman/tests/hook-file-change-packages.py') diff --git a/test/pacman/tests/hook-file-change-packages.py b/test/pacman/tests/hook-file-change-packages.py new file mode 100644 index 00000000..ad96fc14 --- /dev/null +++ b/test/pacman/tests/hook-file-change-packages.py @@ -0,0 +1,32 @@ +self.description = "Triggering file moves between packages" + +self.add_script("hook-script", ": > hook-output") +self.add_hook("hook", + """ + [Trigger] + Type = File + Operation = Upgrade + Target = bin/foo + + [Action] + When = PreTransaction + Exec = bin/hook-script + """); + +lp = pmpkg("foo", "1-1") +lp.files = ["bin/foo"] +self.addpkg2db("local", lp) + +sp1 = pmpkg("foo", "1-2") +self.addpkg2db("sync", sp1) + +sp2 = pmpkg("bar", "1-2") +sp2.files = ["bin/foo"] +self.addpkg2db("sync", sp2) + +self.args = "-S foo bar" + +self.addrule("PACMAN_RETCODE=0") +self.addrule("PKG_VERSION=foo|1-2") +self.addrule("PKG_VERSION=bar|1-2") +self.addrule("FILE_EXIST=hook-output") -- cgit v1.2.3-24-g4f1b