Ezio Melotti | 74c96ec | 2009-07-08 22:24:06 +0000 | [diff] [blame] | 1 | import io |
| 2 | import os |
Georg Brandl | 5ba11de | 2011-01-01 10:09:32 +0000 | [diff] [blame] | 3 | import sys |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 4 | import imp |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 5 | import time |
Ezio Melotti | 74c96ec | 2009-07-08 22:24:06 +0000 | [diff] [blame] | 6 | import shutil |
| 7 | import struct |
| 8 | import zipfile |
| 9 | import unittest |
| 10 | |
Tim Peters | a45cacf | 2004-08-20 03:47:14 +0000 | [diff] [blame] | 11 | |
Johannes Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 12 | from tempfile import TemporaryFile |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 13 | from random import randint, random |
Ezio Melotti | 74c96ec | 2009-07-08 22:24:06 +0000 | [diff] [blame] | 14 | from unittest import skipUnless |
Tim Peters | a19a168 | 2001-03-29 04:36:09 +0000 | [diff] [blame] | 15 | |
Serhiy Storchaka | 45c4375 | 2013-01-29 20:10:28 +0200 | [diff] [blame] | 16 | from test.support import (TESTFN, run_unittest, findfile, unlink, |
Serhiy Storchaka | c5b75db | 2013-01-29 20:14:08 +0200 | [diff] [blame^] | 17 | requires_zlib, requires_bz2, requires_lzma, |
| 18 | captured_stdout) |
Guido van Rossum | 368f04a | 2000-04-10 13:23:04 +0000 | [diff] [blame] | 19 | |
Johannes Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 20 | TESTFN2 = TESTFN + "2" |
Martin v. Löwis | 59e4779 | 2009-01-24 14:10:07 +0000 | [diff] [blame] | 21 | TESTFNDIR = TESTFN + "d" |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 22 | FIXEDTEST_SIZE = 1000 |
Georg Brandl | 5ba11de | 2011-01-01 10:09:32 +0000 | [diff] [blame] | 23 | DATAFILES_DIR = 'zipfile_datafiles' |
Guido van Rossum | 368f04a | 2000-04-10 13:23:04 +0000 | [diff] [blame] | 24 | |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 25 | SMALL_TEST_DATA = [('_ziptest1', '1q2w3e4r5t'), |
| 26 | ('ziptest2dir/_ziptest2', 'qawsedrftg'), |
| 27 | ('/ziptest2dir/ziptest3dir/_ziptest3', 'azsxdcfvgb'), |
| 28 | ('ziptest2dir/ziptest3dir/ziptest4dir/_ziptest3', '6y7u8i9o0p')] |
| 29 | |
Ezio Melotti | 7643024 | 2009-07-11 18:28:48 +0000 | [diff] [blame] | 30 | |
Johannes Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 31 | class TestsWithSourceFile(unittest.TestCase): |
| 32 | def setUp(self): |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 33 | self.line_gen = (bytes("Zipfile test line %d. random float: %f" % |
Guido van Rossum | 9c62772 | 2007-08-27 18:31:48 +0000 | [diff] [blame] | 34 | (i, random()), "ascii") |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 35 | for i in range(FIXEDTEST_SIZE)) |
| 36 | self.data = b'\n'.join(self.line_gen) + b'\n' |
Fred Drake | 6e7e485 | 2001-02-28 05:34:16 +0000 | [diff] [blame] | 37 | |
Johannes Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 38 | # Make a source file with some lines |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 39 | with open(TESTFN, "wb") as fp: |
| 40 | fp.write(self.data) |
Tim Peters | 7d3bad6 | 2001-04-04 18:56:49 +0000 | [diff] [blame] | 41 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 42 | def make_test_archive(self, f, compression): |
Johannes Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 43 | # Create the ZIP archive |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 44 | 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 Peters | 7d3bad6 | 2001-04-04 18:56:49 +0000 | [diff] [blame] | 48 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 49 | def zip_test(self, f, compression): |
| 50 | self.make_test_archive(f, compression) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 51 | |
Johannes Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 52 | # Read the ZIP archive |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 53 | 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 Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 57 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 58 | # Print the ZIP directory |
| 59 | fp = io.StringIO() |
| 60 | zipfp.printdir(file=fp) |
| 61 | directory = fp.getvalue() |
| 62 | lines = directory.splitlines() |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 63 | self.assertEqual(len(lines), 4) # Number of files + header |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 64 | |
Benjamin Peterson | 577473f | 2010-01-19 00:09:57 +0000 | [diff] [blame] | 65 | self.assertIn('File Name', lines[0]) |
| 66 | self.assertIn('Modified', lines[0]) |
| 67 | self.assertIn('Size', lines[0]) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 68 | |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 69 | 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 Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 74 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 75 | # Check the namelist |
| 76 | names = zipfp.namelist() |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 77 | self.assertEqual(len(names), 3) |
Benjamin Peterson | 577473f | 2010-01-19 00:09:57 +0000 | [diff] [blame] | 78 | self.assertIn(TESTFN, names) |
| 79 | self.assertIn("another.name", names) |
| 80 | self.assertIn("strfile", names) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 81 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 82 | # Check infolist |
| 83 | infos = zipfp.infolist() |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 84 | names = [i.filename for i in infos] |
| 85 | self.assertEqual(len(names), 3) |
Benjamin Peterson | 577473f | 2010-01-19 00:09:57 +0000 | [diff] [blame] | 86 | self.assertIn(TESTFN, names) |
| 87 | self.assertIn("another.name", names) |
| 88 | self.assertIn("strfile", names) |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 89 | for i in infos: |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 90 | self.assertEqual(i.file_size, len(self.data)) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 91 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 92 | # check getinfo |
| 93 | for nm in (TESTFN, "another.name", "strfile"): |
| 94 | info = zipfp.getinfo(nm) |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 95 | self.assertEqual(info.filename, nm) |
| 96 | self.assertEqual(info.file_size, len(self.data)) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 97 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 98 | # Check that testzip doesn't raise an exception |
| 99 | zipfp.testzip() |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 100 | if not isinstance(f, str): |
| 101 | f.close() |
Tim Peters | 7d3bad6 | 2001-04-04 18:56:49 +0000 | [diff] [blame] | 102 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 103 | def test_stored(self): |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 104 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 105 | self.zip_test(f, zipfile.ZIP_STORED) |
Raymond Hettinger | c0fac96 | 2003-06-27 22:25:03 +0000 | [diff] [blame] | 106 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 107 | def zip_open_test(self, f, compression): |
| 108 | self.make_test_archive(f, compression) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 109 | |
| 110 | # Read the ZIP archive |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 111 | with zipfile.ZipFile(f, "r", compression) as zipfp: |
| 112 | zipdata1 = [] |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 113 | 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 Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 119 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 120 | zipdata2 = [] |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 121 | 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 Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 127 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 128 | self.assertEqual(b''.join(zipdata1), self.data) |
| 129 | self.assertEqual(b''.join(zipdata2), self.data) |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 130 | if not isinstance(f, str): |
| 131 | f.close() |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 132 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 133 | def test_open_stored(self): |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 134 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 135 | self.zip_open_test(f, zipfile.ZIP_STORED) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 136 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 137 | def test_open_via_zip_info(self): |
Georg Brandl | b533e26 | 2008-05-25 18:19:30 +0000 | [diff] [blame] | 138 | # Create the ZIP archive |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 139 | with zipfile.ZipFile(TESTFN2, "w", zipfile.ZIP_STORED) as zipfp: |
| 140 | zipfp.writestr("name", "foo") |
| 141 | zipfp.writestr("name", "bar") |
Georg Brandl | b533e26 | 2008-05-25 18:19:30 +0000 | [diff] [blame] | 142 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 143 | with zipfile.ZipFile(TESTFN2, "r") as zipfp: |
| 144 | infos = zipfp.infolist() |
| 145 | data = b"" |
| 146 | for info in infos: |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 147 | with zipfp.open(info) as zipopen: |
| 148 | data += zipopen.read() |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 149 | 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 Brandl | b533e26 | 2008-05-25 18:19:30 +0000 | [diff] [blame] | 154 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 155 | def zip_random_open_test(self, f, compression): |
| 156 | self.make_test_archive(f, compression) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 157 | |
| 158 | # Read the ZIP archive |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 159 | with zipfile.ZipFile(f, "r", compression) as zipfp: |
| 160 | zipdata1 = [] |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 161 | 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 Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 167 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 168 | self.assertEqual(b''.join(zipdata1), self.data) |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 169 | if not isinstance(f, str): |
| 170 | f.close() |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 171 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 172 | def test_random_open_stored(self): |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 173 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 174 | self.zip_random_open_test(f, zipfile.ZIP_STORED) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 175 | |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 176 | 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 Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 186 | with zipfp.open(TESTFN, 'rU') as zipopen: |
| 187 | for line in zipopen: |
| 188 | data2 += line |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 189 | 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 Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 198 | 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 Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 205 | |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 206 | read = zipopen.read(100) |
| 207 | if not read: |
| 208 | break |
| 209 | data += read |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 210 | |
| 211 | self.assertEqual(data, self.data) |
| 212 | zipfp.close() |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 213 | if not isinstance(f, str): |
| 214 | f.close() |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 215 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 216 | def zip_readline_test(self, f, compression): |
| 217 | self.make_test_archive(f, compression) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 218 | |
| 219 | # Read the ZIP archive |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 220 | with zipfile.ZipFile(f, "r") as zipfp: |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 221 | with zipfp.open(TESTFN) as zipopen: |
| 222 | for line in self.line_gen: |
| 223 | linedata = zipopen.readline() |
| 224 | self.assertEqual(linedata, line + '\n') |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 225 | if not isinstance(f, str): |
| 226 | f.close() |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 227 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 228 | def zip_readlines_test(self, f, compression): |
| 229 | self.make_test_archive(f, compression) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 230 | |
| 231 | # Read the ZIP archive |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 232 | with zipfile.ZipFile(f, "r") as zipfp: |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 233 | with zipfp.open(TESTFN) as zipopen: |
| 234 | ziplines = zipopen.readlines() |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 235 | for line, zipline in zip(self.line_gen, ziplines): |
| 236 | self.assertEqual(zipline, line + '\n') |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 237 | if not isinstance(f, str): |
| 238 | f.close() |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 239 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 240 | def zip_iterlines_test(self, f, compression): |
| 241 | self.make_test_archive(f, compression) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 242 | |
| 243 | # Read the ZIP archive |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 244 | with zipfile.ZipFile(f, "r") as zipfp: |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 245 | with zipfp.open(TESTFN) as zipopen: |
| 246 | for line, zipline in zip(self.line_gen, zipopen): |
| 247 | self.assertEqual(zipline, line + '\n') |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 248 | if not isinstance(f, str): |
| 249 | f.close() |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 250 | |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 251 | 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 Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 256 | def test_readline_stored(self): |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 257 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 258 | self.zip_readline_test(f, zipfile.ZIP_STORED) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 259 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 260 | def test_readlines_stored(self): |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 261 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 262 | self.zip_readlines_test(f, zipfile.ZIP_STORED) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 263 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 264 | def test_iterlines_stored(self): |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 265 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 266 | self.zip_iterlines_test(f, zipfile.ZIP_STORED) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 267 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 268 | @requires_zlib |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 269 | def test_deflated(self): |
Ezio Melotti | 74c96ec | 2009-07-08 22:24:06 +0000 | [diff] [blame] | 270 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 271 | self.zip_test(f, zipfile.ZIP_DEFLATED) |
Raymond Hettinger | c0fac96 | 2003-06-27 22:25:03 +0000 | [diff] [blame] | 272 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 273 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 274 | @requires_zlib |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 275 | def test_open_deflated(self): |
Ezio Melotti | 74c96ec | 2009-07-08 22:24:06 +0000 | [diff] [blame] | 276 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 277 | self.zip_open_test(f, zipfile.ZIP_DEFLATED) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 278 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 279 | @requires_zlib |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 280 | def test_random_open_deflated(self): |
Ezio Melotti | 74c96ec | 2009-07-08 22:24:06 +0000 | [diff] [blame] | 281 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 282 | self.zip_random_open_test(f, zipfile.ZIP_DEFLATED) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 283 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 284 | @requires_zlib |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 285 | 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 Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 290 | @requires_zlib |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 291 | def test_readline_deflated(self): |
Ezio Melotti | 74c96ec | 2009-07-08 22:24:06 +0000 | [diff] [blame] | 292 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 293 | self.zip_readline_test(f, zipfile.ZIP_DEFLATED) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 294 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 295 | @requires_zlib |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 296 | def test_readlines_deflated(self): |
Ezio Melotti | 74c96ec | 2009-07-08 22:24:06 +0000 | [diff] [blame] | 297 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 298 | self.zip_readlines_test(f, zipfile.ZIP_DEFLATED) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 299 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 300 | @requires_zlib |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 301 | def test_iterlines_deflated(self): |
Ezio Melotti | 74c96ec | 2009-07-08 22:24:06 +0000 | [diff] [blame] | 302 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 303 | self.zip_iterlines_test(f, zipfile.ZIP_DEFLATED) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 304 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 305 | @requires_zlib |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 306 | def test_low_compression(self): |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 307 | """Check for cases where compressed data is larger than original.""" |
Ezio Melotti | 74c96ec | 2009-07-08 22:24:06 +0000 | [diff] [blame] | 308 | # Create the ZIP archive |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 309 | with zipfile.ZipFile(TESTFN2, "w", zipfile.ZIP_DEFLATED) as zipfp: |
| 310 | zipfp.writestr("strfile", '12') |
Ezio Melotti | 74c96ec | 2009-07-08 22:24:06 +0000 | [diff] [blame] | 311 | |
| 312 | # Get an open object for strfile |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 313 | with zipfile.ZipFile(TESTFN2, "r", zipfile.ZIP_DEFLATED) as zipfp: |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 314 | with zipfp.open("strfile") as openobj: |
| 315 | self.assertEqual(openobj.read(1), b'1') |
| 316 | self.assertEqual(openobj.read(1), b'2') |
Ezio Melotti | 74c96ec | 2009-07-08 22:24:06 +0000 | [diff] [blame] | 317 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 318 | @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öwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 366 | @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 Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 415 | def test_absolute_arcnames(self): |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 416 | with zipfile.ZipFile(TESTFN2, "w", zipfile.ZIP_STORED) as zipfp: |
| 417 | zipfp.write(TESTFN, "/absolute") |
Georg Brandl | 8f7c54e | 2006-02-20 08:40:38 +0000 | [diff] [blame] | 418 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 419 | with zipfile.ZipFile(TESTFN2, "r", zipfile.ZIP_STORED) as zipfp: |
| 420 | self.assertEqual(zipfp.namelist(), ["absolute"]) |
Tim Peters | 32cbc96 | 2006-02-20 21:42:18 +0000 | [diff] [blame] | 421 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 422 | def test_append_to_zip_file(self): |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 423 | """Test appending to an existing zipfile.""" |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 424 | 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 Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 430 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 431 | def test_append_to_non_zip_file(self): |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 432 | """Test appending to an existing file that is not a zipfile.""" |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 433 | # NOTE: this test fails if len(d) < 22 because of the first |
| 434 | # line "fpin.seek(-22, 2)" in _EndRecData |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 435 | data = b'I am not a ZipFile!'*10 |
| 436 | with open(TESTFN2, 'wb') as f: |
| 437 | f.write(data) |
| 438 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 439 | with zipfile.ZipFile(TESTFN2, "a", zipfile.ZIP_STORED) as zipfp: |
| 440 | zipfp.write(TESTFN, TESTFN) |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 441 | |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 442 | 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 Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 446 | |
R David Murray | 4fbb9db | 2011-06-09 15:50:51 -0400 | [diff] [blame] | 447 | 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 Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 465 | def test_write_default_name(self): |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 466 | """Check that calling ZipFile.write without arcname specified |
| 467 | produces the expected result.""" |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 468 | with zipfile.ZipFile(TESTFN2, "w") as zipfp: |
| 469 | zipfp.write(TESTFN) |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 470 | with open(TESTFN, "rb") as f: |
| 471 | self.assertEqual(zipfp.read(TESTFN), f.read()) |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 472 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 473 | @requires_zlib |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 474 | def test_per_file_compression(self): |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 475 | """Check that files within a Zip archive can have different |
| 476 | compression options.""" |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 477 | 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 Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 484 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 485 | def test_write_to_readonly(self): |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 486 | """Check that trying to call write() on a readonly ZipFile object |
| 487 | raises a RuntimeError.""" |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 488 | 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 Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 493 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 494 | def test_extract(self): |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 495 | with zipfile.ZipFile(TESTFN2, "w", zipfile.ZIP_STORED) as zipfp: |
| 496 | for fpath, fdata in SMALL_TEST_DATA: |
| 497 | zipfp.writestr(fpath, fdata) |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 498 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 499 | with zipfile.ZipFile(TESTFN2, "r") as zipfp: |
| 500 | for fpath, fdata in SMALL_TEST_DATA: |
| 501 | writtenfile = zipfp.extract(fpath) |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 502 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 503 | # 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 Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 509 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 510 | self.assertEqual(writtenfile, correctfile) |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 511 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 512 | # make sure correct data is in correct file |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 513 | with open(writtenfile, "rb") as f: |
| 514 | self.assertEqual(fdata.encode(), f.read()) |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 515 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 516 | os.remove(writtenfile) |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 517 | |
| 518 | # remove the test file subdirectories |
| 519 | shutil.rmtree(os.path.join(os.getcwd(), 'ziptest2dir')) |
| 520 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 521 | def test_extract_all(self): |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 522 | with zipfile.ZipFile(TESTFN2, "w", zipfile.ZIP_STORED) as zipfp: |
| 523 | for fpath, fdata in SMALL_TEST_DATA: |
| 524 | zipfp.writestr(fpath, fdata) |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 525 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 526 | 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 Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 533 | |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 534 | with open(outfile, "rb") as f: |
| 535 | self.assertEqual(fdata.encode(), f.read()) |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 536 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 537 | os.remove(outfile) |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 538 | |
| 539 | # remove the test file subdirectories |
| 540 | shutil.rmtree(os.path.join(os.getcwd(), 'ziptest2dir')) |
| 541 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 542 | def test_writestr_compression_stored(self): |
Ronald Oussoren | ee5c885 | 2010-02-07 20:24:02 +0000 | [diff] [blame] | 543 | zipfp = zipfile.ZipFile(TESTFN2, "w") |
| 544 | zipfp.writestr("a.txt", "hello world", compress_type=zipfile.ZIP_STORED) |
Ronald Oussoren | ee5c885 | 2010-02-07 20:24:02 +0000 | [diff] [blame] | 545 | info = zipfp.getinfo('a.txt') |
| 546 | self.assertEqual(info.compress_type, zipfile.ZIP_STORED) |
| 547 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 548 | @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 Oussoren | ee5c885 | 2010-02-07 20:24:02 +0000 | [diff] [blame] | 554 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 555 | @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öwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 562 | @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 Pitrou | 6e1df8d | 2008-07-25 19:58:18 +0000 | [diff] [blame] | 569 | 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 Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 573 | self.make_test_archive(f, compression) |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 574 | with zipfile.ZipFile(f, "r") as zipfp: |
| 575 | zinfo = zipfp.getinfo('strfile') |
| 576 | self.assertEqual(zinfo.external_attr, 0o600 << 16) |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 577 | if not isinstance(f, str): |
| 578 | f.close() |
Antoine Pitrou | 6e1df8d | 2008-07-25 19:58:18 +0000 | [diff] [blame] | 579 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 580 | def test_writestr_permissions(self): |
Antoine Pitrou | 6e1df8d | 2008-07-25 19:58:18 +0000 | [diff] [blame] | 581 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
| 582 | self.zip_test_writestr_permissions(f, zipfile.ZIP_STORED) |
| 583 | |
Gregory P. Smith | b0d9ca9 | 2009-07-07 05:06:04 +0000 | [diff] [blame] | 584 | def test_writestr_extended_local_header_issue1202(self): |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 585 | 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 Brandl | 4d54088 | 2010-10-28 06:42:33 +0000 | [diff] [blame] | 612 | raise zipfile.BadZipFile() |
| 613 | except zipfile.BadZipFile: |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 614 | self.assertTrue(zipfp2.fp is None, 'zipfp is not closed') |
Gregory P. Smith | b0d9ca9 | 2009-07-07 05:06:04 +0000 | [diff] [blame] | 615 | |
Senthil Kumaran | 29fa9d4 | 2011-10-20 01:46:00 +0800 | [diff] [blame] | 616 | 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 Kumaran | 7e3062b | 2011-10-20 01:52:41 +0800 | [diff] [blame] | 623 | |
| 624 | |
| 625 | |
| 626 | |
| 627 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 628 | @requires_zlib |
Georg Brandl | 5ba11de | 2011-01-01 10:09:32 +0000 | [diff] [blame] | 629 | def test_unicode_filenames(self): |
Georg Brandl | 04480a8 | 2011-01-01 10:42:31 +0000 | [diff] [blame] | 630 | # bug #10801 |
| 631 | fname = findfile('zip_cp437_header.zip') |
Georg Brandl | 5ba11de | 2011-01-01 10:09:32 +0000 | [diff] [blame] | 632 | with zipfile.ZipFile(fname) as zipfp: |
Georg Brandl | 04480a8 | 2011-01-01 10:42:31 +0000 | [diff] [blame] | 633 | for name in zipfp.namelist(): |
| 634 | zipfp.open(name).close() |
Georg Brandl | 5ba11de | 2011-01-01 10:09:32 +0000 | [diff] [blame] | 635 | |
Johannes Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 636 | def tearDown(self): |
Ezio Melotti | 7643024 | 2009-07-11 18:28:48 +0000 | [diff] [blame] | 637 | unlink(TESTFN) |
| 638 | unlink(TESTFN2) |
| 639 | |
Johannes Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 640 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 641 | class 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 Rossum | 9c62772 | 2007-08-27 18:31:48 +0000 | [diff] [blame] | 649 | line_gen = (bytes("Test of zipfile line %d." % i, "ascii") |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 650 | for i in range(0, FIXEDTEST_SIZE)) |
| 651 | self.data = b'\n'.join(line_gen) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 652 | |
| 653 | # Make a source file with some lines |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 654 | with open(TESTFN, "wb") as fp: |
| 655 | fp.write(self.data) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 656 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 657 | def large_file_exception_test(self, f, compression): |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 658 | with zipfile.ZipFile(f, "w", compression) as zipfp: |
| 659 | self.assertRaises(zipfile.LargeZipFile, |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 660 | zipfp.write, TESTFN, "another.name") |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 661 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 662 | def large_file_exception_test2(self, f, compression): |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 663 | with zipfile.ZipFile(f, "w", compression) as zipfp: |
| 664 | self.assertRaises(zipfile.LargeZipFile, |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 665 | zipfp.writestr, "another.name", self.data) |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 666 | if not isinstance(f, str): |
| 667 | f.close() |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 668 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 669 | def test_large_file_exception(self): |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 670 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 671 | self.large_file_exception_test(f, zipfile.ZIP_STORED) |
| 672 | self.large_file_exception_test2(f, zipfile.ZIP_STORED) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 673 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 674 | def zip_test(self, f, compression): |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 675 | # Create the ZIP archive |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 676 | 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 Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 680 | |
| 681 | # Read the ZIP archive |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 682 | 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 Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 686 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 687 | # Print the ZIP directory |
| 688 | fp = io.StringIO() |
| 689 | zipfp.printdir(fp) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 690 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 691 | directory = fp.getvalue() |
| 692 | lines = directory.splitlines() |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 693 | self.assertEqual(len(lines), 4) # Number of files + header |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 694 | |
Benjamin Peterson | 577473f | 2010-01-19 00:09:57 +0000 | [diff] [blame] | 695 | self.assertIn('File Name', lines[0]) |
| 696 | self.assertIn('Modified', lines[0]) |
| 697 | self.assertIn('Size', lines[0]) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 698 | |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 699 | 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 Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 704 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 705 | # Check the namelist |
| 706 | names = zipfp.namelist() |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 707 | self.assertEqual(len(names), 3) |
Benjamin Peterson | 577473f | 2010-01-19 00:09:57 +0000 | [diff] [blame] | 708 | self.assertIn(TESTFN, names) |
| 709 | self.assertIn("another.name", names) |
| 710 | self.assertIn("strfile", names) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 711 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 712 | # Check infolist |
| 713 | infos = zipfp.infolist() |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 714 | names = [i.filename for i in infos] |
| 715 | self.assertEqual(len(names), 3) |
Benjamin Peterson | 577473f | 2010-01-19 00:09:57 +0000 | [diff] [blame] | 716 | self.assertIn(TESTFN, names) |
| 717 | self.assertIn("another.name", names) |
| 718 | self.assertIn("strfile", names) |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 719 | for i in infos: |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 720 | self.assertEqual(i.file_size, len(self.data)) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 721 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 722 | # check getinfo |
| 723 | for nm in (TESTFN, "another.name", "strfile"): |
| 724 | info = zipfp.getinfo(nm) |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 725 | self.assertEqual(info.filename, nm) |
| 726 | self.assertEqual(info.file_size, len(self.data)) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 727 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 728 | # Check that testzip doesn't raise an exception |
| 729 | zipfp.testzip() |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 730 | if not isinstance(f, str): |
| 731 | f.close() |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 732 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 733 | def test_stored(self): |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 734 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 735 | self.zip_test(f, zipfile.ZIP_STORED) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 736 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 737 | @requires_zlib |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 738 | def test_deflated(self): |
Ezio Melotti | 7643024 | 2009-07-11 18:28:48 +0000 | [diff] [blame] | 739 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 740 | self.zip_test(f, zipfile.ZIP_DEFLATED) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 741 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 742 | @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öwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 747 | @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 Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 752 | def test_absolute_arcnames(self): |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 753 | with zipfile.ZipFile(TESTFN2, "w", zipfile.ZIP_STORED, |
| 754 | allowZip64=True) as zipfp: |
| 755 | zipfp.write(TESTFN, "/absolute") |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 756 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 757 | with zipfile.ZipFile(TESTFN2, "r", zipfile.ZIP_STORED) as zipfp: |
| 758 | self.assertEqual(zipfp.namelist(), ["absolute"]) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 759 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 760 | def tearDown(self): |
| 761 | zipfile.ZIP64_LIMIT = self._limit |
Ezio Melotti | 7643024 | 2009-07-11 18:28:48 +0000 | [diff] [blame] | 762 | unlink(TESTFN) |
| 763 | unlink(TESTFN2) |
| 764 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 765 | |
| 766 | class PyZipFileTests(unittest.TestCase): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 767 | def test_write_pyfile(self): |
Łukasz Langa | a9f054b | 2010-11-23 00:15:02 +0000 | [diff] [blame] | 768 | with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp: |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 769 | fn = __file__ |
| 770 | if fn.endswith('.pyc') or fn.endswith('.pyo'): |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 771 | 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 Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 778 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 779 | zipfp.writepy(fn) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 780 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 781 | bn = os.path.basename(fn) |
Benjamin Peterson | 577473f | 2010-01-19 00:09:57 +0000 | [diff] [blame] | 782 | self.assertNotIn(bn, zipfp.namelist()) |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 783 | self.assertTrue(bn + 'o' in zipfp.namelist() or |
| 784 | bn + 'c' in zipfp.namelist()) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 785 | |
Łukasz Langa | a9f054b | 2010-11-23 00:15:02 +0000 | [diff] [blame] | 786 | with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp: |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 787 | fn = __file__ |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 788 | if fn.endswith(('.pyc', '.pyo')): |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 789 | fn = fn[:-1] |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 790 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 791 | zipfp.writepy(fn, "testpackage") |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 792 | |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 793 | bn = "%s/%s" % ("testpackage", os.path.basename(fn)) |
Benjamin Peterson | 577473f | 2010-01-19 00:09:57 +0000 | [diff] [blame] | 794 | self.assertNotIn(bn, zipfp.namelist()) |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 795 | self.assertTrue(bn + 'o' in zipfp.namelist() or |
| 796 | bn + 'c' in zipfp.namelist()) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 797 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 798 | def test_write_python_package(self): |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 799 | import email |
| 800 | packagedir = os.path.dirname(email.__file__) |
| 801 | |
Łukasz Langa | a9f054b | 2010-11-23 00:15:02 +0000 | [diff] [blame] | 802 | with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp: |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 803 | zipfp.writepy(packagedir) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 804 | |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 805 | # Check for a couple of modules at different levels of the |
| 806 | # hierarchy |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 807 | 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 Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 812 | |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 813 | 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 Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 829 | def test_write_python_directory(self): |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 830 | os.mkdir(TESTFN2) |
| 831 | try: |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 832 | with open(os.path.join(TESTFN2, "mod1.py"), "w") as fp: |
| 833 | fp.write("print(42)\n") |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 834 | |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 835 | with open(os.path.join(TESTFN2, "mod2.py"), "w") as fp: |
| 836 | fp.write("print(42 * 42)\n") |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 837 | |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 838 | with open(os.path.join(TESTFN2, "mod2.txt"), "w") as fp: |
| 839 | fp.write("bla bla bla\n") |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 840 | |
Łukasz Langa | a9f054b | 2010-11-23 00:15:02 +0000 | [diff] [blame] | 841 | with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp: |
| 842 | zipfp.writepy(TESTFN2) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 843 | |
Łukasz Langa | a9f054b | 2010-11-23 00:15:02 +0000 | [diff] [blame] | 844 | 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 Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 848 | |
| 849 | finally: |
| 850 | shutil.rmtree(TESTFN2) |
| 851 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 852 | def test_write_non_pyfile(self): |
Łukasz Langa | a9f054b | 2010-11-23 00:15:02 +0000 | [diff] [blame] | 853 | with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp: |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 854 | with open(TESTFN, 'w') as f: |
| 855 | f.write('most definitely not a python file') |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 856 | self.assertRaises(RuntimeError, zipfp.writepy, TESTFN) |
| 857 | os.remove(TESTFN) |
| 858 | |
Serhiy Storchaka | 45c4375 | 2013-01-29 20:10:28 +0200 | [diff] [blame] | 859 | 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 Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 881 | |
Johannes Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 882 | class OtherTests(unittest.TestCase): |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 883 | 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öwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 902 | 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öwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 914 | 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 Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 924 | } |
| 925 | |
Martin v. Löwis | d099b56 | 2012-05-01 14:08:22 +0200 | [diff] [blame] | 926 | 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 Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 936 | def test_unicode_filenames(self): |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 937 | 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 Melotti | e961593 | 2010-01-24 19:26:24 +0000 | [diff] [blame] | 940 | self.assertIsInstance(zf.infolist()[0].filename, str) |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 941 | |
| 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öwis | 8570f6a | 2008-05-05 17:44:38 +0000 | [diff] [blame] | 945 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 946 | def test_create_non_existent_file_for_append(self): |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 947 | if os.path.exists(TESTFN): |
| 948 | os.unlink(TESTFN) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 949 | |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 950 | filename = 'testfile.txt' |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 951 | content = b'hello, world. this is some content.' |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 952 | |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 953 | try: |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 954 | with zipfile.ZipFile(TESTFN, 'a') as zf: |
| 955 | zf.writestr(filename, content) |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 956 | except IOError: |
| 957 | self.fail('Could not append data to a non-existent zip file.') |
| 958 | |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 959 | self.assertTrue(os.path.exists(TESTFN)) |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 960 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 961 | with zipfile.ZipFile(TESTFN, 'r') as zf: |
| 962 | self.assertEqual(zf.read(filename), content) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 963 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 964 | def test_close_erroneous_file(self): |
Johannes Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 965 | # This test checks that the ZipFile constructor closes the file object |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 966 | # 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 Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 969 | # 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 Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 972 | with open(TESTFN, "w") as fp: |
| 973 | fp.write("this is not a legal zip file\n") |
Johannes Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 974 | try: |
| 975 | zf = zipfile.ZipFile(TESTFN) |
Georg Brandl | 4d54088 | 2010-10-28 06:42:33 +0000 | [diff] [blame] | 976 | except zipfile.BadZipFile: |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 977 | pass |
| 978 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 979 | def test_is_zip_erroneous_file(self): |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 980 | """Check that is_zipfile() correctly identifies non-zip files.""" |
Antoine Pitrou | db5fe66 | 2008-12-27 15:50:40 +0000 | [diff] [blame] | 981 | # - passing a filename |
| 982 | with open(TESTFN, "w") as fp: |
| 983 | fp.write("this is not a legal zip file\n") |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 984 | chk = zipfile.is_zipfile(TESTFN) |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 985 | self.assertFalse(chk) |
Antoine Pitrou | db5fe66 | 2008-12-27 15:50:40 +0000 | [diff] [blame] | 986 | # - passing a file object |
| 987 | with open(TESTFN, "rb") as fp: |
| 988 | chk = zipfile.is_zipfile(fp) |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 989 | self.assertTrue(not chk) |
Antoine Pitrou | db5fe66 | 2008-12-27 15:50:40 +0000 | [diff] [blame] | 990 | # - 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 Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 994 | self.assertTrue(not chk) |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 995 | fp.seek(0, 0) |
Antoine Pitrou | db5fe66 | 2008-12-27 15:50:40 +0000 | [diff] [blame] | 996 | chk = zipfile.is_zipfile(fp) |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 997 | self.assertTrue(not chk) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 998 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 999 | def test_is_zip_valid_file(self): |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1000 | """Check that is_zipfile() correctly identifies zip files.""" |
Antoine Pitrou | db5fe66 | 2008-12-27 15:50:40 +0000 | [diff] [blame] | 1001 | # - passing a filename |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1002 | with zipfile.ZipFile(TESTFN, mode="w") as zipf: |
| 1003 | zipf.writestr("foo.txt", b"O, for a Muse of Fire!") |
| 1004 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1005 | chk = zipfile.is_zipfile(TESTFN) |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 1006 | self.assertTrue(chk) |
Antoine Pitrou | db5fe66 | 2008-12-27 15:50:40 +0000 | [diff] [blame] | 1007 | # - passing a file object |
| 1008 | with open(TESTFN, "rb") as fp: |
| 1009 | chk = zipfile.is_zipfile(fp) |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 1010 | self.assertTrue(chk) |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1011 | fp.seek(0, 0) |
Antoine Pitrou | db5fe66 | 2008-12-27 15:50:40 +0000 | [diff] [blame] | 1012 | 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 Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 1017 | self.assertTrue(chk) |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1018 | fp.seek(0, 0) |
Antoine Pitrou | db5fe66 | 2008-12-27 15:50:40 +0000 | [diff] [blame] | 1019 | chk = zipfile.is_zipfile(fp) |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 1020 | self.assertTrue(chk) |
Johannes Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 1021 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1022 | def test_non_existent_file_raises_IOError(self): |
Johannes Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 1023 | # 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'Arc | bc34780 | 2009-07-28 22:18:57 +0000 | [diff] [blame] | 1036 | def test_empty_file_raises_BadZipFile(self): |
| 1037 | f = open(TESTFN, 'w') |
| 1038 | f.close() |
Georg Brandl | 4d54088 | 2010-10-28 06:42:33 +0000 | [diff] [blame] | 1039 | self.assertRaises(zipfile.BadZipFile, zipfile.ZipFile, TESTFN) |
Amaury Forgeot d'Arc | bc34780 | 2009-07-28 22:18:57 +0000 | [diff] [blame] | 1040 | |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1041 | with open(TESTFN, 'w') as fp: |
| 1042 | fp.write("short file") |
Georg Brandl | 4d54088 | 2010-10-28 06:42:33 +0000 | [diff] [blame] | 1043 | self.assertRaises(zipfile.BadZipFile, zipfile.ZipFile, TESTFN) |
Amaury Forgeot d'Arc | bc34780 | 2009-07-28 22:18:57 +0000 | [diff] [blame] | 1044 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1045 | def test_closed_zip_raises_RuntimeError(self): |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1046 | """Verify that testzip() doesn't swallow inappropriate exceptions.""" |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1047 | data = io.BytesIO() |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1048 | with zipfile.ZipFile(data, mode="w") as zipf: |
| 1049 | zipf.writestr("foo.txt", "O, for a Muse of Fire!") |
Johannes Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 1050 | |
Andrew Svetlov | 737fb89 | 2012-12-18 21:14:22 +0200 | [diff] [blame] | 1051 | # This is correct; calling .read on a closed ZipFile should raise |
Johannes Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 1052 | # 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 Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1055 | self.assertRaises(RuntimeError, zipf.read, "foo.txt") |
| 1056 | self.assertRaises(RuntimeError, zipf.open, "foo.txt") |
Johannes Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 1057 | self.assertRaises(RuntimeError, zipf.testzip) |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1058 | self.assertRaises(RuntimeError, zipf.writestr, "bogus.txt", "bogus") |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 1059 | with open(TESTFN, 'w') as f: |
| 1060 | f.write('zipfile test data') |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1061 | self.assertRaises(RuntimeError, zipf.write, TESTFN) |
| 1062 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1063 | def test_bad_constructor_mode(self): |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1064 | """Check that bad modes passed to ZipFile constructor are caught.""" |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1065 | self.assertRaises(RuntimeError, zipfile.ZipFile, TESTFN, "q") |
| 1066 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1067 | def test_bad_open_mode(self): |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1068 | """Check that bad modes passed to ZipFile.open are caught.""" |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1069 | 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 Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1073 | # read the data to make sure the file is there |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1074 | zipf.read("foo.txt") |
| 1075 | self.assertRaises(RuntimeError, zipf.open, "foo.txt", "q") |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1076 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1077 | def test_read0(self): |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1078 | """Check that calling read(0) on a ZipExtFile object returns an empty |
| 1079 | string and doesn't advance file pointer.""" |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1080 | 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 Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 1083 | with zipf.open("foo.txt") as f: |
| 1084 | for i in range(FIXEDTEST_SIZE): |
| 1085 | self.assertEqual(f.read(0), b'') |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1086 | |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 1087 | self.assertEqual(f.read(), b"O, for a Muse of Fire!") |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1088 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1089 | def test_open_non_existent_item(self): |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1090 | """Check that attempting to call open() for an item that doesn't |
| 1091 | exist in the archive raises a RuntimeError.""" |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1092 | with zipfile.ZipFile(TESTFN, mode="w") as zipf: |
| 1093 | self.assertRaises(KeyError, zipf.open, "foo.txt", "r") |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1094 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1095 | def test_bad_compression_mode(self): |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1096 | """Check that bad compression methods passed to ZipFile.open are |
| 1097 | caught.""" |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1098 | self.assertRaises(RuntimeError, zipfile.ZipFile, TESTFN, "w", -1) |
| 1099 | |
Martin v. Löwis | b3260f0 | 2012-05-01 08:38:01 +0200 | [diff] [blame] | 1100 | 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 Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1111 | def test_null_byte_in_filename(self): |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1112 | """Check that a filename containing a null byte is properly |
| 1113 | terminated.""" |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1114 | 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 Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 1117 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1118 | def test_struct_sizes(self): |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1119 | """Check that ZIP internal structure sizes are calculated correctly.""" |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 1120 | 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 Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1125 | def test_comments(self): |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1126 | """Check that comments on the archive are handled properly.""" |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 1127 | |
| 1128 | # check default comment is empty |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1129 | 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öwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 1135 | |
| 1136 | # check a simple short comment |
| 1137 | comment = b'Bravely taking to his feet, he beat a very brave retreat.' |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1138 | 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öwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 1143 | |
| 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 Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1147 | 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öwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 1153 | |
| 1154 | # check a comment that is too long is truncated |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1155 | 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öwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 1160 | |
Antoine Pitrou | c399185 | 2012-06-30 17:31:37 +0200 | [diff] [blame] | 1161 | # 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 Murray | f50b38a | 2012-04-12 18:44:58 -0400 | [diff] [blame] | 1179 | 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 Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 1201 | 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 Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 1212 | @requires_zlib |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 1213 | def test_testzip_with_bad_crc_deflated(self): |
| 1214 | self.check_testzip_with_bad_crc(zipfile.ZIP_DEFLATED) |
| 1215 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 1216 | @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öwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 1220 | @requires_lzma |
| 1221 | def test_testzip_with_bad_crc_lzma(self): |
| 1222 | self.check_testzip_with_bad_crc(zipfile.ZIP_LZMA) |
| 1223 | |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 1224 | def check_read_with_bad_crc(self, compression): |
Georg Brandl | 4d54088 | 2010-10-28 06:42:33 +0000 | [diff] [blame] | 1225 | """Tests that files with bad CRCs raise a BadZipFile exception when read.""" |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 1226 | zipdata = self.zips_with_bad_crc[compression] |
| 1227 | |
| 1228 | # Using ZipFile.read() |
| 1229 | with zipfile.ZipFile(io.BytesIO(zipdata), mode="r") as zipf: |
Georg Brandl | 4d54088 | 2010-10-28 06:42:33 +0000 | [diff] [blame] | 1230 | self.assertRaises(zipfile.BadZipFile, zipf.read, 'afile') |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 1231 | |
| 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 Brandl | 4d54088 | 2010-10-28 06:42:33 +0000 | [diff] [blame] | 1235 | self.assertRaises(zipfile.BadZipFile, corrupt_file.read) |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 1236 | |
| 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 Brandl | 4d54088 | 2010-10-28 06:42:33 +0000 | [diff] [blame] | 1241 | with self.assertRaises(zipfile.BadZipFile): |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 1242 | 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 Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 1248 | @requires_zlib |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 1249 | def test_read_with_bad_crc_deflated(self): |
| 1250 | self.check_read_with_bad_crc(zipfile.ZIP_DEFLATED) |
| 1251 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 1252 | @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öwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 1256 | @requires_lzma |
| 1257 | def test_read_with_bad_crc_lzma(self): |
| 1258 | self.check_read_with_bad_crc(zipfile.ZIP_LZMA) |
| 1259 | |
Antoine Pitrou | 6464d5f | 2010-09-12 14:51:20 +0000 | [diff] [blame] | 1260 | 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 Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 1276 | @requires_zlib |
Antoine Pitrou | 6464d5f | 2010-09-12 14:51:20 +0000 | [diff] [blame] | 1277 | def test_read_return_size_deflated(self): |
| 1278 | self.check_read_return_size(zipfile.ZIP_DEFLATED) |
| 1279 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 1280 | @requires_bz2 |
| 1281 | def test_read_return_size_bzip2(self): |
| 1282 | self.check_read_return_size(zipfile.ZIP_BZIP2) |
| 1283 | |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 1284 | @requires_lzma |
| 1285 | def test_read_return_size_lzma(self): |
| 1286 | self.check_read_return_size(zipfile.ZIP_LZMA) |
| 1287 | |
Georg Brandl | 268e4d4 | 2010-10-14 06:59:45 +0000 | [diff] [blame] | 1288 | 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 Brandl | 4d54088 | 2010-10-28 06:42:33 +0000 | [diff] [blame] | 1307 | # raises a BadZipFile exception (rather than the previously unhelpful |
Georg Brandl | 268e4d4 | 2010-10-14 06:59:45 +0000 | [diff] [blame] | 1308 | # IOError) |
| 1309 | f = open(TESTFN, 'w') |
| 1310 | f.close() |
Georg Brandl | 4d54088 | 2010-10-28 06:42:33 +0000 | [diff] [blame] | 1311 | self.assertRaises(zipfile.BadZipFile, zipfile.ZipFile, TESTFN, 'r') |
Georg Brandl | 268e4d4 | 2010-10-14 06:59:45 +0000 | [diff] [blame] | 1312 | |
Senthil Kumaran | 29fa9d4 | 2011-10-20 01:46:00 +0800 | [diff] [blame] | 1313 | def test_create_zipinfo_before_1980(self): |
| 1314 | self.assertRaises(ValueError, |
| 1315 | zipfile.ZipInfo, 'seventies', (1979, 1, 1, 0, 0, 0)) |
| 1316 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1317 | def tearDown(self): |
Ezio Melotti | 7643024 | 2009-07-11 18:28:48 +0000 | [diff] [blame] | 1318 | unlink(TESTFN) |
| 1319 | unlink(TESTFN2) |
| 1320 | |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1321 | |
| 1322 | class DecryptionTests(unittest.TestCase): |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1323 | """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 Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1326 | |
| 1327 | data = ( |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1328 | 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 Heimes | fdab48e | 2008-01-20 09:06:41 +0000 | [diff] [blame] | 1335 | 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 Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1344 | |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1345 | plain = b'zipfile.py encryption test' |
Christian Heimes | fdab48e | 2008-01-20 09:06:41 +0000 | [diff] [blame] | 1346 | plain2 = b'\x00'*512 |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1347 | |
| 1348 | def setUp(self): |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1349 | with open(TESTFN, "wb") as fp: |
| 1350 | fp.write(self.data) |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1351 | self.zip = zipfile.ZipFile(TESTFN, "r") |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1352 | with open(TESTFN2, "wb") as fp: |
| 1353 | fp.write(self.data2) |
Christian Heimes | fdab48e | 2008-01-20 09:06:41 +0000 | [diff] [blame] | 1354 | self.zip2 = zipfile.ZipFile(TESTFN2, "r") |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1355 | |
| 1356 | def tearDown(self): |
| 1357 | self.zip.close() |
| 1358 | os.unlink(TESTFN) |
Christian Heimes | fdab48e | 2008-01-20 09:06:41 +0000 | [diff] [blame] | 1359 | self.zip2.close() |
| 1360 | os.unlink(TESTFN2) |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1361 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1362 | def test_no_password(self): |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1363 | # Reading the encrypted file without password |
| 1364 | # must generate a RunTime exception |
| 1365 | self.assertRaises(RuntimeError, self.zip.read, "test.txt") |
Christian Heimes | fdab48e | 2008-01-20 09:06:41 +0000 | [diff] [blame] | 1366 | self.assertRaises(RuntimeError, self.zip2.read, "zero") |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1367 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1368 | def test_bad_password(self): |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1369 | self.zip.setpassword(b"perl") |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1370 | self.assertRaises(RuntimeError, self.zip.read, "test.txt") |
Christian Heimes | fdab48e | 2008-01-20 09:06:41 +0000 | [diff] [blame] | 1371 | self.zip2.setpassword(b"perl") |
| 1372 | self.assertRaises(RuntimeError, self.zip2.read, "zero") |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1373 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 1374 | @requires_zlib |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1375 | def test_good_password(self): |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1376 | self.zip.setpassword(b"python") |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1377 | self.assertEqual(self.zip.read("test.txt"), self.plain) |
Christian Heimes | fdab48e | 2008-01-20 09:06:41 +0000 | [diff] [blame] | 1378 | self.zip2.setpassword(b"12345") |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1379 | self.assertEqual(self.zip2.read("zero"), self.plain2) |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1380 | |
R. David Murray | 8d855d8 | 2010-12-21 21:53:37 +0000 | [diff] [blame] | 1381 | 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 Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1387 | |
| 1388 | class TestsWithRandomBinaryFiles(unittest.TestCase): |
| 1389 | def setUp(self): |
| 1390 | datacount = randint(16, 64)*1024 + randint(1, 1024) |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1391 | self.data = b''.join(struct.pack('<f', random()*randint(-1000, 1000)) |
| 1392 | for i in range(datacount)) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1393 | |
| 1394 | # Make a source file with some lines |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1395 | with open(TESTFN, "wb") as fp: |
| 1396 | fp.write(self.data) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1397 | |
| 1398 | def tearDown(self): |
Ezio Melotti | 7643024 | 2009-07-11 18:28:48 +0000 | [diff] [blame] | 1399 | unlink(TESTFN) |
| 1400 | unlink(TESTFN2) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1401 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1402 | def make_test_archive(self, f, compression): |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1403 | # Create the ZIP archive |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1404 | with zipfile.ZipFile(f, "w", compression) as zipfp: |
| 1405 | zipfp.write(TESTFN, "another.name") |
| 1406 | zipfp.write(TESTFN, TESTFN) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1407 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1408 | def zip_test(self, f, compression): |
| 1409 | self.make_test_archive(f, compression) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1410 | |
| 1411 | # Read the ZIP archive |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1412 | 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 Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 1417 | if not isinstance(f, str): |
| 1418 | f.close() |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1419 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1420 | def test_stored(self): |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1421 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1422 | self.zip_test(f, zipfile.ZIP_STORED) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1423 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 1424 | @requires_zlib |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 1425 | def test_deflated(self): |
| 1426 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
| 1427 | self.zip_test(f, zipfile.ZIP_DEFLATED) |
| 1428 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 1429 | @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öwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 1434 | @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 Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1439 | def zip_open_test(self, f, compression): |
| 1440 | self.make_test_archive(f, compression) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1441 | |
| 1442 | # Read the ZIP archive |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1443 | with zipfile.ZipFile(f, "r", compression) as zipfp: |
| 1444 | zipdata1 = [] |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 1445 | 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 Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1451 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1452 | zipdata2 = [] |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 1453 | 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 Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1459 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1460 | testdata1 = b''.join(zipdata1) |
| 1461 | self.assertEqual(len(testdata1), len(self.data)) |
| 1462 | self.assertEqual(testdata1, self.data) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1463 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1464 | testdata2 = b''.join(zipdata2) |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1465 | self.assertEqual(len(testdata2), len(self.data)) |
| 1466 | self.assertEqual(testdata2, self.data) |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 1467 | if not isinstance(f, str): |
| 1468 | f.close() |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1469 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1470 | def test_open_stored(self): |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1471 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1472 | self.zip_open_test(f, zipfile.ZIP_STORED) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1473 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 1474 | @requires_zlib |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 1475 | 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öwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 1479 | @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öwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 1484 | @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 Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1489 | def zip_random_open_test(self, f, compression): |
| 1490 | self.make_test_archive(f, compression) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1491 | |
| 1492 | # Read the ZIP archive |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1493 | with zipfile.ZipFile(f, "r", compression) as zipfp: |
| 1494 | zipdata1 = [] |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 1495 | 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 Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1501 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1502 | testdata = b''.join(zipdata1) |
| 1503 | self.assertEqual(len(testdata), len(self.data)) |
| 1504 | self.assertEqual(testdata, self.data) |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 1505 | if not isinstance(f, str): |
| 1506 | f.close() |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1507 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1508 | def test_random_open_stored(self): |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1509 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1510 | self.zip_random_open_test(f, zipfile.ZIP_STORED) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1511 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 1512 | @requires_zlib |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 1513 | 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öwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 1517 | @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öwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 1522 | @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 Melotti | 7643024 | 2009-07-11 18:28:48 +0000 | [diff] [blame] | 1527 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 1528 | @requires_zlib |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1529 | class TestsWithMultipleOpens(unittest.TestCase): |
| 1530 | def setUp(self): |
| 1531 | # Create the ZIP archive |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1532 | 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 Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1535 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1536 | def test_same_file(self): |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1537 | # 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 Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1539 | with zipfile.ZipFile(TESTFN2, mode="r") as zipf: |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 1540 | 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 Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1545 | self.assertEqual(data1, data2) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1546 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1547 | def test_different_file(self): |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1548 | # 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 Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1550 | with zipfile.ZipFile(TESTFN2, mode="r") as zipf: |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 1551 | 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 Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1556 | self.assertEqual(data1, b'1'*FIXEDTEST_SIZE) |
| 1557 | self.assertEqual(data2, b'2'*FIXEDTEST_SIZE) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1558 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1559 | def test_interleaved(self): |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1560 | # 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 Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1562 | with zipfile.ZipFile(TESTFN2, mode="r") as zipf: |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 1563 | 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 Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1568 | self.assertEqual(data1, b'1'*FIXEDTEST_SIZE) |
| 1569 | self.assertEqual(data2, b'2'*FIXEDTEST_SIZE) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1570 | |
| 1571 | def tearDown(self): |
Ezio Melotti | 7643024 | 2009-07-11 18:28:48 +0000 | [diff] [blame] | 1572 | unlink(TESTFN2) |
| 1573 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1574 | |
Martin v. Löwis | 59e4779 | 2009-01-24 14:10:07 +0000 | [diff] [blame] | 1575 | class TestWithDirectory(unittest.TestCase): |
| 1576 | def setUp(self): |
| 1577 | os.mkdir(TESTFN2) |
| 1578 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1579 | def test_extract_dir(self): |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1580 | with zipfile.ZipFile(findfile("zipdir.zip")) as zipf: |
| 1581 | zipf.extractall(TESTFN2) |
Martin v. Löwis | 59e4779 | 2009-01-24 14:10:07 +0000 | [diff] [blame] | 1582 | 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 Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1586 | def test_bug_6050(self): |
Martin v. Löwis | 70ccd16 | 2009-05-24 19:47:22 +0000 | [diff] [blame] | 1587 | # Extraction should succeed if directories already exist |
| 1588 | os.mkdir(os.path.join(TESTFN2, "a")) |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1589 | self.test_extract_dir() |
Martin v. Löwis | 70ccd16 | 2009-05-24 19:47:22 +0000 | [diff] [blame] | 1590 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1591 | def test_store_dir(self): |
Martin v. Löwis | 59e4779 | 2009-01-24 14:10:07 +0000 | [diff] [blame] | 1592 | 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 Melotti | 7643024 | 2009-07-11 18:28:48 +0000 | [diff] [blame] | 1600 | unlink(TESTFN) |
Martin v. Löwis | 59e4779 | 2009-01-24 14:10:07 +0000 | [diff] [blame] | 1601 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1602 | |
| 1603 | class UniversalNewlineTests(unittest.TestCase): |
| 1604 | def setUp(self): |
Guido van Rossum | 9c62772 | 2007-08-27 18:31:48 +0000 | [diff] [blame] | 1605 | self.line_gen = [bytes("Test of zipfile line %d." % i, "ascii") |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1606 | for i in range(FIXEDTEST_SIZE)] |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1607 | self.seps = ('\r', '\r\n', '\n') |
| 1608 | self.arcdata, self.arcfiles = {}, {} |
| 1609 | for n, s in enumerate(self.seps): |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1610 | b = s.encode("ascii") |
| 1611 | self.arcdata[s] = b.join(self.line_gen) + b |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1612 | self.arcfiles[s] = '%s-%d' % (TESTFN, n) |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1613 | f = open(self.arcfiles[s], "wb") |
| 1614 | try: |
| 1615 | f.write(self.arcdata[s]) |
| 1616 | finally: |
| 1617 | f.close() |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1618 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1619 | def make_test_archive(self, f, compression): |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1620 | # Create the ZIP archive |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1621 | with zipfile.ZipFile(f, "w", compression) as zipfp: |
| 1622 | for fn in self.arcfiles.values(): |
| 1623 | zipfp.write(fn, fn) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1624 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1625 | def read_test(self, f, compression): |
| 1626 | self.make_test_archive(f, compression) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1627 | |
| 1628 | # Read the ZIP archive |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1629 | with zipfile.ZipFile(f, "r") as zipfp: |
| 1630 | for sep, fn in self.arcfiles.items(): |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 1631 | with zipfp.open(fn, "rU") as fp: |
| 1632 | zipdata = fp.read() |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1633 | self.assertEqual(self.arcdata[sep], zipdata) |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 1634 | if not isinstance(f, str): |
| 1635 | f.close() |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1636 | |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 1637 | def readline_read_test(self, f, compression): |
| 1638 | self.make_test_archive(f, compression) |
| 1639 | |
| 1640 | # Read the ZIP archive |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 1641 | 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 Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 1650 | |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 1651 | read = zipopen.read(5) |
| 1652 | if not read: |
| 1653 | break |
| 1654 | data += read |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 1655 | |
| 1656 | self.assertEqual(data, self.arcdata['\n']) |
| 1657 | |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 1658 | if not isinstance(f, str): |
| 1659 | f.close() |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 1660 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1661 | def readline_test(self, f, compression): |
| 1662 | self.make_test_archive(f, compression) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1663 | |
| 1664 | # Read the ZIP archive |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1665 | with zipfile.ZipFile(f, "r") as zipfp: |
| 1666 | for sep, fn in self.arcfiles.items(): |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 1667 | 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 Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1673 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1674 | def readlines_test(self, f, compression): |
| 1675 | self.make_test_archive(f, compression) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1676 | |
| 1677 | # Read the ZIP archive |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1678 | with zipfile.ZipFile(f, "r") as zipfp: |
| 1679 | for sep, fn in self.arcfiles.items(): |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 1680 | with zipfp.open(fn, "rU") as fp: |
| 1681 | ziplines = fp.readlines() |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1682 | for line, zipline in zip(self.line_gen, ziplines): |
| 1683 | self.assertEqual(zipline, line + b'\n') |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 1684 | if not isinstance(f, str): |
| 1685 | f.close() |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1686 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1687 | def iterlines_test(self, f, compression): |
| 1688 | self.make_test_archive(f, compression) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1689 | |
| 1690 | # Read the ZIP archive |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1691 | with zipfile.ZipFile(f, "r") as zipfp: |
| 1692 | for sep, fn in self.arcfiles.items(): |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 1693 | 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 Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1698 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1699 | def test_read_stored(self): |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1700 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1701 | self.read_test(f, zipfile.ZIP_STORED) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1702 | |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 1703 | 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 Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1708 | def test_readline_stored(self): |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1709 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1710 | self.readline_test(f, zipfile.ZIP_STORED) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1711 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1712 | def test_readlines_stored(self): |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1713 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1714 | self.readlines_test(f, zipfile.ZIP_STORED) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1715 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1716 | def test_iterlines_stored(self): |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1717 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1718 | self.iterlines_test(f, zipfile.ZIP_STORED) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1719 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 1720 | @requires_zlib |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1721 | def test_read_deflated(self): |
Ezio Melotti | 7643024 | 2009-07-11 18:28:48 +0000 | [diff] [blame] | 1722 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1723 | self.read_test(f, zipfile.ZIP_DEFLATED) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1724 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 1725 | @requires_zlib |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 1726 | 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 Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 1731 | @requires_zlib |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1732 | def test_readline_deflated(self): |
Ezio Melotti | 7643024 | 2009-07-11 18:28:48 +0000 | [diff] [blame] | 1733 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1734 | self.readline_test(f, zipfile.ZIP_DEFLATED) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1735 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 1736 | @requires_zlib |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1737 | def test_readlines_deflated(self): |
Ezio Melotti | 7643024 | 2009-07-11 18:28:48 +0000 | [diff] [blame] | 1738 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1739 | self.readlines_test(f, zipfile.ZIP_DEFLATED) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1740 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 1741 | @requires_zlib |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1742 | def test_iterlines_deflated(self): |
Ezio Melotti | 7643024 | 2009-07-11 18:28:48 +0000 | [diff] [blame] | 1743 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1744 | self.iterlines_test(f, zipfile.ZIP_DEFLATED) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1745 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 1746 | @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öwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 1771 | @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 Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1796 | def tearDown(self): |
| 1797 | for sep, fn in self.arcfiles.items(): |
| 1798 | os.remove(fn) |
Ezio Melotti | 7643024 | 2009-07-11 18:28:48 +0000 | [diff] [blame] | 1799 | unlink(TESTFN) |
| 1800 | unlink(TESTFN2) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1801 | |
| 1802 | |
Johannes Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 1803 | def test_main(): |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1804 | run_unittest(TestsWithSourceFile, TestZip64InSmallFiles, OtherTests, |
| 1805 | PyZipFileTests, DecryptionTests, TestsWithMultipleOpens, |
Ezio Melotti | 7643024 | 2009-07-11 18:28:48 +0000 | [diff] [blame] | 1806 | TestWithDirectory, UniversalNewlineTests, |
| 1807 | TestsWithRandomBinaryFiles) |
Johannes Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 1808 | |
| 1809 | if __name__ == "__main__": |
| 1810 | test_main() |