Issue #2846: Add support for gzip.GzipFile reading zero-padded files.

Patch by Brian Curtin.
This commit is contained in:
Antoine Pitrou 2010-01-13 14:32:10 +00:00
parent 10042922d9
commit 5a9112c0cc
4 changed files with 27 additions and 0 deletions

View file

@ -252,6 +252,18 @@ class TestGzip(unittest.TestCase):
else:
self.fail("1/0 didn't raise an exception")
def test_zero_padded_file(self):
with gzip.GzipFile(self.filename, "wb") as f:
f.write(data1 * 50)
# Pad the file with zeroes
with open(self.filename, "ab") as f:
f.write("\x00" * 50)
with gzip.GzipFile(self.filename, "rb") as f:
d = f.read()
self.assertEqual(d, data1 * 50, "Incorrect data in file")
def test_main(verbose=None):
test_support.run_unittest(TestGzip)