diff options
author | Dan McGee <dan@archlinux.org> | 2007-07-02 02:03:15 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-07-02 02:03:15 +0200 |
commit | 19f66083f0aef92af84761fd62245270e97c6f33 (patch) | |
tree | 44f27171bf8450d861e878826de07897a6a3ac80 /pactest/tests/mode001.py | |
parent | d70116bfbc535cac9eb941a570c34479e68a1b8d (diff) | |
download | pacman-19f66083f0aef92af84761fd62245270e97c6f33.tar.gz pacman-19f66083f0aef92af84761fd62245270e97c6f33.tar.xz |
Add mode and type checking to pactest for files
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>
Diffstat (limited to 'pactest/tests/mode001.py')
-rw-r--r-- | pactest/tests/mode001.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/pactest/tests/mode001.py b/pactest/tests/mode001.py new file mode 100644 index 00000000..ff245a2c --- /dev/null +++ b/pactest/tests/mode001.py @@ -0,0 +1,12 @@ +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) |