mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-01 16:15:04 -04:00
19f66083f0
Add the ability to check the permissions and type of a file within the framework of pactest. Two new rules can be used: self.addrule("FILE_TYPE=bin/foo|file") self.addrule("FILE_MODE=bin/bar|644") TODO: add the ability to add different types of files (eg links) via the test package building framework, and add the ability to change the modes on files. Signed-off-by: Dan McGee <dan@archlinux.org>
13 lines
269 B
Python
13 lines
269 B
Python
self.description = "Check the mode of default files in a package"
|
|
|
|
p = pmpkg("pkg1")
|
|
p.files = ["bin/foo"
|
|
"bin/bar"]
|
|
self.addpkg(p)
|
|
|
|
self.args = "-U %s" % p.filename()
|
|
|
|
self.addrule("PACMAN_RETCODE=0")
|
|
for f in p.files:
|
|
self.addrule("FILE_MODE=%s|644" % f)
|