bpo-26185: Fix repr() on empty ZipInfo object (#13441)

* bpo-26185: Fix repr() on empty ZipInfo object

It was failing on AttributeError due to inexistant
but required attributes file_size and compress_size.
They are now initialized to 0 in ZipInfo.__init__().

* Remove useless hasattr() in ZipInfo._open_to_write()

* Completely remove file_size setting in _open_to_write().
This commit is contained in:
Mickaël Schoentgen 2019-09-09 15:08:54 +02:00 committed by Dino Viehland
parent 1a8de82d3a
commit 992347d737
3 changed files with 32 additions and 5 deletions

View File

@ -1655,6 +1655,33 @@ class OtherTests(unittest.TestCase):
self.assertRaises(ValueError, self.assertRaises(ValueError,
zipfile.ZipInfo, 'seventies', (1979, 1, 1, 0, 0, 0)) zipfile.ZipInfo, 'seventies', (1979, 1, 1, 0, 0, 0))
def test_create_empty_zipinfo_repr(self):
"""Before bpo-26185, repr() on empty ZipInfo object was failing."""
zi = zipfile.ZipInfo(filename="empty")
self.assertEqual(repr(zi), "<ZipInfo filename='empty' file_size=0>")
def test_create_empty_zipinfo_default_attributes(self):
"""Ensure all required attributes are set."""
zi = zipfile.ZipInfo()
self.assertEqual(zi.orig_filename, "NoName")
self.assertEqual(zi.filename, "NoName")
self.assertEqual(zi.date_time, (1980, 1, 1, 0, 0, 0))
self.assertEqual(zi.compress_type, zipfile.ZIP_STORED)
self.assertEqual(zi.comment, b"")
self.assertEqual(zi.extra, b"")
self.assertIn(zi.create_system, (0, 3))
self.assertEqual(zi.create_version, zipfile.DEFAULT_VERSION)
self.assertEqual(zi.extract_version, zipfile.DEFAULT_VERSION)
self.assertEqual(zi.reserved, 0)
self.assertEqual(zi.flag_bits, 0)
self.assertEqual(zi.volume, 0)
self.assertEqual(zi.internal_attr, 0)
self.assertEqual(zi.external_attr, 0)
# Before bpo-26185, both were missing
self.assertEqual(zi.file_size, 0)
self.assertEqual(zi.compress_size, 0)
def test_zipfile_with_short_extra_field(self): def test_zipfile_with_short_extra_field(self):
"""If an extra field in the header is less than 4 bytes, skip it.""" """If an extra field in the header is less than 4 bytes, skip it."""
zipdata = ( zipdata = (

View File

@ -376,11 +376,11 @@ class ZipInfo (object):
self.volume = 0 # Volume number of file header self.volume = 0 # Volume number of file header
self.internal_attr = 0 # Internal attributes self.internal_attr = 0 # Internal attributes
self.external_attr = 0 # External file attributes self.external_attr = 0 # External file attributes
self.compress_size = 0 # Size of the compressed file
self.file_size = 0 # Size of the uncompressed file
# Other attributes are set by class ZipFile: # Other attributes are set by class ZipFile:
# header_offset Byte offset to the file header # header_offset Byte offset to the file header
# CRC CRC-32 of the uncompressed file # CRC CRC-32 of the uncompressed file
# compress_size Size of the compressed file
# file_size Size of the uncompressed file
def __repr__(self): def __repr__(self):
result = ['<%s filename=%r' % (self.__class__.__name__, self.filename)] result = ['<%s filename=%r' % (self.__class__.__name__, self.filename)]
@ -1564,9 +1564,7 @@ class ZipFile:
"another write handle open on it. " "another write handle open on it. "
"Close the first handle before opening another.") "Close the first handle before opening another.")
# Sizes and CRC are overwritten with correct data after processing the file # Size and CRC are overwritten with correct data after processing the file
if not hasattr(zinfo, 'file_size'):
zinfo.file_size = 0
zinfo.compress_size = 0 zinfo.compress_size = 0
zinfo.CRC = 0 zinfo.CRC = 0

View File

@ -0,0 +1,2 @@
Fix :func:`repr` on empty :class:`ZipInfo` object. Patch by Mickaël
Schoentgen.