blob: e7acc30781e58a2b748a6f90ea03a30557067e41 [file] [log] [blame]
Ezio Melotti74c96ec2009-07-08 22:24:06 +00001import io
2import os
Georg Brandl5ba11de2011-01-01 10:09:32 +00003import sys
Barry Warsaw28a691b2010-04-17 00:19:56 +00004import imp
Ezio Melotti35386712009-12-31 13:22:41 +00005import time
Ezio Melotti74c96ec2009-07-08 22:24:06 +00006import shutil
7import struct
8import zipfile
9import unittest
10
Tim Petersa45cacf2004-08-20 03:47:14 +000011
Johannes Gijsbers3caf9c12004-08-19 15:11:50 +000012from tempfile import TemporaryFile
Guido van Rossumd8faa362007-04-27 19:54:29 +000013from random import randint, random
Ezio Melotti74c96ec2009-07-08 22:24:06 +000014from unittest import skipUnless
Tim Petersa19a1682001-03-29 04:36:09 +000015
Serhiy Storchaka45c43752013-01-29 20:10:28 +020016from test.support import (TESTFN, run_unittest, findfile, unlink,
Serhiy Storchakac5b75db2013-01-29 20:14:08 +020017 requires_zlib, requires_bz2, requires_lzma,
18 captured_stdout)
Guido van Rossum368f04a2000-04-10 13:23:04 +000019
Johannes Gijsbers3caf9c12004-08-19 15:11:50 +000020TESTFN2 = TESTFN + "2"
Martin v. Löwis59e47792009-01-24 14:10:07 +000021TESTFNDIR = TESTFN + "d"
Guido van Rossumb5a755e2007-07-18 18:15:48 +000022FIXEDTEST_SIZE = 1000
Georg Brandl5ba11de2011-01-01 10:09:32 +000023DATAFILES_DIR = 'zipfile_datafiles'
Guido van Rossum368f04a2000-04-10 13:23:04 +000024
Christian Heimes790c8232008-01-07 21:14:23 +000025SMALL_TEST_DATA = [('_ziptest1', '1q2w3e4r5t'),
26 ('ziptest2dir/_ziptest2', 'qawsedrftg'),
27 ('/ziptest2dir/ziptest3dir/_ziptest3', 'azsxdcfvgb'),
28 ('ziptest2dir/ziptest3dir/ziptest4dir/_ziptest3', '6y7u8i9o0p')]
29
Ezio Melotti76430242009-07-11 18:28:48 +000030
Johannes Gijsbers3caf9c12004-08-19 15:11:50 +000031class TestsWithSourceFile(unittest.TestCase):
32 def setUp(self):
Guido van Rossumd6ca5462007-05-22 01:29:33 +000033 self.line_gen = (bytes("Zipfile test line %d. random float: %f" %
Guido van Rossum9c627722007-08-27 18:31:48 +000034 (i, random()), "ascii")
Guido van Rossumd6ca5462007-05-22 01:29:33 +000035 for i in range(FIXEDTEST_SIZE))
36 self.data = b'\n'.join(self.line_gen) + b'\n'
Fred Drake6e7e4852001-02-28 05:34:16 +000037
Johannes Gijsbers3caf9c12004-08-19 15:11:50 +000038 # Make a source file with some lines
Ezio Melotti35386712009-12-31 13:22:41 +000039 with open(TESTFN, "wb") as fp:
40 fp.write(self.data)
Tim Peters7d3bad62001-04-04 18:56:49 +000041
Ezio Melottiafd0d112009-07-15 17:17:17 +000042 def make_test_archive(self, f, compression):
Johannes Gijsbers3caf9c12004-08-19 15:11:50 +000043 # Create the ZIP archive
Ezio Melottifaa6b7f2009-12-30 12:34:59 +000044 with zipfile.ZipFile(f, "w", compression) as zipfp:
45 zipfp.write(TESTFN, "another.name")
46 zipfp.write(TESTFN, TESTFN)
47 zipfp.writestr("strfile", self.data)
Tim Peters7d3bad62001-04-04 18:56:49 +000048
Ezio Melottiafd0d112009-07-15 17:17:17 +000049 def zip_test(self, f, compression):
50 self.make_test_archive(f, compression)
Guido van Rossumd8faa362007-04-27 19:54:29 +000051
Johannes Gijsbers3caf9c12004-08-19 15:11:50 +000052 # Read the ZIP archive
Ezio Melottifaa6b7f2009-12-30 12:34:59 +000053 with zipfile.ZipFile(f, "r", compression) as zipfp:
54 self.assertEqual(zipfp.read(TESTFN), self.data)
55 self.assertEqual(zipfp.read("another.name"), self.data)
56 self.assertEqual(zipfp.read("strfile"), self.data)
Thomas Wouters0e3f5912006-08-11 14:57:12 +000057
Ezio Melottifaa6b7f2009-12-30 12:34:59 +000058 # Print the ZIP directory
59 fp = io.StringIO()
60 zipfp.printdir(file=fp)
61 directory = fp.getvalue()
62 lines = directory.splitlines()
Ezio Melotti35386712009-12-31 13:22:41 +000063 self.assertEqual(len(lines), 4) # Number of files + header
Thomas Wouters0e3f5912006-08-11 14:57:12 +000064
Benjamin Peterson577473f2010-01-19 00:09:57 +000065 self.assertIn('File Name', lines[0])
66 self.assertIn('Modified', lines[0])
67 self.assertIn('Size', lines[0])
Thomas Wouters0e3f5912006-08-11 14:57:12 +000068
Ezio Melotti35386712009-12-31 13:22:41 +000069 fn, date, time_, size = lines[1].split()
70 self.assertEqual(fn, 'another.name')
71 self.assertTrue(time.strptime(date, '%Y-%m-%d'))
72 self.assertTrue(time.strptime(time_, '%H:%M:%S'))
73 self.assertEqual(size, str(len(self.data)))
Thomas Wouters0e3f5912006-08-11 14:57:12 +000074
Ezio Melottifaa6b7f2009-12-30 12:34:59 +000075 # Check the namelist
76 names = zipfp.namelist()
Ezio Melotti35386712009-12-31 13:22:41 +000077 self.assertEqual(len(names), 3)
Benjamin Peterson577473f2010-01-19 00:09:57 +000078 self.assertIn(TESTFN, names)
79 self.assertIn("another.name", names)
80 self.assertIn("strfile", names)
Thomas Wouters0e3f5912006-08-11 14:57:12 +000081
Ezio Melottifaa6b7f2009-12-30 12:34:59 +000082 # Check infolist
83 infos = zipfp.infolist()
Ezio Melotti35386712009-12-31 13:22:41 +000084 names = [i.filename for i in infos]
85 self.assertEqual(len(names), 3)
Benjamin Peterson577473f2010-01-19 00:09:57 +000086 self.assertIn(TESTFN, names)
87 self.assertIn("another.name", names)
88 self.assertIn("strfile", names)
Ezio Melottifaa6b7f2009-12-30 12:34:59 +000089 for i in infos:
Ezio Melotti35386712009-12-31 13:22:41 +000090 self.assertEqual(i.file_size, len(self.data))
Thomas Wouters0e3f5912006-08-11 14:57:12 +000091
Ezio Melottifaa6b7f2009-12-30 12:34:59 +000092 # check getinfo
93 for nm in (TESTFN, "another.name", "strfile"):
94 info = zipfp.getinfo(nm)
Ezio Melotti35386712009-12-31 13:22:41 +000095 self.assertEqual(info.filename, nm)
96 self.assertEqual(info.file_size, len(self.data))
Thomas Wouters0e3f5912006-08-11 14:57:12 +000097
Ezio Melottifaa6b7f2009-12-30 12:34:59 +000098 # Check that testzip doesn't raise an exception
99 zipfp.testzip()
Benjamin Petersond285bdb2010-10-31 17:57:22 +0000100 if not isinstance(f, str):
101 f.close()
Tim Peters7d3bad62001-04-04 18:56:49 +0000102
Ezio Melottiafd0d112009-07-15 17:17:17 +0000103 def test_stored(self):
Guido van Rossumd6ca5462007-05-22 01:29:33 +0000104 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
Ezio Melottiafd0d112009-07-15 17:17:17 +0000105 self.zip_test(f, zipfile.ZIP_STORED)
Raymond Hettingerc0fac962003-06-27 22:25:03 +0000106
Ezio Melottiafd0d112009-07-15 17:17:17 +0000107 def zip_open_test(self, f, compression):
108 self.make_test_archive(f, compression)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000109
110 # Read the ZIP archive
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000111 with zipfile.ZipFile(f, "r", compression) as zipfp:
112 zipdata1 = []
Brian Curtin8fb9b862010-11-18 02:15:28 +0000113 with zipfp.open(TESTFN) as zipopen1:
114 while True:
115 read_data = zipopen1.read(256)
116 if not read_data:
117 break
118 zipdata1.append(read_data)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000119
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000120 zipdata2 = []
Brian Curtin8fb9b862010-11-18 02:15:28 +0000121 with zipfp.open("another.name") as zipopen2:
122 while True:
123 read_data = zipopen2.read(256)
124 if not read_data:
125 break
126 zipdata2.append(read_data)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000127
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000128 self.assertEqual(b''.join(zipdata1), self.data)
129 self.assertEqual(b''.join(zipdata2), self.data)
Benjamin Petersond285bdb2010-10-31 17:57:22 +0000130 if not isinstance(f, str):
131 f.close()
Guido van Rossumd8faa362007-04-27 19:54:29 +0000132
Ezio Melottiafd0d112009-07-15 17:17:17 +0000133 def test_open_stored(self):
Guido van Rossumd6ca5462007-05-22 01:29:33 +0000134 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
Ezio Melottiafd0d112009-07-15 17:17:17 +0000135 self.zip_open_test(f, zipfile.ZIP_STORED)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000136
Ezio Melottiafd0d112009-07-15 17:17:17 +0000137 def test_open_via_zip_info(self):
Georg Brandlb533e262008-05-25 18:19:30 +0000138 # Create the ZIP archive
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000139 with zipfile.ZipFile(TESTFN2, "w", zipfile.ZIP_STORED) as zipfp:
140 zipfp.writestr("name", "foo")
141 zipfp.writestr("name", "bar")
Georg Brandlb533e262008-05-25 18:19:30 +0000142
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000143 with zipfile.ZipFile(TESTFN2, "r") as zipfp:
144 infos = zipfp.infolist()
145 data = b""
146 for info in infos:
Brian Curtin8fb9b862010-11-18 02:15:28 +0000147 with zipfp.open(info) as zipopen:
148 data += zipopen.read()
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000149 self.assertTrue(data == b"foobar" or data == b"barfoo")
150 data = b""
151 for info in infos:
152 data += zipfp.read(info)
153 self.assertTrue(data == b"foobar" or data == b"barfoo")
Georg Brandlb533e262008-05-25 18:19:30 +0000154
Ezio Melottiafd0d112009-07-15 17:17:17 +0000155 def zip_random_open_test(self, f, compression):
156 self.make_test_archive(f, compression)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000157
158 # Read the ZIP archive
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000159 with zipfile.ZipFile(f, "r", compression) as zipfp:
160 zipdata1 = []
Brian Curtin8fb9b862010-11-18 02:15:28 +0000161 with zipfp.open(TESTFN) as zipopen1:
162 while True:
163 read_data = zipopen1.read(randint(1, 1024))
164 if not read_data:
165 break
166 zipdata1.append(read_data)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000167
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000168 self.assertEqual(b''.join(zipdata1), self.data)
Benjamin Petersond285bdb2010-10-31 17:57:22 +0000169 if not isinstance(f, str):
170 f.close()
Guido van Rossumd8faa362007-04-27 19:54:29 +0000171
Ezio Melottiafd0d112009-07-15 17:17:17 +0000172 def test_random_open_stored(self):
Guido van Rossumd6ca5462007-05-22 01:29:33 +0000173 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
Ezio Melottiafd0d112009-07-15 17:17:17 +0000174 self.zip_random_open_test(f, zipfile.ZIP_STORED)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000175
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000176 def test_univeral_readaheads(self):
177 f = io.BytesIO()
178
179 data = b'a\r\n' * 16 * 1024
180 zipfp = zipfile.ZipFile(f, 'w', zipfile.ZIP_STORED)
181 zipfp.writestr(TESTFN, data)
182 zipfp.close()
183
184 data2 = b''
185 zipfp = zipfile.ZipFile(f, 'r')
Brian Curtin8fb9b862010-11-18 02:15:28 +0000186 with zipfp.open(TESTFN, 'rU') as zipopen:
187 for line in zipopen:
188 data2 += line
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000189 zipfp.close()
190
191 self.assertEqual(data, data2.replace(b'\n', b'\r\n'))
192
193 def zip_readline_read_test(self, f, compression):
194 self.make_test_archive(f, compression)
195
196 # Read the ZIP archive
197 zipfp = zipfile.ZipFile(f, "r")
Brian Curtin8fb9b862010-11-18 02:15:28 +0000198 with zipfp.open(TESTFN) as zipopen:
199 data = b''
200 while True:
201 read = zipopen.readline()
202 if not read:
203 break
204 data += read
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000205
Brian Curtin8fb9b862010-11-18 02:15:28 +0000206 read = zipopen.read(100)
207 if not read:
208 break
209 data += read
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000210
211 self.assertEqual(data, self.data)
212 zipfp.close()
Benjamin Petersond285bdb2010-10-31 17:57:22 +0000213 if not isinstance(f, str):
214 f.close()
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000215
Ezio Melottiafd0d112009-07-15 17:17:17 +0000216 def zip_readline_test(self, f, compression):
217 self.make_test_archive(f, compression)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000218
219 # Read the ZIP archive
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000220 with zipfile.ZipFile(f, "r") as zipfp:
Brian Curtin8fb9b862010-11-18 02:15:28 +0000221 with zipfp.open(TESTFN) as zipopen:
222 for line in self.line_gen:
223 linedata = zipopen.readline()
224 self.assertEqual(linedata, line + '\n')
Benjamin Petersond285bdb2010-10-31 17:57:22 +0000225 if not isinstance(f, str):
226 f.close()
Guido van Rossumd8faa362007-04-27 19:54:29 +0000227
Ezio Melottiafd0d112009-07-15 17:17:17 +0000228 def zip_readlines_test(self, f, compression):
229 self.make_test_archive(f, compression)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000230
231 # Read the ZIP archive
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000232 with zipfile.ZipFile(f, "r") as zipfp:
Brian Curtin8fb9b862010-11-18 02:15:28 +0000233 with zipfp.open(TESTFN) as zipopen:
234 ziplines = zipopen.readlines()
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000235 for line, zipline in zip(self.line_gen, ziplines):
236 self.assertEqual(zipline, line + '\n')
Benjamin Petersond285bdb2010-10-31 17:57:22 +0000237 if not isinstance(f, str):
238 f.close()
Guido van Rossumd8faa362007-04-27 19:54:29 +0000239
Ezio Melottiafd0d112009-07-15 17:17:17 +0000240 def zip_iterlines_test(self, f, compression):
241 self.make_test_archive(f, compression)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000242
243 # Read the ZIP archive
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000244 with zipfile.ZipFile(f, "r") as zipfp:
Brian Curtin8fb9b862010-11-18 02:15:28 +0000245 with zipfp.open(TESTFN) as zipopen:
246 for line, zipline in zip(self.line_gen, zipopen):
247 self.assertEqual(zipline, line + '\n')
Benjamin Petersond285bdb2010-10-31 17:57:22 +0000248 if not isinstance(f, str):
249 f.close()
Guido van Rossumd8faa362007-04-27 19:54:29 +0000250
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000251 def test_readline_read_stored(self):
252 # Issue #7610: calls to readline() interleaved with calls to read().
253 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
254 self.zip_readline_read_test(f, zipfile.ZIP_STORED)
255
Ezio Melottiafd0d112009-07-15 17:17:17 +0000256 def test_readline_stored(self):
Guido van Rossumd6ca5462007-05-22 01:29:33 +0000257 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
Ezio Melottiafd0d112009-07-15 17:17:17 +0000258 self.zip_readline_test(f, zipfile.ZIP_STORED)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000259
Ezio Melottiafd0d112009-07-15 17:17:17 +0000260 def test_readlines_stored(self):
Guido van Rossumd6ca5462007-05-22 01:29:33 +0000261 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
Ezio Melottiafd0d112009-07-15 17:17:17 +0000262 self.zip_readlines_test(f, zipfile.ZIP_STORED)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000263
Ezio Melottiafd0d112009-07-15 17:17:17 +0000264 def test_iterlines_stored(self):
Guido van Rossumd6ca5462007-05-22 01:29:33 +0000265 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
Ezio Melottiafd0d112009-07-15 17:17:17 +0000266 self.zip_iterlines_test(f, zipfile.ZIP_STORED)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000267
Ezio Melotti975077a2011-05-19 22:03:22 +0300268 @requires_zlib
Ezio Melottiafd0d112009-07-15 17:17:17 +0000269 def test_deflated(self):
Ezio Melotti74c96ec2009-07-08 22:24:06 +0000270 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
Ezio Melottiafd0d112009-07-15 17:17:17 +0000271 self.zip_test(f, zipfile.ZIP_DEFLATED)
Raymond Hettingerc0fac962003-06-27 22:25:03 +0000272
Guido van Rossumd8faa362007-04-27 19:54:29 +0000273
Ezio Melotti975077a2011-05-19 22:03:22 +0300274 @requires_zlib
Ezio Melottiafd0d112009-07-15 17:17:17 +0000275 def test_open_deflated(self):
Ezio Melotti74c96ec2009-07-08 22:24:06 +0000276 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
Ezio Melottiafd0d112009-07-15 17:17:17 +0000277 self.zip_open_test(f, zipfile.ZIP_DEFLATED)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000278
Ezio Melotti975077a2011-05-19 22:03:22 +0300279 @requires_zlib
Ezio Melottiafd0d112009-07-15 17:17:17 +0000280 def test_random_open_deflated(self):
Ezio Melotti74c96ec2009-07-08 22:24:06 +0000281 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
Ezio Melottiafd0d112009-07-15 17:17:17 +0000282 self.zip_random_open_test(f, zipfile.ZIP_DEFLATED)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000283
Ezio Melotti975077a2011-05-19 22:03:22 +0300284 @requires_zlib
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000285 def test_readline_read_deflated(self):
286 # Issue #7610: calls to readline() interleaved with calls to read().
287 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
288 self.zip_readline_read_test(f, zipfile.ZIP_DEFLATED)
289
Ezio Melotti975077a2011-05-19 22:03:22 +0300290 @requires_zlib
Ezio Melottiafd0d112009-07-15 17:17:17 +0000291 def test_readline_deflated(self):
Ezio Melotti74c96ec2009-07-08 22:24:06 +0000292 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
Ezio Melottiafd0d112009-07-15 17:17:17 +0000293 self.zip_readline_test(f, zipfile.ZIP_DEFLATED)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000294
Ezio Melotti975077a2011-05-19 22:03:22 +0300295 @requires_zlib
Ezio Melottiafd0d112009-07-15 17:17:17 +0000296 def test_readlines_deflated(self):
Ezio Melotti74c96ec2009-07-08 22:24:06 +0000297 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
Ezio Melottiafd0d112009-07-15 17:17:17 +0000298 self.zip_readlines_test(f, zipfile.ZIP_DEFLATED)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000299
Ezio Melotti975077a2011-05-19 22:03:22 +0300300 @requires_zlib
Ezio Melottiafd0d112009-07-15 17:17:17 +0000301 def test_iterlines_deflated(self):
Ezio Melotti74c96ec2009-07-08 22:24:06 +0000302 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
Ezio Melottiafd0d112009-07-15 17:17:17 +0000303 self.zip_iterlines_test(f, zipfile.ZIP_DEFLATED)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000304
Ezio Melotti975077a2011-05-19 22:03:22 +0300305 @requires_zlib
Ezio Melottiafd0d112009-07-15 17:17:17 +0000306 def test_low_compression(self):
Ezio Melotti35386712009-12-31 13:22:41 +0000307 """Check for cases where compressed data is larger than original."""
Ezio Melotti74c96ec2009-07-08 22:24:06 +0000308 # Create the ZIP archive
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000309 with zipfile.ZipFile(TESTFN2, "w", zipfile.ZIP_DEFLATED) as zipfp:
310 zipfp.writestr("strfile", '12')
Ezio Melotti74c96ec2009-07-08 22:24:06 +0000311
312 # Get an open object for strfile
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000313 with zipfile.ZipFile(TESTFN2, "r", zipfile.ZIP_DEFLATED) as zipfp:
Brian Curtin8fb9b862010-11-18 02:15:28 +0000314 with zipfp.open("strfile") as openobj:
315 self.assertEqual(openobj.read(1), b'1')
316 self.assertEqual(openobj.read(1), b'2')
Ezio Melotti74c96ec2009-07-08 22:24:06 +0000317
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200318 @requires_bz2
319 def test_bzip2(self):
320 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
321 self.zip_test(f, zipfile.ZIP_BZIP2)
322
323 @requires_bz2
324 def test_open_bzip2(self):
325 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
326 self.zip_open_test(f, zipfile.ZIP_BZIP2)
327
328 @requires_bz2
329 def test_random_open_bzip2(self):
330 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
331 self.zip_random_open_test(f, zipfile.ZIP_BZIP2)
332
333 @requires_bz2
334 def test_readline_read_bzip2(self):
335 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
336 self.zip_readline_read_test(f, zipfile.ZIP_BZIP2)
337
338 @requires_bz2
339 def test_readline_bzip2(self):
340 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
341 self.zip_readline_test(f, zipfile.ZIP_BZIP2)
342
343 @requires_bz2
344 def test_readlines_bzip2(self):
345 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
346 self.zip_readlines_test(f, zipfile.ZIP_BZIP2)
347
348 @requires_bz2
349 def test_iterlines_bzip2(self):
350 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
351 self.zip_iterlines_test(f, zipfile.ZIP_BZIP2)
352
353 @requires_bz2
354 def test_low_compression_bzip2(self):
355 """Check for cases where compressed data is larger than original."""
356 # Create the ZIP archive
357 with zipfile.ZipFile(TESTFN2, "w", zipfile.ZIP_BZIP2) as zipfp:
358 zipfp.writestr("strfile", '12')
359
360 # Get an open object for strfile
361 with zipfile.ZipFile(TESTFN2, "r", zipfile.ZIP_BZIP2) as zipfp:
362 with zipfp.open("strfile") as openobj:
363 self.assertEqual(openobj.read(1), b'1')
364 self.assertEqual(openobj.read(1), b'2')
365
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +0200366 @requires_lzma
367 def test_lzma(self):
368 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
369 self.zip_test(f, zipfile.ZIP_LZMA)
370
371 @requires_lzma
372 def test_open_lzma(self):
373 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
374 self.zip_open_test(f, zipfile.ZIP_LZMA)
375
376 @requires_lzma
377 def test_random_open_lzma(self):
378 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
379 self.zip_random_open_test(f, zipfile.ZIP_LZMA)
380
381 @requires_lzma
382 def test_readline_read_lzma(self):
383 # Issue #7610: calls to readline() interleaved with calls to read().
384 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
385 self.zip_readline_read_test(f, zipfile.ZIP_LZMA)
386
387 @requires_lzma
388 def test_readline_lzma(self):
389 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
390 self.zip_readline_test(f, zipfile.ZIP_LZMA)
391
392 @requires_lzma
393 def test_readlines_lzma(self):
394 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
395 self.zip_readlines_test(f, zipfile.ZIP_LZMA)
396
397 @requires_lzma
398 def test_iterlines_lzma(self):
399 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
400 self.zip_iterlines_test(f, zipfile.ZIP_LZMA)
401
402 @requires_lzma
403 def test_low_compression_lzma(self):
404 """Check for cases where compressed data is larger than original."""
405 # Create the ZIP archive
406 with zipfile.ZipFile(TESTFN2, "w", zipfile.ZIP_LZMA) as zipfp:
407 zipfp.writestr("strfile", '12')
408
409 # Get an open object for strfile
410 with zipfile.ZipFile(TESTFN2, "r", zipfile.ZIP_LZMA) as zipfp:
411 with zipfp.open("strfile") as openobj:
412 self.assertEqual(openobj.read(1), b'1')
413 self.assertEqual(openobj.read(1), b'2')
414
Ezio Melottiafd0d112009-07-15 17:17:17 +0000415 def test_absolute_arcnames(self):
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000416 with zipfile.ZipFile(TESTFN2, "w", zipfile.ZIP_STORED) as zipfp:
417 zipfp.write(TESTFN, "/absolute")
Georg Brandl8f7c54e2006-02-20 08:40:38 +0000418
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000419 with zipfile.ZipFile(TESTFN2, "r", zipfile.ZIP_STORED) as zipfp:
420 self.assertEqual(zipfp.namelist(), ["absolute"])
Tim Peters32cbc962006-02-20 21:42:18 +0000421
Ezio Melottiafd0d112009-07-15 17:17:17 +0000422 def test_append_to_zip_file(self):
Ezio Melotti35386712009-12-31 13:22:41 +0000423 """Test appending to an existing zipfile."""
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000424 with zipfile.ZipFile(TESTFN2, "w", zipfile.ZIP_STORED) as zipfp:
425 zipfp.write(TESTFN, TESTFN)
426
427 with zipfile.ZipFile(TESTFN2, "a", zipfile.ZIP_STORED) as zipfp:
428 zipfp.writestr("strfile", self.data)
429 self.assertEqual(zipfp.namelist(), [TESTFN, "strfile"])
Guido van Rossumb5a755e2007-07-18 18:15:48 +0000430
Ezio Melottiafd0d112009-07-15 17:17:17 +0000431 def test_append_to_non_zip_file(self):
Ezio Melotti35386712009-12-31 13:22:41 +0000432 """Test appending to an existing file that is not a zipfile."""
Guido van Rossumb5a755e2007-07-18 18:15:48 +0000433 # NOTE: this test fails if len(d) < 22 because of the first
434 # line "fpin.seek(-22, 2)" in _EndRecData
Ezio Melotti35386712009-12-31 13:22:41 +0000435 data = b'I am not a ZipFile!'*10
436 with open(TESTFN2, 'wb') as f:
437 f.write(data)
438
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000439 with zipfile.ZipFile(TESTFN2, "a", zipfile.ZIP_STORED) as zipfp:
440 zipfp.write(TESTFN, TESTFN)
Guido van Rossumb5a755e2007-07-18 18:15:48 +0000441
Ezio Melotti35386712009-12-31 13:22:41 +0000442 with open(TESTFN2, 'rb') as f:
443 f.seek(len(data))
444 with zipfile.ZipFile(f, "r") as zipfp:
445 self.assertEqual(zipfp.namelist(), [TESTFN])
Guido van Rossumb5a755e2007-07-18 18:15:48 +0000446
R David Murray4fbb9db2011-06-09 15:50:51 -0400447 def test_ignores_newline_at_end(self):
448 with zipfile.ZipFile(TESTFN2, "w", zipfile.ZIP_STORED) as zipfp:
449 zipfp.write(TESTFN, TESTFN)
450 with open(TESTFN2, 'a') as f:
451 f.write("\r\n\00\00\00")
452 with zipfile.ZipFile(TESTFN2, "r") as zipfp:
453 self.assertIsInstance(zipfp, zipfile.ZipFile)
454
455 def test_ignores_stuff_appended_past_comments(self):
456 with zipfile.ZipFile(TESTFN2, "w", zipfile.ZIP_STORED) as zipfp:
457 zipfp.comment = b"this is a comment"
458 zipfp.write(TESTFN, TESTFN)
459 with open(TESTFN2, 'a') as f:
460 f.write("abcdef\r\n")
461 with zipfile.ZipFile(TESTFN2, "r") as zipfp:
462 self.assertIsInstance(zipfp, zipfile.ZipFile)
463 self.assertEqual(zipfp.comment, b"this is a comment")
464
Ezio Melottiafd0d112009-07-15 17:17:17 +0000465 def test_write_default_name(self):
Ezio Melotti35386712009-12-31 13:22:41 +0000466 """Check that calling ZipFile.write without arcname specified
467 produces the expected result."""
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000468 with zipfile.ZipFile(TESTFN2, "w") as zipfp:
469 zipfp.write(TESTFN)
Brian Curtin8fb9b862010-11-18 02:15:28 +0000470 with open(TESTFN, "rb") as f:
471 self.assertEqual(zipfp.read(TESTFN), f.read())
Guido van Rossumb5a755e2007-07-18 18:15:48 +0000472
Ezio Melotti975077a2011-05-19 22:03:22 +0300473 @requires_zlib
Ezio Melottiafd0d112009-07-15 17:17:17 +0000474 def test_per_file_compression(self):
Ezio Melotti35386712009-12-31 13:22:41 +0000475 """Check that files within a Zip archive can have different
476 compression options."""
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000477 with zipfile.ZipFile(TESTFN2, "w") as zipfp:
478 zipfp.write(TESTFN, 'storeme', zipfile.ZIP_STORED)
479 zipfp.write(TESTFN, 'deflateme', zipfile.ZIP_DEFLATED)
480 sinfo = zipfp.getinfo('storeme')
481 dinfo = zipfp.getinfo('deflateme')
482 self.assertEqual(sinfo.compress_type, zipfile.ZIP_STORED)
483 self.assertEqual(dinfo.compress_type, zipfile.ZIP_DEFLATED)
Guido van Rossumb5a755e2007-07-18 18:15:48 +0000484
Ezio Melottiafd0d112009-07-15 17:17:17 +0000485 def test_write_to_readonly(self):
Ezio Melotti35386712009-12-31 13:22:41 +0000486 """Check that trying to call write() on a readonly ZipFile object
487 raises a RuntimeError."""
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000488 with zipfile.ZipFile(TESTFN2, mode="w") as zipfp:
489 zipfp.writestr("somefile.txt", "bogus")
490
491 with zipfile.ZipFile(TESTFN2, mode="r") as zipfp:
492 self.assertRaises(RuntimeError, zipfp.write, TESTFN)
Guido van Rossumb5a755e2007-07-18 18:15:48 +0000493
Ezio Melottiafd0d112009-07-15 17:17:17 +0000494 def test_extract(self):
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000495 with zipfile.ZipFile(TESTFN2, "w", zipfile.ZIP_STORED) as zipfp:
496 for fpath, fdata in SMALL_TEST_DATA:
497 zipfp.writestr(fpath, fdata)
Christian Heimes790c8232008-01-07 21:14:23 +0000498
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000499 with zipfile.ZipFile(TESTFN2, "r") as zipfp:
500 for fpath, fdata in SMALL_TEST_DATA:
501 writtenfile = zipfp.extract(fpath)
Christian Heimes790c8232008-01-07 21:14:23 +0000502
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000503 # make sure it was written to the right place
504 if os.path.isabs(fpath):
505 correctfile = os.path.join(os.getcwd(), fpath[1:])
506 else:
507 correctfile = os.path.join(os.getcwd(), fpath)
508 correctfile = os.path.normpath(correctfile)
Christian Heimes790c8232008-01-07 21:14:23 +0000509
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000510 self.assertEqual(writtenfile, correctfile)
Christian Heimes790c8232008-01-07 21:14:23 +0000511
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000512 # make sure correct data is in correct file
Brian Curtin8fb9b862010-11-18 02:15:28 +0000513 with open(writtenfile, "rb") as f:
514 self.assertEqual(fdata.encode(), f.read())
Christian Heimes790c8232008-01-07 21:14:23 +0000515
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000516 os.remove(writtenfile)
Christian Heimes790c8232008-01-07 21:14:23 +0000517
518 # remove the test file subdirectories
519 shutil.rmtree(os.path.join(os.getcwd(), 'ziptest2dir'))
520
Ezio Melottiafd0d112009-07-15 17:17:17 +0000521 def test_extract_all(self):
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000522 with zipfile.ZipFile(TESTFN2, "w", zipfile.ZIP_STORED) as zipfp:
523 for fpath, fdata in SMALL_TEST_DATA:
524 zipfp.writestr(fpath, fdata)
Christian Heimes790c8232008-01-07 21:14:23 +0000525
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000526 with zipfile.ZipFile(TESTFN2, "r") as zipfp:
527 zipfp.extractall()
528 for fpath, fdata in SMALL_TEST_DATA:
529 if os.path.isabs(fpath):
530 outfile = os.path.join(os.getcwd(), fpath[1:])
531 else:
532 outfile = os.path.join(os.getcwd(), fpath)
Christian Heimes790c8232008-01-07 21:14:23 +0000533
Brian Curtin8fb9b862010-11-18 02:15:28 +0000534 with open(outfile, "rb") as f:
535 self.assertEqual(fdata.encode(), f.read())
Christian Heimes790c8232008-01-07 21:14:23 +0000536
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000537 os.remove(outfile)
Christian Heimes790c8232008-01-07 21:14:23 +0000538
539 # remove the test file subdirectories
540 shutil.rmtree(os.path.join(os.getcwd(), 'ziptest2dir'))
541
Ezio Melotti975077a2011-05-19 22:03:22 +0300542 def test_writestr_compression_stored(self):
Ronald Oussorenee5c8852010-02-07 20:24:02 +0000543 zipfp = zipfile.ZipFile(TESTFN2, "w")
544 zipfp.writestr("a.txt", "hello world", compress_type=zipfile.ZIP_STORED)
Ronald Oussorenee5c8852010-02-07 20:24:02 +0000545 info = zipfp.getinfo('a.txt')
546 self.assertEqual(info.compress_type, zipfile.ZIP_STORED)
547
Ezio Melotti975077a2011-05-19 22:03:22 +0300548 @requires_zlib
549 def test_writestr_compression_deflated(self):
550 zipfp = zipfile.ZipFile(TESTFN2, "w")
551 zipfp.writestr("b.txt", "hello world", compress_type=zipfile.ZIP_DEFLATED)
552 info = zipfp.getinfo('b.txt')
553 self.assertEqual(info.compress_type, zipfile.ZIP_DEFLATED)
Ronald Oussorenee5c8852010-02-07 20:24:02 +0000554
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200555 @requires_bz2
556 def test_writestr_compression_bzip2(self):
557 zipfp = zipfile.ZipFile(TESTFN2, "w")
558 zipfp.writestr("b.txt", "hello world", compress_type=zipfile.ZIP_BZIP2)
559 info = zipfp.getinfo('b.txt')
560 self.assertEqual(info.compress_type, zipfile.ZIP_BZIP2)
561
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +0200562 @requires_lzma
563 def test_writestr_compression_lzma(self):
564 zipfp = zipfile.ZipFile(TESTFN2, "w")
565 zipfp.writestr("b.txt", "hello world", compress_type=zipfile.ZIP_LZMA)
566 info = zipfp.getinfo('b.txt')
567 self.assertEqual(info.compress_type, zipfile.ZIP_LZMA)
568
Antoine Pitrou6e1df8d2008-07-25 19:58:18 +0000569 def zip_test_writestr_permissions(self, f, compression):
570 # Make sure that writestr creates files with mode 0600,
571 # when it is passed a name rather than a ZipInfo instance.
572
Ezio Melottiafd0d112009-07-15 17:17:17 +0000573 self.make_test_archive(f, compression)
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000574 with zipfile.ZipFile(f, "r") as zipfp:
575 zinfo = zipfp.getinfo('strfile')
576 self.assertEqual(zinfo.external_attr, 0o600 << 16)
Benjamin Petersond285bdb2010-10-31 17:57:22 +0000577 if not isinstance(f, str):
578 f.close()
Antoine Pitrou6e1df8d2008-07-25 19:58:18 +0000579
Ezio Melottiafd0d112009-07-15 17:17:17 +0000580 def test_writestr_permissions(self):
Antoine Pitrou6e1df8d2008-07-25 19:58:18 +0000581 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
582 self.zip_test_writestr_permissions(f, zipfile.ZIP_STORED)
583
Gregory P. Smithb0d9ca92009-07-07 05:06:04 +0000584 def test_writestr_extended_local_header_issue1202(self):
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000585 with zipfile.ZipFile(TESTFN2, 'w') as orig_zip:
586 for data in 'abcdefghijklmnop':
587 zinfo = zipfile.ZipInfo(data)
588 zinfo.flag_bits |= 0x08 # Include an extended local header.
589 orig_zip.writestr(zinfo, data)
590
591 def test_close(self):
592 """Check that the zipfile is closed after the 'with' block."""
593 with zipfile.ZipFile(TESTFN2, "w") as zipfp:
594 for fpath, fdata in SMALL_TEST_DATA:
595 zipfp.writestr(fpath, fdata)
596 self.assertTrue(zipfp.fp is not None, 'zipfp is not open')
597 self.assertTrue(zipfp.fp is None, 'zipfp is not closed')
598
599 with zipfile.ZipFile(TESTFN2, "r") as zipfp:
600 self.assertTrue(zipfp.fp is not None, 'zipfp is not open')
601 self.assertTrue(zipfp.fp is None, 'zipfp is not closed')
602
603 def test_close_on_exception(self):
604 """Check that the zipfile is closed if an exception is raised in the
605 'with' block."""
606 with zipfile.ZipFile(TESTFN2, "w") as zipfp:
607 for fpath, fdata in SMALL_TEST_DATA:
608 zipfp.writestr(fpath, fdata)
609
610 try:
611 with zipfile.ZipFile(TESTFN2, "r") as zipfp2:
Georg Brandl4d540882010-10-28 06:42:33 +0000612 raise zipfile.BadZipFile()
613 except zipfile.BadZipFile:
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000614 self.assertTrue(zipfp2.fp is None, 'zipfp is not closed')
Gregory P. Smithb0d9ca92009-07-07 05:06:04 +0000615
Senthil Kumaran29fa9d42011-10-20 01:46:00 +0800616 def test_add_file_before_1980(self):
617 # Set atime and mtime to 1970-01-01
618 os.utime(TESTFN, (0, 0))
619 with zipfile.ZipFile(TESTFN2, "w") as zipfp:
620 self.assertRaises(ValueError, zipfp.write, TESTFN)
621
622
Senthil Kumaran7e3062b2011-10-20 01:52:41 +0800623
624
625
626
627
Ezio Melotti975077a2011-05-19 22:03:22 +0300628 @requires_zlib
Georg Brandl5ba11de2011-01-01 10:09:32 +0000629 def test_unicode_filenames(self):
Georg Brandl04480a82011-01-01 10:42:31 +0000630 # bug #10801
631 fname = findfile('zip_cp437_header.zip')
Georg Brandl5ba11de2011-01-01 10:09:32 +0000632 with zipfile.ZipFile(fname) as zipfp:
Georg Brandl04480a82011-01-01 10:42:31 +0000633 for name in zipfp.namelist():
634 zipfp.open(name).close()
Georg Brandl5ba11de2011-01-01 10:09:32 +0000635
Johannes Gijsbers3caf9c12004-08-19 15:11:50 +0000636 def tearDown(self):
Ezio Melotti76430242009-07-11 18:28:48 +0000637 unlink(TESTFN)
638 unlink(TESTFN2)
639
Johannes Gijsbers3caf9c12004-08-19 15:11:50 +0000640
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000641class TestZip64InSmallFiles(unittest.TestCase):
642 # These tests test the ZIP64 functionality without using large files,
643 # see test_zipfile64 for proper tests.
644
645 def setUp(self):
646 self._limit = zipfile.ZIP64_LIMIT
647 zipfile.ZIP64_LIMIT = 5
648
Guido van Rossum9c627722007-08-27 18:31:48 +0000649 line_gen = (bytes("Test of zipfile line %d." % i, "ascii")
Guido van Rossumd6ca5462007-05-22 01:29:33 +0000650 for i in range(0, FIXEDTEST_SIZE))
651 self.data = b'\n'.join(line_gen)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000652
653 # Make a source file with some lines
Ezio Melotti35386712009-12-31 13:22:41 +0000654 with open(TESTFN, "wb") as fp:
655 fp.write(self.data)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000656
Ezio Melottiafd0d112009-07-15 17:17:17 +0000657 def large_file_exception_test(self, f, compression):
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000658 with zipfile.ZipFile(f, "w", compression) as zipfp:
659 self.assertRaises(zipfile.LargeZipFile,
Ezio Melotti35386712009-12-31 13:22:41 +0000660 zipfp.write, TESTFN, "another.name")
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000661
Ezio Melottiafd0d112009-07-15 17:17:17 +0000662 def large_file_exception_test2(self, f, compression):
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000663 with zipfile.ZipFile(f, "w", compression) as zipfp:
664 self.assertRaises(zipfile.LargeZipFile,
Ezio Melotti35386712009-12-31 13:22:41 +0000665 zipfp.writestr, "another.name", self.data)
Benjamin Petersond285bdb2010-10-31 17:57:22 +0000666 if not isinstance(f, str):
667 f.close()
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000668
Ezio Melottiafd0d112009-07-15 17:17:17 +0000669 def test_large_file_exception(self):
Guido van Rossumd6ca5462007-05-22 01:29:33 +0000670 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
Ezio Melottiafd0d112009-07-15 17:17:17 +0000671 self.large_file_exception_test(f, zipfile.ZIP_STORED)
672 self.large_file_exception_test2(f, zipfile.ZIP_STORED)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000673
Ezio Melottiafd0d112009-07-15 17:17:17 +0000674 def zip_test(self, f, compression):
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000675 # Create the ZIP archive
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000676 with zipfile.ZipFile(f, "w", compression, allowZip64=True) as zipfp:
677 zipfp.write(TESTFN, "another.name")
678 zipfp.write(TESTFN, TESTFN)
679 zipfp.writestr("strfile", self.data)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000680
681 # Read the ZIP archive
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000682 with zipfile.ZipFile(f, "r", compression) as zipfp:
683 self.assertEqual(zipfp.read(TESTFN), self.data)
684 self.assertEqual(zipfp.read("another.name"), self.data)
685 self.assertEqual(zipfp.read("strfile"), self.data)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000686
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000687 # Print the ZIP directory
688 fp = io.StringIO()
689 zipfp.printdir(fp)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000690
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000691 directory = fp.getvalue()
692 lines = directory.splitlines()
Ezio Melotti35386712009-12-31 13:22:41 +0000693 self.assertEqual(len(lines), 4) # Number of files + header
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000694
Benjamin Peterson577473f2010-01-19 00:09:57 +0000695 self.assertIn('File Name', lines[0])
696 self.assertIn('Modified', lines[0])
697 self.assertIn('Size', lines[0])
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000698
Ezio Melotti35386712009-12-31 13:22:41 +0000699 fn, date, time_, size = lines[1].split()
700 self.assertEqual(fn, 'another.name')
701 self.assertTrue(time.strptime(date, '%Y-%m-%d'))
702 self.assertTrue(time.strptime(time_, '%H:%M:%S'))
703 self.assertEqual(size, str(len(self.data)))
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000704
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000705 # Check the namelist
706 names = zipfp.namelist()
Ezio Melotti35386712009-12-31 13:22:41 +0000707 self.assertEqual(len(names), 3)
Benjamin Peterson577473f2010-01-19 00:09:57 +0000708 self.assertIn(TESTFN, names)
709 self.assertIn("another.name", names)
710 self.assertIn("strfile", names)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000711
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000712 # Check infolist
713 infos = zipfp.infolist()
Ezio Melotti35386712009-12-31 13:22:41 +0000714 names = [i.filename for i in infos]
715 self.assertEqual(len(names), 3)
Benjamin Peterson577473f2010-01-19 00:09:57 +0000716 self.assertIn(TESTFN, names)
717 self.assertIn("another.name", names)
718 self.assertIn("strfile", names)
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000719 for i in infos:
Ezio Melotti35386712009-12-31 13:22:41 +0000720 self.assertEqual(i.file_size, len(self.data))
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000721
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000722 # check getinfo
723 for nm in (TESTFN, "another.name", "strfile"):
724 info = zipfp.getinfo(nm)
Ezio Melotti35386712009-12-31 13:22:41 +0000725 self.assertEqual(info.filename, nm)
726 self.assertEqual(info.file_size, len(self.data))
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000727
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000728 # Check that testzip doesn't raise an exception
729 zipfp.testzip()
Benjamin Petersond285bdb2010-10-31 17:57:22 +0000730 if not isinstance(f, str):
731 f.close()
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000732
Ezio Melottiafd0d112009-07-15 17:17:17 +0000733 def test_stored(self):
Guido van Rossumd6ca5462007-05-22 01:29:33 +0000734 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
Ezio Melottiafd0d112009-07-15 17:17:17 +0000735 self.zip_test(f, zipfile.ZIP_STORED)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000736
Ezio Melotti975077a2011-05-19 22:03:22 +0300737 @requires_zlib
Ezio Melottiafd0d112009-07-15 17:17:17 +0000738 def test_deflated(self):
Ezio Melotti76430242009-07-11 18:28:48 +0000739 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
Ezio Melottiafd0d112009-07-15 17:17:17 +0000740 self.zip_test(f, zipfile.ZIP_DEFLATED)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000741
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200742 @requires_bz2
743 def test_bzip2(self):
744 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
745 self.zip_test(f, zipfile.ZIP_BZIP2)
746
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +0200747 @requires_lzma
748 def test_lzma(self):
749 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
750 self.zip_test(f, zipfile.ZIP_LZMA)
751
Ezio Melottiafd0d112009-07-15 17:17:17 +0000752 def test_absolute_arcnames(self):
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000753 with zipfile.ZipFile(TESTFN2, "w", zipfile.ZIP_STORED,
754 allowZip64=True) as zipfp:
755 zipfp.write(TESTFN, "/absolute")
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000756
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000757 with zipfile.ZipFile(TESTFN2, "r", zipfile.ZIP_STORED) as zipfp:
758 self.assertEqual(zipfp.namelist(), ["absolute"])
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000759
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000760 def tearDown(self):
761 zipfile.ZIP64_LIMIT = self._limit
Ezio Melotti76430242009-07-11 18:28:48 +0000762 unlink(TESTFN)
763 unlink(TESTFN2)
764
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000765
766class PyZipFileTests(unittest.TestCase):
Ezio Melottiafd0d112009-07-15 17:17:17 +0000767 def test_write_pyfile(self):
Łukasz Langaa9f054b2010-11-23 00:15:02 +0000768 with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp:
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000769 fn = __file__
770 if fn.endswith('.pyc') or fn.endswith('.pyo'):
Barry Warsaw28a691b2010-04-17 00:19:56 +0000771 path_split = fn.split(os.sep)
772 if os.altsep is not None:
773 path_split.extend(fn.split(os.altsep))
774 if '__pycache__' in path_split:
775 fn = imp.source_from_cache(fn)
776 else:
777 fn = fn[:-1]
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000778
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000779 zipfp.writepy(fn)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000780
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000781 bn = os.path.basename(fn)
Benjamin Peterson577473f2010-01-19 00:09:57 +0000782 self.assertNotIn(bn, zipfp.namelist())
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000783 self.assertTrue(bn + 'o' in zipfp.namelist() or
784 bn + 'c' in zipfp.namelist())
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000785
Łukasz Langaa9f054b2010-11-23 00:15:02 +0000786 with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp:
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000787 fn = __file__
Ezio Melotti35386712009-12-31 13:22:41 +0000788 if fn.endswith(('.pyc', '.pyo')):
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000789 fn = fn[:-1]
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000790
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000791 zipfp.writepy(fn, "testpackage")
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000792
Ezio Melotti35386712009-12-31 13:22:41 +0000793 bn = "%s/%s" % ("testpackage", os.path.basename(fn))
Benjamin Peterson577473f2010-01-19 00:09:57 +0000794 self.assertNotIn(bn, zipfp.namelist())
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000795 self.assertTrue(bn + 'o' in zipfp.namelist() or
796 bn + 'c' in zipfp.namelist())
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000797
Ezio Melottiafd0d112009-07-15 17:17:17 +0000798 def test_write_python_package(self):
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000799 import email
800 packagedir = os.path.dirname(email.__file__)
801
Łukasz Langaa9f054b2010-11-23 00:15:02 +0000802 with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp:
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000803 zipfp.writepy(packagedir)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000804
Ezio Melotti35386712009-12-31 13:22:41 +0000805 # Check for a couple of modules at different levels of the
806 # hierarchy
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000807 names = zipfp.namelist()
808 self.assertTrue('email/__init__.pyo' in names or
809 'email/__init__.pyc' in names)
810 self.assertTrue('email/mime/text.pyo' in names or
811 'email/mime/text.pyc' in names)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000812
Georg Brandl8334fd92010-12-04 10:26:46 +0000813 def test_write_with_optimization(self):
814 import email
815 packagedir = os.path.dirname(email.__file__)
816 # use .pyc if running test in optimization mode,
817 # use .pyo if running test in debug mode
818 optlevel = 1 if __debug__ else 0
819 ext = '.pyo' if optlevel == 1 else '.pyc'
820
821 with TemporaryFile() as t, \
822 zipfile.PyZipFile(t, "w", optimize=optlevel) as zipfp:
823 zipfp.writepy(packagedir)
824
825 names = zipfp.namelist()
826 self.assertIn('email/__init__' + ext, names)
827 self.assertIn('email/mime/text' + ext, names)
828
Ezio Melottiafd0d112009-07-15 17:17:17 +0000829 def test_write_python_directory(self):
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000830 os.mkdir(TESTFN2)
831 try:
Ezio Melotti35386712009-12-31 13:22:41 +0000832 with open(os.path.join(TESTFN2, "mod1.py"), "w") as fp:
833 fp.write("print(42)\n")
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000834
Ezio Melotti35386712009-12-31 13:22:41 +0000835 with open(os.path.join(TESTFN2, "mod2.py"), "w") as fp:
836 fp.write("print(42 * 42)\n")
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000837
Ezio Melotti35386712009-12-31 13:22:41 +0000838 with open(os.path.join(TESTFN2, "mod2.txt"), "w") as fp:
839 fp.write("bla bla bla\n")
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000840
Łukasz Langaa9f054b2010-11-23 00:15:02 +0000841 with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp:
842 zipfp.writepy(TESTFN2)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000843
Łukasz Langaa9f054b2010-11-23 00:15:02 +0000844 names = zipfp.namelist()
845 self.assertTrue('mod1.pyc' in names or 'mod1.pyo' in names)
846 self.assertTrue('mod2.pyc' in names or 'mod2.pyo' in names)
847 self.assertNotIn('mod2.txt', names)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000848
849 finally:
850 shutil.rmtree(TESTFN2)
851
Ezio Melottiafd0d112009-07-15 17:17:17 +0000852 def test_write_non_pyfile(self):
Łukasz Langaa9f054b2010-11-23 00:15:02 +0000853 with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp:
Brian Curtin8fb9b862010-11-18 02:15:28 +0000854 with open(TESTFN, 'w') as f:
855 f.write('most definitely not a python file')
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000856 self.assertRaises(RuntimeError, zipfp.writepy, TESTFN)
857 os.remove(TESTFN)
858
Serhiy Storchaka45c43752013-01-29 20:10:28 +0200859 def test_write_pyfile_bad_syntax(self):
860 os.mkdir(TESTFN2)
861 try:
862 with open(os.path.join(TESTFN2, "mod1.py"), "w") as fp:
863 fp.write("Bad syntax in python file\n")
864
865 with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp:
866 # syntax errors are printed to stdout
867 with captured_stdout() as s:
868 zipfp.writepy(os.path.join(TESTFN2, "mod1.py"))
869
870 self.assertIn("SyntaxError", s.getvalue())
871
872 # as it will not have compiled the python file, it will
873 # include the .py file not .pyc or .pyo
874 names = zipfp.namelist()
875 self.assertIn('mod1.py', names)
876 self.assertNotIn('mod1.pyc', names)
877 self.assertNotIn('mod1.pyo', names)
878
879 finally:
880 shutil.rmtree(TESTFN2)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000881
Johannes Gijsbers3caf9c12004-08-19 15:11:50 +0000882class OtherTests(unittest.TestCase):
Antoine Pitrou7c8bcb62010-08-12 15:11:50 +0000883 zips_with_bad_crc = {
884 zipfile.ZIP_STORED: (
885 b'PK\003\004\024\0\0\0\0\0 \213\212;:r'
886 b'\253\377\f\0\0\0\f\0\0\0\005\0\0\000af'
887 b'ilehello,AworldP'
888 b'K\001\002\024\003\024\0\0\0\0\0 \213\212;:'
889 b'r\253\377\f\0\0\0\f\0\0\0\005\0\0\0\0'
890 b'\0\0\0\0\0\0\0\200\001\0\0\0\000afi'
891 b'lePK\005\006\0\0\0\0\001\0\001\0003\000'
892 b'\0\0/\0\0\0\0\0'),
893 zipfile.ZIP_DEFLATED: (
894 b'PK\x03\x04\x14\x00\x00\x00\x08\x00n}\x0c=FA'
895 b'KE\x10\x00\x00\x00n\x00\x00\x00\x05\x00\x00\x00af'
896 b'ile\xcbH\xcd\xc9\xc9W(\xcf/\xcaI\xc9\xa0'
897 b'=\x13\x00PK\x01\x02\x14\x03\x14\x00\x00\x00\x08\x00n'
898 b'}\x0c=FAKE\x10\x00\x00\x00n\x00\x00\x00\x05'
899 b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x01\x00\x00\x00'
900 b'\x00afilePK\x05\x06\x00\x00\x00\x00\x01\x00'
901 b'\x01\x003\x00\x00\x003\x00\x00\x00\x00\x00'),
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200902 zipfile.ZIP_BZIP2: (
903 b'PK\x03\x04\x14\x03\x00\x00\x0c\x00nu\x0c=FA'
904 b'KE8\x00\x00\x00n\x00\x00\x00\x05\x00\x00\x00af'
905 b'ileBZh91AY&SY\xd4\xa8\xca'
906 b'\x7f\x00\x00\x0f\x11\x80@\x00\x06D\x90\x80 \x00 \xa5'
907 b'P\xd9!\x03\x03\x13\x13\x13\x89\xa9\xa9\xc2u5:\x9f'
908 b'\x8b\xb9"\x9c(HjTe?\x80PK\x01\x02\x14'
909 b'\x03\x14\x03\x00\x00\x0c\x00nu\x0c=FAKE8'
910 b'\x00\x00\x00n\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x00'
911 b'\x00 \x80\x80\x81\x00\x00\x00\x00afilePK'
912 b'\x05\x06\x00\x00\x00\x00\x01\x00\x01\x003\x00\x00\x00[\x00'
913 b'\x00\x00\x00\x00'),
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +0200914 zipfile.ZIP_LZMA: (
915 b'PK\x03\x04\x14\x03\x00\x00\x0e\x00nu\x0c=FA'
916 b'KE\x1b\x00\x00\x00n\x00\x00\x00\x05\x00\x00\x00af'
917 b'ile\t\x04\x05\x00]\x00\x00\x00\x04\x004\x19I'
918 b'\xee\x8d\xe9\x17\x89:3`\tq!.8\x00PK'
919 b'\x01\x02\x14\x03\x14\x03\x00\x00\x0e\x00nu\x0c=FA'
920 b'KE\x1b\x00\x00\x00n\x00\x00\x00\x05\x00\x00\x00\x00\x00'
921 b'\x00\x00\x00\x00 \x80\x80\x81\x00\x00\x00\x00afil'
922 b'ePK\x05\x06\x00\x00\x00\x00\x01\x00\x01\x003\x00\x00'
923 b'\x00>\x00\x00\x00\x00\x00'),
Antoine Pitrou7c8bcb62010-08-12 15:11:50 +0000924 }
925
Martin v. Löwisd099b562012-05-01 14:08:22 +0200926 def test_unsupported_version(self):
927 # File has an extract_version of 120
928 data = (b'PK\x03\x04x\x00\x00\x00\x00\x00!p\xa1@\x00\x00\x00\x00\x00\x00'
929 b'\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00xPK\x01\x02x\x03x\x00\x00\x00\x00'
930 b'\x00!p\xa1@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00'
931 b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x01\x00\x00\x00\x00xPK\x05\x06'
932 b'\x00\x00\x00\x00\x01\x00\x01\x00/\x00\x00\x00\x1f\x00\x00\x00\x00\x00')
933 self.assertRaises(NotImplementedError, zipfile.ZipFile,
934 io.BytesIO(data), 'r')
935
Ezio Melottiafd0d112009-07-15 17:17:17 +0000936 def test_unicode_filenames(self):
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000937 with zipfile.ZipFile(TESTFN, "w") as zf:
938 zf.writestr("foo.txt", "Test for unicode filename")
939 zf.writestr("\xf6.txt", "Test for unicode filename")
Ezio Melottie9615932010-01-24 19:26:24 +0000940 self.assertIsInstance(zf.infolist()[0].filename, str)
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000941
942 with zipfile.ZipFile(TESTFN, "r") as zf:
943 self.assertEqual(zf.filelist[0].filename, "foo.txt")
944 self.assertEqual(zf.filelist[1].filename, "\xf6.txt")
Martin v. Löwis8570f6a2008-05-05 17:44:38 +0000945
Ezio Melottiafd0d112009-07-15 17:17:17 +0000946 def test_create_non_existent_file_for_append(self):
Thomas Wouterscf297e42007-02-23 15:07:44 +0000947 if os.path.exists(TESTFN):
948 os.unlink(TESTFN)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000949
Thomas Wouterscf297e42007-02-23 15:07:44 +0000950 filename = 'testfile.txt'
Guido van Rossumd6ca5462007-05-22 01:29:33 +0000951 content = b'hello, world. this is some content.'
Guido van Rossumd8faa362007-04-27 19:54:29 +0000952
Thomas Wouterscf297e42007-02-23 15:07:44 +0000953 try:
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000954 with zipfile.ZipFile(TESTFN, 'a') as zf:
955 zf.writestr(filename, content)
Thomas Wouterscf297e42007-02-23 15:07:44 +0000956 except IOError:
957 self.fail('Could not append data to a non-existent zip file.')
958
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000959 self.assertTrue(os.path.exists(TESTFN))
Thomas Wouterscf297e42007-02-23 15:07:44 +0000960
Ezio Melottifaa6b7f2009-12-30 12:34:59 +0000961 with zipfile.ZipFile(TESTFN, 'r') as zf:
962 self.assertEqual(zf.read(filename), content)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000963
Ezio Melottiafd0d112009-07-15 17:17:17 +0000964 def test_close_erroneous_file(self):
Johannes Gijsbers3caf9c12004-08-19 15:11:50 +0000965 # This test checks that the ZipFile constructor closes the file object
Ezio Melotti35386712009-12-31 13:22:41 +0000966 # it opens if there's an error in the file. If it doesn't, the
967 # traceback holds a reference to the ZipFile object and, indirectly,
968 # the file object.
Johannes Gijsbers3caf9c12004-08-19 15:11:50 +0000969 # On Windows, this causes the os.unlink() call to fail because the
970 # underlying file is still open. This is SF bug #412214.
971 #
Ezio Melotti35386712009-12-31 13:22:41 +0000972 with open(TESTFN, "w") as fp:
973 fp.write("this is not a legal zip file\n")
Johannes Gijsbers3caf9c12004-08-19 15:11:50 +0000974 try:
975 zf = zipfile.ZipFile(TESTFN)
Georg Brandl4d540882010-10-28 06:42:33 +0000976 except zipfile.BadZipFile:
Guido van Rossumd8faa362007-04-27 19:54:29 +0000977 pass
978
Ezio Melottiafd0d112009-07-15 17:17:17 +0000979 def test_is_zip_erroneous_file(self):
Ezio Melotti35386712009-12-31 13:22:41 +0000980 """Check that is_zipfile() correctly identifies non-zip files."""
Antoine Pitroudb5fe662008-12-27 15:50:40 +0000981 # - passing a filename
982 with open(TESTFN, "w") as fp:
983 fp.write("this is not a legal zip file\n")
Guido van Rossumd8faa362007-04-27 19:54:29 +0000984 chk = zipfile.is_zipfile(TESTFN)
Ezio Melotti35386712009-12-31 13:22:41 +0000985 self.assertFalse(chk)
Antoine Pitroudb5fe662008-12-27 15:50:40 +0000986 # - passing a file object
987 with open(TESTFN, "rb") as fp:
988 chk = zipfile.is_zipfile(fp)
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000989 self.assertTrue(not chk)
Antoine Pitroudb5fe662008-12-27 15:50:40 +0000990 # - passing a file-like object
991 fp = io.BytesIO()
992 fp.write(b"this is not a legal zip file\n")
993 chk = zipfile.is_zipfile(fp)
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000994 self.assertTrue(not chk)
Ezio Melotti35386712009-12-31 13:22:41 +0000995 fp.seek(0, 0)
Antoine Pitroudb5fe662008-12-27 15:50:40 +0000996 chk = zipfile.is_zipfile(fp)
Benjamin Petersonc9c0f202009-06-30 23:06:06 +0000997 self.assertTrue(not chk)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000998
Ezio Melottiafd0d112009-07-15 17:17:17 +0000999 def test_is_zip_valid_file(self):
Ezio Melotti35386712009-12-31 13:22:41 +00001000 """Check that is_zipfile() correctly identifies zip files."""
Antoine Pitroudb5fe662008-12-27 15:50:40 +00001001 # - passing a filename
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001002 with zipfile.ZipFile(TESTFN, mode="w") as zipf:
1003 zipf.writestr("foo.txt", b"O, for a Muse of Fire!")
1004
Guido van Rossumd8faa362007-04-27 19:54:29 +00001005 chk = zipfile.is_zipfile(TESTFN)
Benjamin Petersonc9c0f202009-06-30 23:06:06 +00001006 self.assertTrue(chk)
Antoine Pitroudb5fe662008-12-27 15:50:40 +00001007 # - passing a file object
1008 with open(TESTFN, "rb") as fp:
1009 chk = zipfile.is_zipfile(fp)
Benjamin Petersonc9c0f202009-06-30 23:06:06 +00001010 self.assertTrue(chk)
Ezio Melotti35386712009-12-31 13:22:41 +00001011 fp.seek(0, 0)
Antoine Pitroudb5fe662008-12-27 15:50:40 +00001012 zip_contents = fp.read()
1013 # - passing a file-like object
1014 fp = io.BytesIO()
1015 fp.write(zip_contents)
1016 chk = zipfile.is_zipfile(fp)
Benjamin Petersonc9c0f202009-06-30 23:06:06 +00001017 self.assertTrue(chk)
Ezio Melotti35386712009-12-31 13:22:41 +00001018 fp.seek(0, 0)
Antoine Pitroudb5fe662008-12-27 15:50:40 +00001019 chk = zipfile.is_zipfile(fp)
Benjamin Petersonc9c0f202009-06-30 23:06:06 +00001020 self.assertTrue(chk)
Johannes Gijsbers3caf9c12004-08-19 15:11:50 +00001021
Ezio Melottiafd0d112009-07-15 17:17:17 +00001022 def test_non_existent_file_raises_IOError(self):
Johannes Gijsbers3caf9c12004-08-19 15:11:50 +00001023 # make sure we don't raise an AttributeError when a partially-constructed
1024 # ZipFile instance is finalized; this tests for regression on SF tracker
1025 # bug #403871.
1026
1027 # The bug we're testing for caused an AttributeError to be raised
1028 # when a ZipFile instance was created for a file that did not
1029 # exist; the .fp member was not initialized but was needed by the
1030 # __del__() method. Since the AttributeError is in the __del__(),
1031 # it is ignored, but the user should be sufficiently annoyed by
1032 # the message on the output that regression will be noticed
1033 # quickly.
1034 self.assertRaises(IOError, zipfile.ZipFile, TESTFN)
1035
Amaury Forgeot d'Arcbc347802009-07-28 22:18:57 +00001036 def test_empty_file_raises_BadZipFile(self):
1037 f = open(TESTFN, 'w')
1038 f.close()
Georg Brandl4d540882010-10-28 06:42:33 +00001039 self.assertRaises(zipfile.BadZipFile, zipfile.ZipFile, TESTFN)
Amaury Forgeot d'Arcbc347802009-07-28 22:18:57 +00001040
Ezio Melotti35386712009-12-31 13:22:41 +00001041 with open(TESTFN, 'w') as fp:
1042 fp.write("short file")
Georg Brandl4d540882010-10-28 06:42:33 +00001043 self.assertRaises(zipfile.BadZipFile, zipfile.ZipFile, TESTFN)
Amaury Forgeot d'Arcbc347802009-07-28 22:18:57 +00001044
Ezio Melottiafd0d112009-07-15 17:17:17 +00001045 def test_closed_zip_raises_RuntimeError(self):
Ezio Melotti35386712009-12-31 13:22:41 +00001046 """Verify that testzip() doesn't swallow inappropriate exceptions."""
Guido van Rossumd6ca5462007-05-22 01:29:33 +00001047 data = io.BytesIO()
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001048 with zipfile.ZipFile(data, mode="w") as zipf:
1049 zipf.writestr("foo.txt", "O, for a Muse of Fire!")
Johannes Gijsbers3caf9c12004-08-19 15:11:50 +00001050
Andrew Svetlov737fb892012-12-18 21:14:22 +02001051 # This is correct; calling .read on a closed ZipFile should raise
Johannes Gijsbers3caf9c12004-08-19 15:11:50 +00001052 # a RuntimeError, and so should calling .testzip. An earlier
1053 # version of .testzip would swallow this exception (and any other)
1054 # and report that the first file in the archive was corrupt.
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001055 self.assertRaises(RuntimeError, zipf.read, "foo.txt")
1056 self.assertRaises(RuntimeError, zipf.open, "foo.txt")
Johannes Gijsbers3caf9c12004-08-19 15:11:50 +00001057 self.assertRaises(RuntimeError, zipf.testzip)
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001058 self.assertRaises(RuntimeError, zipf.writestr, "bogus.txt", "bogus")
Brian Curtin8fb9b862010-11-18 02:15:28 +00001059 with open(TESTFN, 'w') as f:
1060 f.write('zipfile test data')
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001061 self.assertRaises(RuntimeError, zipf.write, TESTFN)
1062
Ezio Melottiafd0d112009-07-15 17:17:17 +00001063 def test_bad_constructor_mode(self):
Ezio Melotti35386712009-12-31 13:22:41 +00001064 """Check that bad modes passed to ZipFile constructor are caught."""
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001065 self.assertRaises(RuntimeError, zipfile.ZipFile, TESTFN, "q")
1066
Ezio Melottiafd0d112009-07-15 17:17:17 +00001067 def test_bad_open_mode(self):
Ezio Melotti35386712009-12-31 13:22:41 +00001068 """Check that bad modes passed to ZipFile.open are caught."""
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001069 with zipfile.ZipFile(TESTFN, mode="w") as zipf:
1070 zipf.writestr("foo.txt", "O, for a Muse of Fire!")
1071
1072 with zipfile.ZipFile(TESTFN, mode="r") as zipf:
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001073 # read the data to make sure the file is there
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001074 zipf.read("foo.txt")
1075 self.assertRaises(RuntimeError, zipf.open, "foo.txt", "q")
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001076
Ezio Melottiafd0d112009-07-15 17:17:17 +00001077 def test_read0(self):
Ezio Melotti35386712009-12-31 13:22:41 +00001078 """Check that calling read(0) on a ZipExtFile object returns an empty
1079 string and doesn't advance file pointer."""
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001080 with zipfile.ZipFile(TESTFN, mode="w") as zipf:
1081 zipf.writestr("foo.txt", "O, for a Muse of Fire!")
1082 # read the data to make sure the file is there
Brian Curtin8fb9b862010-11-18 02:15:28 +00001083 with zipf.open("foo.txt") as f:
1084 for i in range(FIXEDTEST_SIZE):
1085 self.assertEqual(f.read(0), b'')
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001086
Brian Curtin8fb9b862010-11-18 02:15:28 +00001087 self.assertEqual(f.read(), b"O, for a Muse of Fire!")
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001088
Ezio Melottiafd0d112009-07-15 17:17:17 +00001089 def test_open_non_existent_item(self):
Ezio Melotti35386712009-12-31 13:22:41 +00001090 """Check that attempting to call open() for an item that doesn't
1091 exist in the archive raises a RuntimeError."""
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001092 with zipfile.ZipFile(TESTFN, mode="w") as zipf:
1093 self.assertRaises(KeyError, zipf.open, "foo.txt", "r")
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001094
Ezio Melottiafd0d112009-07-15 17:17:17 +00001095 def test_bad_compression_mode(self):
Ezio Melotti35386712009-12-31 13:22:41 +00001096 """Check that bad compression methods passed to ZipFile.open are
1097 caught."""
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001098 self.assertRaises(RuntimeError, zipfile.ZipFile, TESTFN, "w", -1)
1099
Martin v. Löwisb3260f02012-05-01 08:38:01 +02001100 def test_unsupported_compression(self):
1101 # data is declared as shrunk, but actually deflated
1102 data = (b'PK\x03\x04.\x00\x00\x00\x01\x00\xe4C\xa1@\x00\x00\x00'
1103 b'\x00\x02\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00x\x03\x00PK\x01'
1104 b'\x02.\x03.\x00\x00\x00\x01\x00\xe4C\xa1@\x00\x00\x00\x00\x02\x00\x00'
1105 b'\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'
1106 b'\x80\x01\x00\x00\x00\x00xPK\x05\x06\x00\x00\x00\x00\x01\x00\x01\x00'
1107 b'/\x00\x00\x00!\x00\x00\x00\x00\x00')
1108 with zipfile.ZipFile(io.BytesIO(data), 'r') as zipf:
1109 self.assertRaises(NotImplementedError, zipf.open, 'x')
1110
Ezio Melottiafd0d112009-07-15 17:17:17 +00001111 def test_null_byte_in_filename(self):
Ezio Melotti35386712009-12-31 13:22:41 +00001112 """Check that a filename containing a null byte is properly
1113 terminated."""
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001114 with zipfile.ZipFile(TESTFN, mode="w") as zipf:
1115 zipf.writestr("foo.txt\x00qqq", b"O, for a Muse of Fire!")
1116 self.assertEqual(zipf.namelist(), ['foo.txt'])
Johannes Gijsbers3caf9c12004-08-19 15:11:50 +00001117
Ezio Melottiafd0d112009-07-15 17:17:17 +00001118 def test_struct_sizes(self):
Ezio Melotti35386712009-12-31 13:22:41 +00001119 """Check that ZIP internal structure sizes are calculated correctly."""
Martin v. Löwisb09b8442008-07-03 14:13:42 +00001120 self.assertEqual(zipfile.sizeEndCentDir, 22)
1121 self.assertEqual(zipfile.sizeCentralDir, 46)
1122 self.assertEqual(zipfile.sizeEndCentDir64, 56)
1123 self.assertEqual(zipfile.sizeEndCentDir64Locator, 20)
1124
Ezio Melottiafd0d112009-07-15 17:17:17 +00001125 def test_comments(self):
Ezio Melotti35386712009-12-31 13:22:41 +00001126 """Check that comments on the archive are handled properly."""
Martin v. Löwisb09b8442008-07-03 14:13:42 +00001127
1128 # check default comment is empty
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001129 with zipfile.ZipFile(TESTFN, mode="w") as zipf:
1130 self.assertEqual(zipf.comment, b'')
1131 zipf.writestr("foo.txt", "O, for a Muse of Fire!")
1132
1133 with zipfile.ZipFile(TESTFN, mode="r") as zipfr:
1134 self.assertEqual(zipfr.comment, b'')
Martin v. Löwisb09b8442008-07-03 14:13:42 +00001135
1136 # check a simple short comment
1137 comment = b'Bravely taking to his feet, he beat a very brave retreat.'
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001138 with zipfile.ZipFile(TESTFN, mode="w") as zipf:
1139 zipf.comment = comment
1140 zipf.writestr("foo.txt", "O, for a Muse of Fire!")
1141 with zipfile.ZipFile(TESTFN, mode="r") as zipfr:
1142 self.assertEqual(zipf.comment, comment)
Martin v. Löwisb09b8442008-07-03 14:13:42 +00001143
1144 # check a comment of max length
1145 comment2 = ''.join(['%d' % (i**3 % 10) for i in range((1 << 16)-1)])
1146 comment2 = comment2.encode("ascii")
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001147 with zipfile.ZipFile(TESTFN, mode="w") as zipf:
1148 zipf.comment = comment2
1149 zipf.writestr("foo.txt", "O, for a Muse of Fire!")
1150
1151 with zipfile.ZipFile(TESTFN, mode="r") as zipfr:
1152 self.assertEqual(zipfr.comment, comment2)
Martin v. Löwisb09b8442008-07-03 14:13:42 +00001153
1154 # check a comment that is too long is truncated
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001155 with zipfile.ZipFile(TESTFN, mode="w") as zipf:
1156 zipf.comment = comment2 + b'oops'
1157 zipf.writestr("foo.txt", "O, for a Muse of Fire!")
1158 with zipfile.ZipFile(TESTFN, mode="r") as zipfr:
1159 self.assertEqual(zipfr.comment, comment2)
Martin v. Löwisb09b8442008-07-03 14:13:42 +00001160
Antoine Pitrouc3991852012-06-30 17:31:37 +02001161 # check that comments are correctly modified in append mode
1162 with zipfile.ZipFile(TESTFN,mode="w") as zipf:
1163 zipf.comment = b"original comment"
1164 zipf.writestr("foo.txt", "O, for a Muse of Fire!")
1165 with zipfile.ZipFile(TESTFN,mode="a") as zipf:
1166 zipf.comment = b"an updated comment"
1167 with zipfile.ZipFile(TESTFN,mode="r") as zipf:
1168 self.assertEqual(zipf.comment, b"an updated comment")
1169
1170 # check that comments are correctly shortened in append mode
1171 with zipfile.ZipFile(TESTFN,mode="w") as zipf:
1172 zipf.comment = b"original comment that's longer"
1173 zipf.writestr("foo.txt", "O, for a Muse of Fire!")
1174 with zipfile.ZipFile(TESTFN,mode="a") as zipf:
1175 zipf.comment = b"shorter comment"
1176 with zipfile.ZipFile(TESTFN,mode="r") as zipf:
1177 self.assertEqual(zipf.comment, b"shorter comment")
1178
R David Murrayf50b38a2012-04-12 18:44:58 -04001179 def test_unicode_comment(self):
1180 with zipfile.ZipFile(TESTFN, "w", zipfile.ZIP_STORED) as zipf:
1181 zipf.writestr("foo.txt", "O, for a Muse of Fire!")
1182 with self.assertRaises(TypeError):
1183 zipf.comment = "this is an error"
1184
1185 def test_change_comment_in_empty_archive(self):
1186 with zipfile.ZipFile(TESTFN, "a", zipfile.ZIP_STORED) as zipf:
1187 self.assertFalse(zipf.filelist)
1188 zipf.comment = b"this is a comment"
1189 with zipfile.ZipFile(TESTFN, "r") as zipf:
1190 self.assertEqual(zipf.comment, b"this is a comment")
1191
1192 def test_change_comment_in_nonempty_archive(self):
1193 with zipfile.ZipFile(TESTFN, "w", zipfile.ZIP_STORED) as zipf:
1194 zipf.writestr("foo.txt", "O, for a Muse of Fire!")
1195 with zipfile.ZipFile(TESTFN, "a", zipfile.ZIP_STORED) as zipf:
1196 self.assertTrue(zipf.filelist)
1197 zipf.comment = b"this is a comment"
1198 with zipfile.ZipFile(TESTFN, "r") as zipf:
1199 self.assertEqual(zipf.comment, b"this is a comment")
1200
Antoine Pitrou7c8bcb62010-08-12 15:11:50 +00001201 def check_testzip_with_bad_crc(self, compression):
1202 """Tests that files with bad CRCs return their name from testzip."""
1203 zipdata = self.zips_with_bad_crc[compression]
1204
1205 with zipfile.ZipFile(io.BytesIO(zipdata), mode="r") as zipf:
1206 # testzip returns the name of the first corrupt file, or None
1207 self.assertEqual('afile', zipf.testzip())
1208
1209 def test_testzip_with_bad_crc_stored(self):
1210 self.check_testzip_with_bad_crc(zipfile.ZIP_STORED)
1211
Ezio Melotti975077a2011-05-19 22:03:22 +03001212 @requires_zlib
Antoine Pitrou7c8bcb62010-08-12 15:11:50 +00001213 def test_testzip_with_bad_crc_deflated(self):
1214 self.check_testzip_with_bad_crc(zipfile.ZIP_DEFLATED)
1215
Martin v. Löwisf6b16a42012-05-01 07:58:44 +02001216 @requires_bz2
1217 def test_testzip_with_bad_crc_bzip2(self):
1218 self.check_testzip_with_bad_crc(zipfile.ZIP_BZIP2)
1219
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +02001220 @requires_lzma
1221 def test_testzip_with_bad_crc_lzma(self):
1222 self.check_testzip_with_bad_crc(zipfile.ZIP_LZMA)
1223
Antoine Pitrou7c8bcb62010-08-12 15:11:50 +00001224 def check_read_with_bad_crc(self, compression):
Georg Brandl4d540882010-10-28 06:42:33 +00001225 """Tests that files with bad CRCs raise a BadZipFile exception when read."""
Antoine Pitrou7c8bcb62010-08-12 15:11:50 +00001226 zipdata = self.zips_with_bad_crc[compression]
1227
1228 # Using ZipFile.read()
1229 with zipfile.ZipFile(io.BytesIO(zipdata), mode="r") as zipf:
Georg Brandl4d540882010-10-28 06:42:33 +00001230 self.assertRaises(zipfile.BadZipFile, zipf.read, 'afile')
Antoine Pitrou7c8bcb62010-08-12 15:11:50 +00001231
1232 # Using ZipExtFile.read()
1233 with zipfile.ZipFile(io.BytesIO(zipdata), mode="r") as zipf:
1234 with zipf.open('afile', 'r') as corrupt_file:
Georg Brandl4d540882010-10-28 06:42:33 +00001235 self.assertRaises(zipfile.BadZipFile, corrupt_file.read)
Antoine Pitrou7c8bcb62010-08-12 15:11:50 +00001236
1237 # Same with small reads (in order to exercise the buffering logic)
1238 with zipfile.ZipFile(io.BytesIO(zipdata), mode="r") as zipf:
1239 with zipf.open('afile', 'r') as corrupt_file:
1240 corrupt_file.MIN_READ_SIZE = 2
Georg Brandl4d540882010-10-28 06:42:33 +00001241 with self.assertRaises(zipfile.BadZipFile):
Antoine Pitrou7c8bcb62010-08-12 15:11:50 +00001242 while corrupt_file.read(2):
1243 pass
1244
1245 def test_read_with_bad_crc_stored(self):
1246 self.check_read_with_bad_crc(zipfile.ZIP_STORED)
1247
Ezio Melotti975077a2011-05-19 22:03:22 +03001248 @requires_zlib
Antoine Pitrou7c8bcb62010-08-12 15:11:50 +00001249 def test_read_with_bad_crc_deflated(self):
1250 self.check_read_with_bad_crc(zipfile.ZIP_DEFLATED)
1251
Martin v. Löwisf6b16a42012-05-01 07:58:44 +02001252 @requires_bz2
1253 def test_read_with_bad_crc_bzip2(self):
1254 self.check_read_with_bad_crc(zipfile.ZIP_BZIP2)
1255
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +02001256 @requires_lzma
1257 def test_read_with_bad_crc_lzma(self):
1258 self.check_read_with_bad_crc(zipfile.ZIP_LZMA)
1259
Antoine Pitrou6464d5f2010-09-12 14:51:20 +00001260 def check_read_return_size(self, compression):
1261 # Issue #9837: ZipExtFile.read() shouldn't return more bytes
1262 # than requested.
1263 for test_size in (1, 4095, 4096, 4097, 16384):
1264 file_size = test_size + 1
1265 junk = b''.join(struct.pack('B', randint(0, 255))
1266 for x in range(file_size))
1267 with zipfile.ZipFile(io.BytesIO(), "w", compression) as zipf:
1268 zipf.writestr('foo', junk)
1269 with zipf.open('foo', 'r') as fp:
1270 buf = fp.read(test_size)
1271 self.assertEqual(len(buf), test_size)
1272
1273 def test_read_return_size_stored(self):
1274 self.check_read_return_size(zipfile.ZIP_STORED)
1275
Ezio Melotti975077a2011-05-19 22:03:22 +03001276 @requires_zlib
Antoine Pitrou6464d5f2010-09-12 14:51:20 +00001277 def test_read_return_size_deflated(self):
1278 self.check_read_return_size(zipfile.ZIP_DEFLATED)
1279
Martin v. Löwisf6b16a42012-05-01 07:58:44 +02001280 @requires_bz2
1281 def test_read_return_size_bzip2(self):
1282 self.check_read_return_size(zipfile.ZIP_BZIP2)
1283
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +02001284 @requires_lzma
1285 def test_read_return_size_lzma(self):
1286 self.check_read_return_size(zipfile.ZIP_LZMA)
1287
Georg Brandl268e4d42010-10-14 06:59:45 +00001288 def test_empty_zipfile(self):
1289 # Check that creating a file in 'w' or 'a' mode and closing without
1290 # adding any files to the archives creates a valid empty ZIP file
1291 zipf = zipfile.ZipFile(TESTFN, mode="w")
1292 zipf.close()
1293 try:
1294 zipf = zipfile.ZipFile(TESTFN, mode="r")
1295 except zipfile.BadZipFile:
1296 self.fail("Unable to create empty ZIP file in 'w' mode")
1297
1298 zipf = zipfile.ZipFile(TESTFN, mode="a")
1299 zipf.close()
1300 try:
1301 zipf = zipfile.ZipFile(TESTFN, mode="r")
1302 except:
1303 self.fail("Unable to create empty ZIP file in 'a' mode")
1304
1305 def test_open_empty_file(self):
1306 # Issue 1710703: Check that opening a file with less than 22 bytes
Georg Brandl4d540882010-10-28 06:42:33 +00001307 # raises a BadZipFile exception (rather than the previously unhelpful
Georg Brandl268e4d42010-10-14 06:59:45 +00001308 # IOError)
1309 f = open(TESTFN, 'w')
1310 f.close()
Georg Brandl4d540882010-10-28 06:42:33 +00001311 self.assertRaises(zipfile.BadZipFile, zipfile.ZipFile, TESTFN, 'r')
Georg Brandl268e4d42010-10-14 06:59:45 +00001312
Senthil Kumaran29fa9d42011-10-20 01:46:00 +08001313 def test_create_zipinfo_before_1980(self):
1314 self.assertRaises(ValueError,
1315 zipfile.ZipInfo, 'seventies', (1979, 1, 1, 0, 0, 0))
1316
Guido van Rossumd8faa362007-04-27 19:54:29 +00001317 def tearDown(self):
Ezio Melotti76430242009-07-11 18:28:48 +00001318 unlink(TESTFN)
1319 unlink(TESTFN2)
1320
Thomas Wouterscf297e42007-02-23 15:07:44 +00001321
1322class DecryptionTests(unittest.TestCase):
Ezio Melotti35386712009-12-31 13:22:41 +00001323 """Check that ZIP decryption works. Since the library does not
1324 support encryption at the moment, we use a pre-generated encrypted
1325 ZIP file."""
Thomas Wouterscf297e42007-02-23 15:07:44 +00001326
1327 data = (
Guido van Rossumd6ca5462007-05-22 01:29:33 +00001328 b'PK\x03\x04\x14\x00\x01\x00\x00\x00n\x92i.#y\xef?&\x00\x00\x00\x1a\x00'
1329 b'\x00\x00\x08\x00\x00\x00test.txt\xfa\x10\xa0gly|\xfa-\xc5\xc0=\xf9y'
1330 b'\x18\xe0\xa8r\xb3Z}Lg\xbc\xae\xf9|\x9b\x19\xe4\x8b\xba\xbb)\x8c\xb0\xdbl'
1331 b'PK\x01\x02\x14\x00\x14\x00\x01\x00\x00\x00n\x92i.#y\xef?&\x00\x00\x00'
1332 b'\x1a\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x01\x00 \x00\xb6\x81'
1333 b'\x00\x00\x00\x00test.txtPK\x05\x06\x00\x00\x00\x00\x01\x00\x01\x006\x00'
1334 b'\x00\x00L\x00\x00\x00\x00\x00' )
Christian Heimesfdab48e2008-01-20 09:06:41 +00001335 data2 = (
1336 b'PK\x03\x04\x14\x00\t\x00\x08\x00\xcf}38xu\xaa\xb2\x14\x00\x00\x00\x00\x02'
1337 b'\x00\x00\x04\x00\x15\x00zeroUT\t\x00\x03\xd6\x8b\x92G\xda\x8b\x92GUx\x04'
1338 b'\x00\xe8\x03\xe8\x03\xc7<M\xb5a\xceX\xa3Y&\x8b{oE\xd7\x9d\x8c\x98\x02\xc0'
1339 b'PK\x07\x08xu\xaa\xb2\x14\x00\x00\x00\x00\x02\x00\x00PK\x01\x02\x17\x03'
1340 b'\x14\x00\t\x00\x08\x00\xcf}38xu\xaa\xb2\x14\x00\x00\x00\x00\x02\x00\x00'
1341 b'\x04\x00\r\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa4\x81\x00\x00\x00\x00ze'
1342 b'roUT\x05\x00\x03\xd6\x8b\x92GUx\x00\x00PK\x05\x06\x00\x00\x00\x00\x01'
1343 b'\x00\x01\x00?\x00\x00\x00[\x00\x00\x00\x00\x00' )
Thomas Wouterscf297e42007-02-23 15:07:44 +00001344
Guido van Rossumd6ca5462007-05-22 01:29:33 +00001345 plain = b'zipfile.py encryption test'
Christian Heimesfdab48e2008-01-20 09:06:41 +00001346 plain2 = b'\x00'*512
Thomas Wouterscf297e42007-02-23 15:07:44 +00001347
1348 def setUp(self):
Ezio Melotti35386712009-12-31 13:22:41 +00001349 with open(TESTFN, "wb") as fp:
1350 fp.write(self.data)
Thomas Wouterscf297e42007-02-23 15:07:44 +00001351 self.zip = zipfile.ZipFile(TESTFN, "r")
Ezio Melotti35386712009-12-31 13:22:41 +00001352 with open(TESTFN2, "wb") as fp:
1353 fp.write(self.data2)
Christian Heimesfdab48e2008-01-20 09:06:41 +00001354 self.zip2 = zipfile.ZipFile(TESTFN2, "r")
Thomas Wouterscf297e42007-02-23 15:07:44 +00001355
1356 def tearDown(self):
1357 self.zip.close()
1358 os.unlink(TESTFN)
Christian Heimesfdab48e2008-01-20 09:06:41 +00001359 self.zip2.close()
1360 os.unlink(TESTFN2)
Thomas Wouterscf297e42007-02-23 15:07:44 +00001361
Ezio Melottiafd0d112009-07-15 17:17:17 +00001362 def test_no_password(self):
Thomas Wouterscf297e42007-02-23 15:07:44 +00001363 # Reading the encrypted file without password
1364 # must generate a RunTime exception
1365 self.assertRaises(RuntimeError, self.zip.read, "test.txt")
Christian Heimesfdab48e2008-01-20 09:06:41 +00001366 self.assertRaises(RuntimeError, self.zip2.read, "zero")
Thomas Wouterscf297e42007-02-23 15:07:44 +00001367
Ezio Melottiafd0d112009-07-15 17:17:17 +00001368 def test_bad_password(self):
Guido van Rossumd6ca5462007-05-22 01:29:33 +00001369 self.zip.setpassword(b"perl")
Thomas Wouterscf297e42007-02-23 15:07:44 +00001370 self.assertRaises(RuntimeError, self.zip.read, "test.txt")
Christian Heimesfdab48e2008-01-20 09:06:41 +00001371 self.zip2.setpassword(b"perl")
1372 self.assertRaises(RuntimeError, self.zip2.read, "zero")
Guido van Rossumd8faa362007-04-27 19:54:29 +00001373
Ezio Melotti975077a2011-05-19 22:03:22 +03001374 @requires_zlib
Ezio Melottiafd0d112009-07-15 17:17:17 +00001375 def test_good_password(self):
Guido van Rossumd6ca5462007-05-22 01:29:33 +00001376 self.zip.setpassword(b"python")
Ezio Melotti35386712009-12-31 13:22:41 +00001377 self.assertEqual(self.zip.read("test.txt"), self.plain)
Christian Heimesfdab48e2008-01-20 09:06:41 +00001378 self.zip2.setpassword(b"12345")
Ezio Melotti35386712009-12-31 13:22:41 +00001379 self.assertEqual(self.zip2.read("zero"), self.plain2)
Thomas Wouterscf297e42007-02-23 15:07:44 +00001380
R. David Murray8d855d82010-12-21 21:53:37 +00001381 def test_unicode_password(self):
1382 self.assertRaises(TypeError, self.zip.setpassword, "unicode")
1383 self.assertRaises(TypeError, self.zip.read, "test.txt", "python")
1384 self.assertRaises(TypeError, self.zip.open, "test.txt", pwd="python")
1385 self.assertRaises(TypeError, self.zip.extract, "test.txt", pwd="python")
1386
Guido van Rossumd8faa362007-04-27 19:54:29 +00001387
1388class TestsWithRandomBinaryFiles(unittest.TestCase):
1389 def setUp(self):
1390 datacount = randint(16, 64)*1024 + randint(1, 1024)
Guido van Rossumd6ca5462007-05-22 01:29:33 +00001391 self.data = b''.join(struct.pack('<f', random()*randint(-1000, 1000))
1392 for i in range(datacount))
Guido van Rossumd8faa362007-04-27 19:54:29 +00001393
1394 # Make a source file with some lines
Ezio Melotti35386712009-12-31 13:22:41 +00001395 with open(TESTFN, "wb") as fp:
1396 fp.write(self.data)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001397
1398 def tearDown(self):
Ezio Melotti76430242009-07-11 18:28:48 +00001399 unlink(TESTFN)
1400 unlink(TESTFN2)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001401
Ezio Melottiafd0d112009-07-15 17:17:17 +00001402 def make_test_archive(self, f, compression):
Guido van Rossumd8faa362007-04-27 19:54:29 +00001403 # Create the ZIP archive
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001404 with zipfile.ZipFile(f, "w", compression) as zipfp:
1405 zipfp.write(TESTFN, "another.name")
1406 zipfp.write(TESTFN, TESTFN)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001407
Ezio Melottiafd0d112009-07-15 17:17:17 +00001408 def zip_test(self, f, compression):
1409 self.make_test_archive(f, compression)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001410
1411 # Read the ZIP archive
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001412 with zipfile.ZipFile(f, "r", compression) as zipfp:
1413 testdata = zipfp.read(TESTFN)
1414 self.assertEqual(len(testdata), len(self.data))
1415 self.assertEqual(testdata, self.data)
1416 self.assertEqual(zipfp.read("another.name"), self.data)
Benjamin Petersond285bdb2010-10-31 17:57:22 +00001417 if not isinstance(f, str):
1418 f.close()
Guido van Rossumd8faa362007-04-27 19:54:29 +00001419
Ezio Melottiafd0d112009-07-15 17:17:17 +00001420 def test_stored(self):
Guido van Rossumd6ca5462007-05-22 01:29:33 +00001421 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
Ezio Melottiafd0d112009-07-15 17:17:17 +00001422 self.zip_test(f, zipfile.ZIP_STORED)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001423
Ezio Melotti975077a2011-05-19 22:03:22 +03001424 @requires_zlib
Antoine Pitrou7c8bcb62010-08-12 15:11:50 +00001425 def test_deflated(self):
1426 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
1427 self.zip_test(f, zipfile.ZIP_DEFLATED)
1428
Martin v. Löwisf6b16a42012-05-01 07:58:44 +02001429 @requires_bz2
1430 def test_bzip2(self):
1431 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
1432 self.zip_test(f, zipfile.ZIP_BZIP2)
1433
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +02001434 @requires_lzma
1435 def test_lzma(self):
1436 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
1437 self.zip_test(f, zipfile.ZIP_LZMA)
1438
Ezio Melottiafd0d112009-07-15 17:17:17 +00001439 def zip_open_test(self, f, compression):
1440 self.make_test_archive(f, compression)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001441
1442 # Read the ZIP archive
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001443 with zipfile.ZipFile(f, "r", compression) as zipfp:
1444 zipdata1 = []
Brian Curtin8fb9b862010-11-18 02:15:28 +00001445 with zipfp.open(TESTFN) as zipopen1:
1446 while True:
1447 read_data = zipopen1.read(256)
1448 if not read_data:
1449 break
1450 zipdata1.append(read_data)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001451
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001452 zipdata2 = []
Brian Curtin8fb9b862010-11-18 02:15:28 +00001453 with zipfp.open("another.name") as zipopen2:
1454 while True:
1455 read_data = zipopen2.read(256)
1456 if not read_data:
1457 break
1458 zipdata2.append(read_data)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001459
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001460 testdata1 = b''.join(zipdata1)
1461 self.assertEqual(len(testdata1), len(self.data))
1462 self.assertEqual(testdata1, self.data)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001463
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001464 testdata2 = b''.join(zipdata2)
Ezio Melotti35386712009-12-31 13:22:41 +00001465 self.assertEqual(len(testdata2), len(self.data))
1466 self.assertEqual(testdata2, self.data)
Benjamin Petersond285bdb2010-10-31 17:57:22 +00001467 if not isinstance(f, str):
1468 f.close()
Guido van Rossumd8faa362007-04-27 19:54:29 +00001469
Ezio Melottiafd0d112009-07-15 17:17:17 +00001470 def test_open_stored(self):
Guido van Rossumd6ca5462007-05-22 01:29:33 +00001471 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
Ezio Melottiafd0d112009-07-15 17:17:17 +00001472 self.zip_open_test(f, zipfile.ZIP_STORED)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001473
Ezio Melotti975077a2011-05-19 22:03:22 +03001474 @requires_zlib
Antoine Pitrou7c8bcb62010-08-12 15:11:50 +00001475 def test_open_deflated(self):
1476 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
1477 self.zip_open_test(f, zipfile.ZIP_DEFLATED)
1478
Martin v. Löwisf6b16a42012-05-01 07:58:44 +02001479 @requires_bz2
1480 def test_open_bzip2(self):
1481 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
1482 self.zip_open_test(f, zipfile.ZIP_BZIP2)
1483
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +02001484 @requires_lzma
1485 def test_open_lzma(self):
1486 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
1487 self.zip_open_test(f, zipfile.ZIP_LZMA)
1488
Ezio Melottiafd0d112009-07-15 17:17:17 +00001489 def zip_random_open_test(self, f, compression):
1490 self.make_test_archive(f, compression)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001491
1492 # Read the ZIP archive
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001493 with zipfile.ZipFile(f, "r", compression) as zipfp:
1494 zipdata1 = []
Brian Curtin8fb9b862010-11-18 02:15:28 +00001495 with zipfp.open(TESTFN) as zipopen1:
1496 while True:
1497 read_data = zipopen1.read(randint(1, 1024))
1498 if not read_data:
1499 break
1500 zipdata1.append(read_data)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001501
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001502 testdata = b''.join(zipdata1)
1503 self.assertEqual(len(testdata), len(self.data))
1504 self.assertEqual(testdata, self.data)
Benjamin Petersond285bdb2010-10-31 17:57:22 +00001505 if not isinstance(f, str):
1506 f.close()
Guido van Rossumd8faa362007-04-27 19:54:29 +00001507
Ezio Melottiafd0d112009-07-15 17:17:17 +00001508 def test_random_open_stored(self):
Guido van Rossumd6ca5462007-05-22 01:29:33 +00001509 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
Ezio Melottiafd0d112009-07-15 17:17:17 +00001510 self.zip_random_open_test(f, zipfile.ZIP_STORED)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001511
Ezio Melotti975077a2011-05-19 22:03:22 +03001512 @requires_zlib
Antoine Pitrou7c8bcb62010-08-12 15:11:50 +00001513 def test_random_open_deflated(self):
1514 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
1515 self.zip_random_open_test(f, zipfile.ZIP_DEFLATED)
1516
Martin v. Löwisf6b16a42012-05-01 07:58:44 +02001517 @requires_bz2
1518 def test_random_open_bzip2(self):
1519 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
1520 self.zip_random_open_test(f, zipfile.ZIP_BZIP2)
1521
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +02001522 @requires_lzma
1523 def test_random_open_lzma(self):
1524 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
1525 self.zip_random_open_test(f, zipfile.ZIP_LZMA)
1526
Ezio Melotti76430242009-07-11 18:28:48 +00001527
Ezio Melotti975077a2011-05-19 22:03:22 +03001528@requires_zlib
Guido van Rossumd8faa362007-04-27 19:54:29 +00001529class TestsWithMultipleOpens(unittest.TestCase):
1530 def setUp(self):
1531 # Create the ZIP archive
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001532 with zipfile.ZipFile(TESTFN2, "w", zipfile.ZIP_DEFLATED) as zipfp:
1533 zipfp.writestr('ones', '1'*FIXEDTEST_SIZE)
1534 zipfp.writestr('twos', '2'*FIXEDTEST_SIZE)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001535
Ezio Melottiafd0d112009-07-15 17:17:17 +00001536 def test_same_file(self):
Guido van Rossumd8faa362007-04-27 19:54:29 +00001537 # Verify that (when the ZipFile is in control of creating file objects)
1538 # multiple open() calls can be made without interfering with each other.
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001539 with zipfile.ZipFile(TESTFN2, mode="r") as zipf:
Brian Curtin8fb9b862010-11-18 02:15:28 +00001540 with zipf.open('ones') as zopen1, zipf.open('ones') as zopen2:
1541 data1 = zopen1.read(500)
1542 data2 = zopen2.read(500)
1543 data1 += zopen1.read(500)
1544 data2 += zopen2.read(500)
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001545 self.assertEqual(data1, data2)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001546
Ezio Melottiafd0d112009-07-15 17:17:17 +00001547 def test_different_file(self):
Guido van Rossumd8faa362007-04-27 19:54:29 +00001548 # Verify that (when the ZipFile is in control of creating file objects)
1549 # multiple open() calls can be made without interfering with each other.
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001550 with zipfile.ZipFile(TESTFN2, mode="r") as zipf:
Brian Curtin8fb9b862010-11-18 02:15:28 +00001551 with zipf.open('ones') as zopen1, zipf.open('twos') as zopen2:
1552 data1 = zopen1.read(500)
1553 data2 = zopen2.read(500)
1554 data1 += zopen1.read(500)
1555 data2 += zopen2.read(500)
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001556 self.assertEqual(data1, b'1'*FIXEDTEST_SIZE)
1557 self.assertEqual(data2, b'2'*FIXEDTEST_SIZE)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001558
Ezio Melottiafd0d112009-07-15 17:17:17 +00001559 def test_interleaved(self):
Guido van Rossumd8faa362007-04-27 19:54:29 +00001560 # Verify that (when the ZipFile is in control of creating file objects)
1561 # multiple open() calls can be made without interfering with each other.
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001562 with zipfile.ZipFile(TESTFN2, mode="r") as zipf:
Brian Curtin8fb9b862010-11-18 02:15:28 +00001563 with zipf.open('ones') as zopen1, zipf.open('twos') as zopen2:
1564 data1 = zopen1.read(500)
1565 data2 = zopen2.read(500)
1566 data1 += zopen1.read(500)
1567 data2 += zopen2.read(500)
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001568 self.assertEqual(data1, b'1'*FIXEDTEST_SIZE)
1569 self.assertEqual(data2, b'2'*FIXEDTEST_SIZE)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001570
1571 def tearDown(self):
Ezio Melotti76430242009-07-11 18:28:48 +00001572 unlink(TESTFN2)
1573
Guido van Rossumd8faa362007-04-27 19:54:29 +00001574
Martin v. Löwis59e47792009-01-24 14:10:07 +00001575class TestWithDirectory(unittest.TestCase):
1576 def setUp(self):
1577 os.mkdir(TESTFN2)
1578
Ezio Melottiafd0d112009-07-15 17:17:17 +00001579 def test_extract_dir(self):
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001580 with zipfile.ZipFile(findfile("zipdir.zip")) as zipf:
1581 zipf.extractall(TESTFN2)
Martin v. Löwis59e47792009-01-24 14:10:07 +00001582 self.assertTrue(os.path.isdir(os.path.join(TESTFN2, "a")))
1583 self.assertTrue(os.path.isdir(os.path.join(TESTFN2, "a", "b")))
1584 self.assertTrue(os.path.exists(os.path.join(TESTFN2, "a", "b", "c")))
1585
Ezio Melottiafd0d112009-07-15 17:17:17 +00001586 def test_bug_6050(self):
Martin v. Löwis70ccd162009-05-24 19:47:22 +00001587 # Extraction should succeed if directories already exist
1588 os.mkdir(os.path.join(TESTFN2, "a"))
Ezio Melottiafd0d112009-07-15 17:17:17 +00001589 self.test_extract_dir()
Martin v. Löwis70ccd162009-05-24 19:47:22 +00001590
Ezio Melottiafd0d112009-07-15 17:17:17 +00001591 def test_store_dir(self):
Martin v. Löwis59e47792009-01-24 14:10:07 +00001592 os.mkdir(os.path.join(TESTFN2, "x"))
1593 zipf = zipfile.ZipFile(TESTFN, "w")
1594 zipf.write(os.path.join(TESTFN2, "x"), "x")
1595 self.assertTrue(zipf.filelist[0].filename.endswith("x/"))
1596
1597 def tearDown(self):
1598 shutil.rmtree(TESTFN2)
1599 if os.path.exists(TESTFN):
Ezio Melotti76430242009-07-11 18:28:48 +00001600 unlink(TESTFN)
Martin v. Löwis59e47792009-01-24 14:10:07 +00001601
Guido van Rossumd8faa362007-04-27 19:54:29 +00001602
1603class UniversalNewlineTests(unittest.TestCase):
1604 def setUp(self):
Guido van Rossum9c627722007-08-27 18:31:48 +00001605 self.line_gen = [bytes("Test of zipfile line %d." % i, "ascii")
Guido van Rossumd6ca5462007-05-22 01:29:33 +00001606 for i in range(FIXEDTEST_SIZE)]
Guido van Rossumd8faa362007-04-27 19:54:29 +00001607 self.seps = ('\r', '\r\n', '\n')
1608 self.arcdata, self.arcfiles = {}, {}
1609 for n, s in enumerate(self.seps):
Guido van Rossumd6ca5462007-05-22 01:29:33 +00001610 b = s.encode("ascii")
1611 self.arcdata[s] = b.join(self.line_gen) + b
Guido van Rossumd8faa362007-04-27 19:54:29 +00001612 self.arcfiles[s] = '%s-%d' % (TESTFN, n)
Guido van Rossumd6ca5462007-05-22 01:29:33 +00001613 f = open(self.arcfiles[s], "wb")
1614 try:
1615 f.write(self.arcdata[s])
1616 finally:
1617 f.close()
Guido van Rossumd8faa362007-04-27 19:54:29 +00001618
Ezio Melottiafd0d112009-07-15 17:17:17 +00001619 def make_test_archive(self, f, compression):
Guido van Rossumd8faa362007-04-27 19:54:29 +00001620 # Create the ZIP archive
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001621 with zipfile.ZipFile(f, "w", compression) as zipfp:
1622 for fn in self.arcfiles.values():
1623 zipfp.write(fn, fn)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001624
Ezio Melottiafd0d112009-07-15 17:17:17 +00001625 def read_test(self, f, compression):
1626 self.make_test_archive(f, compression)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001627
1628 # Read the ZIP archive
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001629 with zipfile.ZipFile(f, "r") as zipfp:
1630 for sep, fn in self.arcfiles.items():
Benjamin Petersond285bdb2010-10-31 17:57:22 +00001631 with zipfp.open(fn, "rU") as fp:
1632 zipdata = fp.read()
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001633 self.assertEqual(self.arcdata[sep], zipdata)
Benjamin Petersond285bdb2010-10-31 17:57:22 +00001634 if not isinstance(f, str):
1635 f.close()
Guido van Rossumd8faa362007-04-27 19:54:29 +00001636
Antoine Pitroua32f9a22010-01-27 21:18:57 +00001637 def readline_read_test(self, f, compression):
1638 self.make_test_archive(f, compression)
1639
1640 # Read the ZIP archive
Brian Curtin8fb9b862010-11-18 02:15:28 +00001641 with zipfile.ZipFile(f, "r") as zipfp:
1642 for sep, fn in self.arcfiles.items():
1643 with zipfp.open(fn, "rU") as zipopen:
1644 data = b''
1645 while True:
1646 read = zipopen.readline()
1647 if not read:
1648 break
1649 data += read
Antoine Pitroua32f9a22010-01-27 21:18:57 +00001650
Brian Curtin8fb9b862010-11-18 02:15:28 +00001651 read = zipopen.read(5)
1652 if not read:
1653 break
1654 data += read
Antoine Pitroua32f9a22010-01-27 21:18:57 +00001655
1656 self.assertEqual(data, self.arcdata['\n'])
1657
Benjamin Petersond285bdb2010-10-31 17:57:22 +00001658 if not isinstance(f, str):
1659 f.close()
Antoine Pitroua32f9a22010-01-27 21:18:57 +00001660
Ezio Melottiafd0d112009-07-15 17:17:17 +00001661 def readline_test(self, f, compression):
1662 self.make_test_archive(f, compression)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001663
1664 # Read the ZIP archive
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001665 with zipfile.ZipFile(f, "r") as zipfp:
1666 for sep, fn in self.arcfiles.items():
Benjamin Petersond285bdb2010-10-31 17:57:22 +00001667 with zipfp.open(fn, "rU") as zipopen:
1668 for line in self.line_gen:
1669 linedata = zipopen.readline()
1670 self.assertEqual(linedata, line + b'\n')
1671 if not isinstance(f, str):
1672 f.close()
Guido van Rossumd8faa362007-04-27 19:54:29 +00001673
Ezio Melottiafd0d112009-07-15 17:17:17 +00001674 def readlines_test(self, f, compression):
1675 self.make_test_archive(f, compression)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001676
1677 # Read the ZIP archive
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001678 with zipfile.ZipFile(f, "r") as zipfp:
1679 for sep, fn in self.arcfiles.items():
Benjamin Petersond285bdb2010-10-31 17:57:22 +00001680 with zipfp.open(fn, "rU") as fp:
1681 ziplines = fp.readlines()
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001682 for line, zipline in zip(self.line_gen, ziplines):
1683 self.assertEqual(zipline, line + b'\n')
Benjamin Petersond285bdb2010-10-31 17:57:22 +00001684 if not isinstance(f, str):
1685 f.close()
Guido van Rossumd8faa362007-04-27 19:54:29 +00001686
Ezio Melottiafd0d112009-07-15 17:17:17 +00001687 def iterlines_test(self, f, compression):
1688 self.make_test_archive(f, compression)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001689
1690 # Read the ZIP archive
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001691 with zipfile.ZipFile(f, "r") as zipfp:
1692 for sep, fn in self.arcfiles.items():
Benjamin Petersond285bdb2010-10-31 17:57:22 +00001693 with zipfp.open(fn, "rU") as fp:
1694 for line, zipline in zip(self.line_gen, fp):
1695 self.assertEqual(zipline, line + b'\n')
1696 if not isinstance(f, str):
1697 f.close()
Guido van Rossumd8faa362007-04-27 19:54:29 +00001698
Ezio Melottiafd0d112009-07-15 17:17:17 +00001699 def test_read_stored(self):
Guido van Rossumd6ca5462007-05-22 01:29:33 +00001700 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
Ezio Melottiafd0d112009-07-15 17:17:17 +00001701 self.read_test(f, zipfile.ZIP_STORED)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001702
Antoine Pitroua32f9a22010-01-27 21:18:57 +00001703 def test_readline_read_stored(self):
1704 # Issue #7610: calls to readline() interleaved with calls to read().
1705 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
1706 self.readline_read_test(f, zipfile.ZIP_STORED)
1707
Ezio Melottiafd0d112009-07-15 17:17:17 +00001708 def test_readline_stored(self):
Guido van Rossumd6ca5462007-05-22 01:29:33 +00001709 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
Ezio Melottiafd0d112009-07-15 17:17:17 +00001710 self.readline_test(f, zipfile.ZIP_STORED)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001711
Ezio Melottiafd0d112009-07-15 17:17:17 +00001712 def test_readlines_stored(self):
Guido van Rossumd6ca5462007-05-22 01:29:33 +00001713 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
Ezio Melottiafd0d112009-07-15 17:17:17 +00001714 self.readlines_test(f, zipfile.ZIP_STORED)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001715
Ezio Melottiafd0d112009-07-15 17:17:17 +00001716 def test_iterlines_stored(self):
Guido van Rossumd6ca5462007-05-22 01:29:33 +00001717 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
Ezio Melottiafd0d112009-07-15 17:17:17 +00001718 self.iterlines_test(f, zipfile.ZIP_STORED)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001719
Ezio Melotti975077a2011-05-19 22:03:22 +03001720 @requires_zlib
Ezio Melottiafd0d112009-07-15 17:17:17 +00001721 def test_read_deflated(self):
Ezio Melotti76430242009-07-11 18:28:48 +00001722 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
Ezio Melottiafd0d112009-07-15 17:17:17 +00001723 self.read_test(f, zipfile.ZIP_DEFLATED)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001724
Ezio Melotti975077a2011-05-19 22:03:22 +03001725 @requires_zlib
Antoine Pitroua32f9a22010-01-27 21:18:57 +00001726 def test_readline_read_deflated(self):
1727 # Issue #7610: calls to readline() interleaved with calls to read().
1728 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
1729 self.readline_read_test(f, zipfile.ZIP_DEFLATED)
1730
Ezio Melotti975077a2011-05-19 22:03:22 +03001731 @requires_zlib
Ezio Melottiafd0d112009-07-15 17:17:17 +00001732 def test_readline_deflated(self):
Ezio Melotti76430242009-07-11 18:28:48 +00001733 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
Ezio Melottiafd0d112009-07-15 17:17:17 +00001734 self.readline_test(f, zipfile.ZIP_DEFLATED)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001735
Ezio Melotti975077a2011-05-19 22:03:22 +03001736 @requires_zlib
Ezio Melottiafd0d112009-07-15 17:17:17 +00001737 def test_readlines_deflated(self):
Ezio Melotti76430242009-07-11 18:28:48 +00001738 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
Ezio Melottiafd0d112009-07-15 17:17:17 +00001739 self.readlines_test(f, zipfile.ZIP_DEFLATED)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001740
Ezio Melotti975077a2011-05-19 22:03:22 +03001741 @requires_zlib
Ezio Melottiafd0d112009-07-15 17:17:17 +00001742 def test_iterlines_deflated(self):
Ezio Melotti76430242009-07-11 18:28:48 +00001743 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
Ezio Melottiafd0d112009-07-15 17:17:17 +00001744 self.iterlines_test(f, zipfile.ZIP_DEFLATED)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001745
Martin v. Löwisf6b16a42012-05-01 07:58:44 +02001746 @requires_bz2
1747 def test_read_bzip2(self):
1748 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
1749 self.read_test(f, zipfile.ZIP_BZIP2)
1750
1751 @requires_bz2
1752 def test_readline_read_bzip2(self):
1753 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
1754 self.readline_read_test(f, zipfile.ZIP_BZIP2)
1755
1756 @requires_bz2
1757 def test_readline_bzip2(self):
1758 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
1759 self.readline_test(f, zipfile.ZIP_BZIP2)
1760
1761 @requires_bz2
1762 def test_readlines_bzip2(self):
1763 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
1764 self.readlines_test(f, zipfile.ZIP_BZIP2)
1765
1766 @requires_bz2
1767 def test_iterlines_bzip2(self):
1768 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
1769 self.iterlines_test(f, zipfile.ZIP_BZIP2)
1770
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +02001771 @requires_lzma
1772 def test_read_lzma(self):
1773 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
1774 self.read_test(f, zipfile.ZIP_LZMA)
1775
1776 @requires_lzma
1777 def test_readline_read_lzma(self):
1778 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
1779 self.readline_read_test(f, zipfile.ZIP_LZMA)
1780
1781 @requires_lzma
1782 def test_readline_lzma(self):
1783 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
1784 self.readline_test(f, zipfile.ZIP_LZMA)
1785
1786 @requires_lzma
1787 def test_readlines_lzma(self):
1788 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
1789 self.readlines_test(f, zipfile.ZIP_LZMA)
1790
1791 @requires_lzma
1792 def test_iterlines_lzma(self):
1793 for f in (TESTFN2, TemporaryFile(), io.BytesIO()):
1794 self.iterlines_test(f, zipfile.ZIP_LZMA)
1795
Guido van Rossumd8faa362007-04-27 19:54:29 +00001796 def tearDown(self):
1797 for sep, fn in self.arcfiles.items():
1798 os.remove(fn)
Ezio Melotti76430242009-07-11 18:28:48 +00001799 unlink(TESTFN)
1800 unlink(TESTFN2)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001801
1802
Johannes Gijsbers3caf9c12004-08-19 15:11:50 +00001803def test_main():
Guido van Rossumd8faa362007-04-27 19:54:29 +00001804 run_unittest(TestsWithSourceFile, TestZip64InSmallFiles, OtherTests,
1805 PyZipFileTests, DecryptionTests, TestsWithMultipleOpens,
Ezio Melotti76430242009-07-11 18:28:48 +00001806 TestWithDirectory, UniversalNewlineTests,
1807 TestsWithRandomBinaryFiles)
Johannes Gijsbers3caf9c12004-08-19 15:11:50 +00001808
1809if __name__ == "__main__":
1810 test_main()