Corrects a couple tests
This commit is contained in:
parent
b237ff892b
commit
19d6a2a256
@ -466,7 +466,7 @@ class TestExportImport(
|
|||||||
with ZipFile(expected_file) as zip:
|
with ZipFile(expected_file) as zip:
|
||||||
self.assertEqual(len(zip.namelist()), 11)
|
self.assertEqual(len(zip.namelist()), 11)
|
||||||
self.assertIn("manifest.json", zip.namelist())
|
self.assertIn("manifest.json", zip.namelist())
|
||||||
self.assertIn("version.json", zip.namelist())
|
self.assertIn("metadata.json", zip.namelist())
|
||||||
|
|
||||||
@override_settings(PASSPHRASE="test")
|
@override_settings(PASSPHRASE="test")
|
||||||
def test_export_zipped_format(self):
|
def test_export_zipped_format(self):
|
||||||
@ -504,7 +504,7 @@ class TestExportImport(
|
|||||||
# Extras are from the directories, which also appear in the listing
|
# Extras are from the directories, which also appear in the listing
|
||||||
self.assertEqual(len(zip.namelist()), 14)
|
self.assertEqual(len(zip.namelist()), 14)
|
||||||
self.assertIn("manifest.json", zip.namelist())
|
self.assertIn("manifest.json", zip.namelist())
|
||||||
self.assertIn("version.json", zip.namelist())
|
self.assertIn("metadata.json", zip.namelist())
|
||||||
|
|
||||||
@override_settings(PASSPHRASE="test")
|
@override_settings(PASSPHRASE="test")
|
||||||
def test_export_zipped_with_delete(self):
|
def test_export_zipped_with_delete(self):
|
||||||
@ -552,7 +552,7 @@ class TestExportImport(
|
|||||||
with ZipFile(expected_file) as zip:
|
with ZipFile(expected_file) as zip:
|
||||||
self.assertEqual(len(zip.namelist()), 11)
|
self.assertEqual(len(zip.namelist()), 11)
|
||||||
self.assertIn("manifest.json", zip.namelist())
|
self.assertIn("manifest.json", zip.namelist())
|
||||||
self.assertIn("version.json", zip.namelist())
|
self.assertIn("metadata.json", zip.namelist())
|
||||||
|
|
||||||
def test_export_target_not_exists(self):
|
def test_export_target_not_exists(self):
|
||||||
"""
|
"""
|
||||||
@ -827,7 +827,7 @@ class TestExportImport(
|
|||||||
# Manifest and version files only should be present in the exported directory
|
# Manifest and version files only should be present in the exported directory
|
||||||
self.assertFileCountInDir(self.target, 2)
|
self.assertFileCountInDir(self.target, 2)
|
||||||
self.assertIsFile(self.target / "manifest.json")
|
self.assertIsFile(self.target / "manifest.json")
|
||||||
self.assertIsFile(self.target / "version.json")
|
self.assertIsFile(self.target / "metadata.json")
|
||||||
|
|
||||||
shutil.rmtree(self.dirs.media_dir / "documents")
|
shutil.rmtree(self.dirs.media_dir / "documents")
|
||||||
Document.objects.all().delete()
|
Document.objects.all().delete()
|
||||||
|
@ -125,6 +125,7 @@ class TestCommandImport(
|
|||||||
EXPORTER_ARCHIVE_NAME: "archive.pdf",
|
EXPORTER_ARCHIVE_NAME: "archive.pdf",
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
cmd.data_only = False
|
||||||
with self.assertRaises(CommandError) as cm:
|
with self.assertRaises(CommandError) as cm:
|
||||||
cmd.check_manifest_validity()
|
cmd.check_manifest_validity()
|
||||||
self.assertInt("Failed to read from original file", str(cm.exception))
|
self.assertInt("Failed to read from original file", str(cm.exception))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user