mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-18 04:26:35 +01:00
Replace usages of os.rename with shutil.move to properly handle cases where the source and dest arent't on the same filesystem
This commit is contained in:
parent
613b71d23b
commit
b7577038a0
4 changed files with 13 additions and 9 deletions
|
|
@ -47,12 +47,16 @@ class TestMakeThumbnails(DirectoriesMixin, FileSystemAssertsMixin, TestCase):
|
|||
self.assertIsFile(self.d1.thumbnail_path)
|
||||
|
||||
@mock.patch("documents.management.commands.document_thumbnails.shutil.move")
|
||||
def test_process_document_invalid_mime_type(self, m):
|
||||
def test_process_document_invalid_mime_type(self, m: mock.Mock):
|
||||
self.d1.mime_type = "asdasdasd"
|
||||
self.d1.save()
|
||||
|
||||
# .save() triggers filename handling
|
||||
m.reset_mock()
|
||||
|
||||
_process_document(self.d1.id)
|
||||
|
||||
# Not called during processing of document
|
||||
m.assert_not_called()
|
||||
|
||||
def test_command(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue