From 4763341ea11c9e33f8d8f0f112659fae5bc74aa9 Mon Sep 17 00:00:00 2001 From: Andrew Gregory Date: Mon, 3 Feb 2014 12:05:47 -0500 Subject: pmrule: add FILE_EMPTY rule Succeeds if the specified path is a file and is empty. Signed-off-by: Andrew Gregory Signed-off-by: Allan McRae --- test/pacman/README | 1 + test/pacman/pmrule.py | 4 ++++ 2 files changed, 5 insertions(+) (limited to 'test') diff --git a/test/pacman/README b/test/pacman/README index c7aeb10a..2516a8ad 100644 --- a/test/pacman/README +++ b/test/pacman/README @@ -299,6 +299,7 @@ its DEPENDS field. . FILE rules FILE_EXIST=path/to/file + FILE_EMPTY=path/to/file FILE_MODIFIED=path/to/file FILE_MODE=path/to/file|octal FILE_TYPE=path/to/file|type (possible types: dir, file, link) diff --git a/test/pacman/pmrule.py b/test/pacman/pmrule.py index ba94ab8c..a91741be 100644 --- a/test/pacman/pmrule.py +++ b/test/pacman/pmrule.py @@ -112,6 +112,10 @@ def check(self, test): if case == "EXIST": if not os.path.isfile(filename): success = 0 + elif case == "EMPTY": + if not (os.path.isfile(filename) + and os.path.getsize(filename) == 0): + success = 0 elif case == "MODIFIED": for f in test.files: if f.name == key: -- cgit v1.2.3-54-g00ecf