mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Account for thumbnail deletion as well
This commit is contained in:
parent
f5daded930
commit
3bbcd562fc
@ -85,7 +85,8 @@ def run_post_consume_script(sender, document, **kwargs):
|
|||||||
|
|
||||||
|
|
||||||
def cleanup_document_deletion(sender, instance, using, **kwargs):
|
def cleanup_document_deletion(sender, instance, using, **kwargs):
|
||||||
try:
|
for f in (instance.source_path, instance.thumbnail_path):
|
||||||
os.unlink(instance.source_path)
|
try:
|
||||||
except FileNotFoundError:
|
os.unlink(f)
|
||||||
pass # The file's already gone, so we're cool with it.
|
except FileNotFoundError:
|
||||||
|
pass # The file's already gone, so we're cool with it.
|
||||||
|
@ -15,6 +15,9 @@ class TestDocument(TestCase):
|
|||||||
checksum="checksum",
|
checksum="checksum",
|
||||||
)
|
)
|
||||||
file_path = document.source_path
|
file_path = document.source_path
|
||||||
|
thumb_path = document.thumbnail_path
|
||||||
with mock.patch("documents.signals.handlers.os.unlink") as mock_unlink:
|
with mock.patch("documents.signals.handlers.os.unlink") as mock_unlink:
|
||||||
document.delete()
|
document.delete()
|
||||||
mock_unlink.assert_called_with(file_path)
|
mock_unlink.assert_any_call(file_path)
|
||||||
|
mock_unlink.assert_any_call(thumb_path)
|
||||||
|
self.assertEqual(mock_unlink.call_count, 2)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user