From 19f66083f0aef92af84761fd62245270e97c6f33 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Sun, 1 Jul 2007 20:03:15 -0400 Subject: 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 --- pactest/tests/mode001.py | 12 ++++++++++++ pactest/tests/type001.py | 13 +++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 pactest/tests/mode001.py create mode 100644 pactest/tests/type001.py (limited to 'pactest/tests') 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) diff --git a/pactest/tests/type001.py b/pactest/tests/type001.py new file mode 100644 index 00000000..f119f14f --- /dev/null +++ b/pactest/tests/type001.py @@ -0,0 +1,13 @@ +self.description = "Check the types 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_TYPE=%s|file" % f) +self.addrule("FILE_TYPE=bin/|dir") -- cgit v1.2.3-24-g4f1b