mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
fix bugs and test cases
This commit is contained in:
parent
520f92503f
commit
89d6e422f5
@ -100,7 +100,9 @@ def generate_filename(doc, counter=0):
|
|||||||
many_to_dictionary(doc.tags))
|
many_to_dictionary(doc.tags))
|
||||||
|
|
||||||
tag_list = pathvalidate.sanitize_filename(
|
tag_list = pathvalidate.sanitize_filename(
|
||||||
",".join([tag.name for tag in doc.tags.all()]),
|
",".join(sorted(
|
||||||
|
[tag.name for tag in doc.tags.all()]
|
||||||
|
)),
|
||||||
replacement_text="-"
|
replacement_text="-"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -78,7 +78,7 @@ class TestParser(DirectoriesMixin, TestCase):
|
|||||||
parser.get_thumbnail(os.path.join(self.SAMPLE_FILES, 'simple-digital.pdf'), "application/pdf")
|
parser.get_thumbnail(os.path.join(self.SAMPLE_FILES, 'simple-digital.pdf'), "application/pdf")
|
||||||
# dont really know how to test it, just call it and assert that it does not raise anything.
|
# dont really know how to test it, just call it and assert that it does not raise anything.
|
||||||
|
|
||||||
@mock.patch("paperless_tesseract.parsers.run_convert")
|
@mock.patch("documents.parsers.run_convert")
|
||||||
def test_thumbnail_fallback(self, m):
|
def test_thumbnail_fallback(self, m):
|
||||||
|
|
||||||
def call_convert(input_file, output_file, **kwargs):
|
def call_convert(input_file, output_file, **kwargs):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user