mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Fixes direct test call
This commit is contained in:
parent
3656c36965
commit
1d5a743600
@ -7,6 +7,7 @@ from django.contrib.auth.models import User
|
|||||||
from django.core.management import call_command
|
from django.core.management import call_command
|
||||||
from django.core.management.base import CommandError
|
from django.core.management.base import CommandError
|
||||||
from django.test import TestCase
|
from django.test import TestCase
|
||||||
|
from rich.progress import Progress
|
||||||
|
|
||||||
from documents.management.commands.document_importer import Command
|
from documents.management.commands.document_importer import Command
|
||||||
from documents.models import Document
|
from documents.models import Document
|
||||||
@ -126,15 +127,21 @@ class TestCommandImport(
|
|||||||
},
|
},
|
||||||
]
|
]
|
||||||
cmd.data_only = False
|
cmd.data_only = False
|
||||||
with self.assertRaises(CommandError) as cm:
|
with (
|
||||||
cmd.check_manifest_validity()
|
self.assertRaises(CommandError) as cm,
|
||||||
|
Progress(disable=True) as progress,
|
||||||
|
):
|
||||||
|
cmd.check_manifest_validity(progress)
|
||||||
self.assertInt("Failed to read from original file", str(cm.exception))
|
self.assertInt("Failed to read from original file", str(cm.exception))
|
||||||
|
|
||||||
original_path.chmod(0o444)
|
original_path.chmod(0o444)
|
||||||
archive_path.chmod(0o222)
|
archive_path.chmod(0o222)
|
||||||
|
|
||||||
with self.assertRaises(CommandError) as cm:
|
with (
|
||||||
cmd.check_manifest_validity()
|
self.assertRaises(CommandError) as cm,
|
||||||
|
Progress(disable=True) as progress,
|
||||||
|
):
|
||||||
|
cmd.check_manifest_validity(progress)
|
||||||
self.assertInt("Failed to read from archive file", str(cm.exception))
|
self.assertInt("Failed to read from archive file", str(cm.exception))
|
||||||
|
|
||||||
def test_import_source_not_existing(self):
|
def test_import_source_not_existing(self):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user