summaryrefslogtreecommitdiffstats
path: root/test/pacman/tests/hook-file-upgrade-nomatch.py
blob: e984d37693a35f7b7d041daa82f2dc17f2eb25ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
self.description = "Add and remove separate files that match an upgrade hook"

self.add_script("hook-script", ": > hook-output")
self.add_hook("hook",
        """
        [Trigger]
        Type = File
        Operation = Upgrade
        Target = bin/?*

        [Action]
        When = PreTransaction
        Exec = bin/hook-script
        """);

lp = pmpkg("foo")
lp.files = ["bin/foo"]
self.addpkg2db("local", lp)

sp = pmpkg("foo")
sp.files = ["bin/bar"]
self.addpkg2db("sync", sp)

self.args = "-S foo"

self.addrule("PACMAN_RETCODE=0")
self.addrule("!FILE_EXIST=hook-output")