From 5b020bb8d28dc98d7c6c2214061b9f1e22b46ea3 Mon Sep 17 00:00:00 2001 From: jonaswinkler Date: Sat, 28 Nov 2020 11:24:19 +0100 Subject: [PATCH] Adjusted the sanity checker so that it takes archived documents into account. --- src/documents/sanity_checker.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/documents/sanity_checker.py b/src/documents/sanity_checker.py index 18bb3781c..706a2cd03 100644 --- a/src/documents/sanity_checker.py +++ b/src/documents/sanity_checker.py @@ -81,6 +81,17 @@ def check_sanity(): f"Stored: {doc.checksum}, actual: {checksum}." )) + if os.path.isfile(doc.archive_path): + try: + with doc.archive_file as f: + f.read() + except OSError as e: + messages.append(SanityError( + f"Cannot read archive file of document {doc.pk}: {e}" + )) + + present_files.remove(os.path.normpath(doc.archive_path)) + if not doc.content: messages.append(SanityWarning( f"Document {doc.pk} has no content."