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'), |
Gregory P. Smith | b47acbf | 2013-02-01 11:22:43 -0800 | [diff] [blame] | 27 | ('ziptest2dir/ziptest3dir/_ziptest3', 'azsxdcfvgb'), |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 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 |
Gregory P. Smith | b47acbf | 2013-02-01 11:22:43 -0800 | [diff] [blame] | 504 | correctfile = os.path.join(os.getcwd(), fpath) |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 505 | correctfile = os.path.normpath(correctfile) |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 506 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 507 | self.assertEqual(writtenfile, correctfile) |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 508 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 509 | # make sure correct data is in correct file |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 510 | with open(writtenfile, "rb") as f: |
| 511 | self.assertEqual(fdata.encode(), f.read()) |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 512 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 513 | os.remove(writtenfile) |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 514 | |
| 515 | # remove the test file subdirectories |
| 516 | shutil.rmtree(os.path.join(os.getcwd(), 'ziptest2dir')) |
| 517 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 518 | def test_extract_all(self): |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 519 | with zipfile.ZipFile(TESTFN2, "w", zipfile.ZIP_STORED) as zipfp: |
| 520 | for fpath, fdata in SMALL_TEST_DATA: |
| 521 | zipfp.writestr(fpath, fdata) |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 522 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 523 | with zipfile.ZipFile(TESTFN2, "r") as zipfp: |
| 524 | zipfp.extractall() |
| 525 | for fpath, fdata in SMALL_TEST_DATA: |
Gregory P. Smith | b47acbf | 2013-02-01 11:22:43 -0800 | [diff] [blame] | 526 | outfile = os.path.join(os.getcwd(), fpath) |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 527 | |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 528 | with open(outfile, "rb") as f: |
| 529 | self.assertEqual(fdata.encode(), f.read()) |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 530 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 531 | os.remove(outfile) |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 532 | |
| 533 | # remove the test file subdirectories |
| 534 | shutil.rmtree(os.path.join(os.getcwd(), 'ziptest2dir')) |
| 535 | |
Gregory P. Smith | b47acbf | 2013-02-01 11:22:43 -0800 | [diff] [blame] | 536 | def check_file(self, filename, content): |
| 537 | self.assertTrue(os.path.isfile(filename)) |
| 538 | with open(filename, 'rb') as f: |
| 539 | self.assertEqual(f.read(), content) |
| 540 | |
| 541 | def test_extract_hackers_arcnames(self): |
| 542 | hacknames = [ |
| 543 | ('../foo/bar', 'foo/bar'), |
| 544 | ('foo/../bar', 'foo/bar'), |
| 545 | ('foo/../../bar', 'foo/bar'), |
| 546 | ('foo/bar/..', 'foo/bar'), |
| 547 | ('./../foo/bar', 'foo/bar'), |
| 548 | ('/foo/bar', 'foo/bar'), |
| 549 | ('/foo/../bar', 'foo/bar'), |
| 550 | ('/foo/../../bar', 'foo/bar'), |
Gregory P. Smith | b47acbf | 2013-02-01 11:22:43 -0800 | [diff] [blame] | 551 | ] |
| 552 | if os.path.sep == '\\': # Windows. |
| 553 | hacknames.extend([ |
| 554 | (r'..\foo\bar', 'foo/bar'), |
| 555 | (r'..\/foo\/bar', 'foo/bar'), |
| 556 | (r'foo/\..\/bar', 'foo/bar'), |
| 557 | (r'foo\/../\bar', 'foo/bar'), |
| 558 | (r'C:foo/bar', 'foo/bar'), |
| 559 | (r'C:/foo/bar', 'foo/bar'), |
| 560 | (r'C://foo/bar', 'foo/bar'), |
| 561 | (r'C:\foo\bar', 'foo/bar'), |
| 562 | (r'//conky/mountpoint/foo/bar', 'foo/bar'), |
| 563 | (r'\\conky\mountpoint\foo\bar', 'foo/bar'), |
| 564 | (r'///conky/mountpoint/foo/bar', 'conky/mountpoint/foo/bar'), |
| 565 | (r'\\\conky\mountpoint\foo\bar', 'conky/mountpoint/foo/bar'), |
| 566 | (r'//conky//mountpoint/foo/bar', 'conky/mountpoint/foo/bar'), |
| 567 | (r'\\conky\\mountpoint\foo\bar', 'conky/mountpoint/foo/bar'), |
| 568 | (r'//?/C:/foo/bar', 'foo/bar'), |
| 569 | (r'\\?\C:\foo\bar', 'foo/bar'), |
| 570 | (r'C:/../C:/foo/bar', 'C_/foo/bar'), |
| 571 | (r'a:b\c<d>e|f"g?h*i', 'b/c_d_e_f_g_h_i'), |
Serhiy Storchaka | e5e6444 | 2013-02-02 19:50:59 +0200 | [diff] [blame] | 572 | ('../../foo../../ba..r', 'foo/ba..r'), |
| 573 | ]) |
| 574 | else: # Unix |
| 575 | hacknames.extend([ |
| 576 | ('//foo/bar', 'foo/bar'), |
| 577 | ('../../foo../../ba..r', 'foo../ba..r'), |
| 578 | (r'foo/..\bar', r'foo/..\bar'), |
Gregory P. Smith | b47acbf | 2013-02-01 11:22:43 -0800 | [diff] [blame] | 579 | ]) |
| 580 | |
| 581 | for arcname, fixedname in hacknames: |
| 582 | content = b'foobar' + arcname.encode() |
| 583 | with zipfile.ZipFile(TESTFN2, 'w', zipfile.ZIP_STORED) as zipfp: |
Serhiy Storchaka | e5e6444 | 2013-02-02 19:50:59 +0200 | [diff] [blame] | 584 | zinfo = zipfile.ZipInfo() |
| 585 | # preserve backslashes |
| 586 | zinfo.filename = arcname |
| 587 | zinfo.external_attr = 0o600 << 16 |
| 588 | zipfp.writestr(zinfo, content) |
Gregory P. Smith | b47acbf | 2013-02-01 11:22:43 -0800 | [diff] [blame] | 589 | |
Serhiy Storchaka | e5e6444 | 2013-02-02 19:50:59 +0200 | [diff] [blame] | 590 | arcname = arcname.replace(os.sep, "/") |
Gregory P. Smith | b47acbf | 2013-02-01 11:22:43 -0800 | [diff] [blame] | 591 | targetpath = os.path.join('target', 'subdir', 'subsub') |
| 592 | correctfile = os.path.join(targetpath, *fixedname.split('/')) |
| 593 | |
| 594 | with zipfile.ZipFile(TESTFN2, 'r') as zipfp: |
| 595 | writtenfile = zipfp.extract(arcname, targetpath) |
Serhiy Storchaka | e5e6444 | 2013-02-02 19:50:59 +0200 | [diff] [blame] | 596 | self.assertEqual(writtenfile, correctfile, |
| 597 | msg="extract %r" % arcname) |
Gregory P. Smith | b47acbf | 2013-02-01 11:22:43 -0800 | [diff] [blame] | 598 | self.check_file(correctfile, content) |
| 599 | shutil.rmtree('target') |
| 600 | |
| 601 | with zipfile.ZipFile(TESTFN2, 'r') as zipfp: |
| 602 | zipfp.extractall(targetpath) |
| 603 | self.check_file(correctfile, content) |
| 604 | shutil.rmtree('target') |
| 605 | |
| 606 | correctfile = os.path.join(os.getcwd(), *fixedname.split('/')) |
| 607 | |
| 608 | with zipfile.ZipFile(TESTFN2, 'r') as zipfp: |
| 609 | writtenfile = zipfp.extract(arcname) |
Serhiy Storchaka | e5e6444 | 2013-02-02 19:50:59 +0200 | [diff] [blame] | 610 | self.assertEqual(writtenfile, correctfile, |
| 611 | msg="extract %r" % arcname) |
Gregory P. Smith | b47acbf | 2013-02-01 11:22:43 -0800 | [diff] [blame] | 612 | self.check_file(correctfile, content) |
| 613 | shutil.rmtree(fixedname.split('/')[0]) |
| 614 | |
| 615 | with zipfile.ZipFile(TESTFN2, 'r') as zipfp: |
| 616 | zipfp.extractall() |
| 617 | self.check_file(correctfile, content) |
| 618 | shutil.rmtree(fixedname.split('/')[0]) |
| 619 | |
| 620 | os.remove(TESTFN2) |
| 621 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 622 | def test_writestr_compression_stored(self): |
Ronald Oussoren | ee5c885 | 2010-02-07 20:24:02 +0000 | [diff] [blame] | 623 | zipfp = zipfile.ZipFile(TESTFN2, "w") |
| 624 | zipfp.writestr("a.txt", "hello world", compress_type=zipfile.ZIP_STORED) |
Ronald Oussoren | ee5c885 | 2010-02-07 20:24:02 +0000 | [diff] [blame] | 625 | info = zipfp.getinfo('a.txt') |
| 626 | self.assertEqual(info.compress_type, zipfile.ZIP_STORED) |
| 627 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 628 | @requires_zlib |
| 629 | def test_writestr_compression_deflated(self): |
| 630 | zipfp = zipfile.ZipFile(TESTFN2, "w") |
| 631 | zipfp.writestr("b.txt", "hello world", compress_type=zipfile.ZIP_DEFLATED) |
| 632 | info = zipfp.getinfo('b.txt') |
| 633 | self.assertEqual(info.compress_type, zipfile.ZIP_DEFLATED) |
Ronald Oussoren | ee5c885 | 2010-02-07 20:24:02 +0000 | [diff] [blame] | 634 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 635 | @requires_bz2 |
| 636 | def test_writestr_compression_bzip2(self): |
| 637 | zipfp = zipfile.ZipFile(TESTFN2, "w") |
| 638 | zipfp.writestr("b.txt", "hello world", compress_type=zipfile.ZIP_BZIP2) |
| 639 | info = zipfp.getinfo('b.txt') |
| 640 | self.assertEqual(info.compress_type, zipfile.ZIP_BZIP2) |
| 641 | |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 642 | @requires_lzma |
| 643 | def test_writestr_compression_lzma(self): |
| 644 | zipfp = zipfile.ZipFile(TESTFN2, "w") |
| 645 | zipfp.writestr("b.txt", "hello world", compress_type=zipfile.ZIP_LZMA) |
| 646 | info = zipfp.getinfo('b.txt') |
| 647 | self.assertEqual(info.compress_type, zipfile.ZIP_LZMA) |
| 648 | |
Antoine Pitrou | 6e1df8d | 2008-07-25 19:58:18 +0000 | [diff] [blame] | 649 | def zip_test_writestr_permissions(self, f, compression): |
| 650 | # Make sure that writestr creates files with mode 0600, |
| 651 | # when it is passed a name rather than a ZipInfo instance. |
| 652 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 653 | self.make_test_archive(f, compression) |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 654 | with zipfile.ZipFile(f, "r") as zipfp: |
| 655 | zinfo = zipfp.getinfo('strfile') |
| 656 | self.assertEqual(zinfo.external_attr, 0o600 << 16) |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 657 | if not isinstance(f, str): |
| 658 | f.close() |
Antoine Pitrou | 6e1df8d | 2008-07-25 19:58:18 +0000 | [diff] [blame] | 659 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 660 | def test_writestr_permissions(self): |
Antoine Pitrou | 6e1df8d | 2008-07-25 19:58:18 +0000 | [diff] [blame] | 661 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
| 662 | self.zip_test_writestr_permissions(f, zipfile.ZIP_STORED) |
| 663 | |
Gregory P. Smith | b0d9ca9 | 2009-07-07 05:06:04 +0000 | [diff] [blame] | 664 | def test_writestr_extended_local_header_issue1202(self): |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 665 | with zipfile.ZipFile(TESTFN2, 'w') as orig_zip: |
| 666 | for data in 'abcdefghijklmnop': |
| 667 | zinfo = zipfile.ZipInfo(data) |
| 668 | zinfo.flag_bits |= 0x08 # Include an extended local header. |
| 669 | orig_zip.writestr(zinfo, data) |
| 670 | |
| 671 | def test_close(self): |
| 672 | """Check that the zipfile is closed after the 'with' block.""" |
| 673 | with zipfile.ZipFile(TESTFN2, "w") as zipfp: |
| 674 | for fpath, fdata in SMALL_TEST_DATA: |
| 675 | zipfp.writestr(fpath, fdata) |
| 676 | self.assertTrue(zipfp.fp is not None, 'zipfp is not open') |
| 677 | self.assertTrue(zipfp.fp is None, 'zipfp is not closed') |
| 678 | |
| 679 | with zipfile.ZipFile(TESTFN2, "r") as zipfp: |
| 680 | self.assertTrue(zipfp.fp is not None, 'zipfp is not open') |
| 681 | self.assertTrue(zipfp.fp is None, 'zipfp is not closed') |
| 682 | |
| 683 | def test_close_on_exception(self): |
| 684 | """Check that the zipfile is closed if an exception is raised in the |
| 685 | 'with' block.""" |
| 686 | with zipfile.ZipFile(TESTFN2, "w") as zipfp: |
| 687 | for fpath, fdata in SMALL_TEST_DATA: |
| 688 | zipfp.writestr(fpath, fdata) |
| 689 | |
| 690 | try: |
| 691 | with zipfile.ZipFile(TESTFN2, "r") as zipfp2: |
Georg Brandl | 4d54088 | 2010-10-28 06:42:33 +0000 | [diff] [blame] | 692 | raise zipfile.BadZipFile() |
| 693 | except zipfile.BadZipFile: |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 694 | self.assertTrue(zipfp2.fp is None, 'zipfp is not closed') |
Gregory P. Smith | b0d9ca9 | 2009-07-07 05:06:04 +0000 | [diff] [blame] | 695 | |
Senthil Kumaran | 29fa9d4 | 2011-10-20 01:46:00 +0800 | [diff] [blame] | 696 | def test_add_file_before_1980(self): |
| 697 | # Set atime and mtime to 1970-01-01 |
| 698 | os.utime(TESTFN, (0, 0)) |
| 699 | with zipfile.ZipFile(TESTFN2, "w") as zipfp: |
| 700 | self.assertRaises(ValueError, zipfp.write, TESTFN) |
| 701 | |
| 702 | |
Senthil Kumaran | 7e3062b | 2011-10-20 01:52:41 +0800 | [diff] [blame] | 703 | |
| 704 | |
| 705 | |
| 706 | |
| 707 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 708 | @requires_zlib |
Georg Brandl | 5ba11de | 2011-01-01 10:09:32 +0000 | [diff] [blame] | 709 | def test_unicode_filenames(self): |
Georg Brandl | 04480a8 | 2011-01-01 10:42:31 +0000 | [diff] [blame] | 710 | # bug #10801 |
| 711 | fname = findfile('zip_cp437_header.zip') |
Georg Brandl | 5ba11de | 2011-01-01 10:09:32 +0000 | [diff] [blame] | 712 | with zipfile.ZipFile(fname) as zipfp: |
Georg Brandl | 04480a8 | 2011-01-01 10:42:31 +0000 | [diff] [blame] | 713 | for name in zipfp.namelist(): |
| 714 | zipfp.open(name).close() |
Georg Brandl | 5ba11de | 2011-01-01 10:09:32 +0000 | [diff] [blame] | 715 | |
Johannes Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 716 | def tearDown(self): |
Ezio Melotti | 7643024 | 2009-07-11 18:28:48 +0000 | [diff] [blame] | 717 | unlink(TESTFN) |
| 718 | unlink(TESTFN2) |
| 719 | |
Johannes Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 720 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 721 | class TestZip64InSmallFiles(unittest.TestCase): |
| 722 | # These tests test the ZIP64 functionality without using large files, |
| 723 | # see test_zipfile64 for proper tests. |
| 724 | |
| 725 | def setUp(self): |
| 726 | self._limit = zipfile.ZIP64_LIMIT |
| 727 | zipfile.ZIP64_LIMIT = 5 |
| 728 | |
Guido van Rossum | 9c62772 | 2007-08-27 18:31:48 +0000 | [diff] [blame] | 729 | line_gen = (bytes("Test of zipfile line %d." % i, "ascii") |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 730 | for i in range(0, FIXEDTEST_SIZE)) |
| 731 | self.data = b'\n'.join(line_gen) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 732 | |
| 733 | # Make a source file with some lines |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 734 | with open(TESTFN, "wb") as fp: |
| 735 | fp.write(self.data) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 736 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 737 | def large_file_exception_test(self, f, compression): |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 738 | with zipfile.ZipFile(f, "w", compression) as zipfp: |
| 739 | self.assertRaises(zipfile.LargeZipFile, |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 740 | zipfp.write, TESTFN, "another.name") |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 741 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 742 | def large_file_exception_test2(self, f, compression): |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 743 | with zipfile.ZipFile(f, "w", compression) as zipfp: |
| 744 | self.assertRaises(zipfile.LargeZipFile, |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 745 | zipfp.writestr, "another.name", self.data) |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 746 | if not isinstance(f, str): |
| 747 | f.close() |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 748 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 749 | def test_large_file_exception(self): |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 750 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 751 | self.large_file_exception_test(f, zipfile.ZIP_STORED) |
| 752 | self.large_file_exception_test2(f, zipfile.ZIP_STORED) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 753 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 754 | def zip_test(self, f, compression): |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 755 | # Create the ZIP archive |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 756 | with zipfile.ZipFile(f, "w", compression, allowZip64=True) as zipfp: |
| 757 | zipfp.write(TESTFN, "another.name") |
| 758 | zipfp.write(TESTFN, TESTFN) |
| 759 | zipfp.writestr("strfile", self.data) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 760 | |
| 761 | # Read the ZIP archive |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 762 | with zipfile.ZipFile(f, "r", compression) as zipfp: |
| 763 | self.assertEqual(zipfp.read(TESTFN), self.data) |
| 764 | self.assertEqual(zipfp.read("another.name"), self.data) |
| 765 | self.assertEqual(zipfp.read("strfile"), self.data) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 766 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 767 | # Print the ZIP directory |
| 768 | fp = io.StringIO() |
| 769 | zipfp.printdir(fp) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 770 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 771 | directory = fp.getvalue() |
| 772 | lines = directory.splitlines() |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 773 | self.assertEqual(len(lines), 4) # Number of files + header |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 774 | |
Benjamin Peterson | 577473f | 2010-01-19 00:09:57 +0000 | [diff] [blame] | 775 | self.assertIn('File Name', lines[0]) |
| 776 | self.assertIn('Modified', lines[0]) |
| 777 | self.assertIn('Size', lines[0]) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 778 | |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 779 | fn, date, time_, size = lines[1].split() |
| 780 | self.assertEqual(fn, 'another.name') |
| 781 | self.assertTrue(time.strptime(date, '%Y-%m-%d')) |
| 782 | self.assertTrue(time.strptime(time_, '%H:%M:%S')) |
| 783 | self.assertEqual(size, str(len(self.data))) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 784 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 785 | # Check the namelist |
| 786 | names = zipfp.namelist() |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 787 | self.assertEqual(len(names), 3) |
Benjamin Peterson | 577473f | 2010-01-19 00:09:57 +0000 | [diff] [blame] | 788 | self.assertIn(TESTFN, names) |
| 789 | self.assertIn("another.name", names) |
| 790 | self.assertIn("strfile", names) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 791 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 792 | # Check infolist |
| 793 | infos = zipfp.infolist() |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 794 | names = [i.filename for i in infos] |
| 795 | self.assertEqual(len(names), 3) |
Benjamin Peterson | 577473f | 2010-01-19 00:09:57 +0000 | [diff] [blame] | 796 | self.assertIn(TESTFN, names) |
| 797 | self.assertIn("another.name", names) |
| 798 | self.assertIn("strfile", names) |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 799 | for i in infos: |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 800 | self.assertEqual(i.file_size, len(self.data)) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 801 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 802 | # check getinfo |
| 803 | for nm in (TESTFN, "another.name", "strfile"): |
| 804 | info = zipfp.getinfo(nm) |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 805 | self.assertEqual(info.filename, nm) |
| 806 | self.assertEqual(info.file_size, len(self.data)) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 807 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 808 | # Check that testzip doesn't raise an exception |
| 809 | zipfp.testzip() |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 810 | if not isinstance(f, str): |
| 811 | f.close() |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 812 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 813 | def test_stored(self): |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 814 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 815 | self.zip_test(f, zipfile.ZIP_STORED) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 816 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 817 | @requires_zlib |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 818 | def test_deflated(self): |
Ezio Melotti | 7643024 | 2009-07-11 18:28:48 +0000 | [diff] [blame] | 819 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 820 | self.zip_test(f, zipfile.ZIP_DEFLATED) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 821 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 822 | @requires_bz2 |
| 823 | def test_bzip2(self): |
| 824 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
| 825 | self.zip_test(f, zipfile.ZIP_BZIP2) |
| 826 | |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 827 | @requires_lzma |
| 828 | def test_lzma(self): |
| 829 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
| 830 | self.zip_test(f, zipfile.ZIP_LZMA) |
| 831 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 832 | def test_absolute_arcnames(self): |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 833 | with zipfile.ZipFile(TESTFN2, "w", zipfile.ZIP_STORED, |
| 834 | allowZip64=True) as zipfp: |
| 835 | zipfp.write(TESTFN, "/absolute") |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 836 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 837 | with zipfile.ZipFile(TESTFN2, "r", zipfile.ZIP_STORED) as zipfp: |
| 838 | self.assertEqual(zipfp.namelist(), ["absolute"]) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 839 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 840 | def tearDown(self): |
| 841 | zipfile.ZIP64_LIMIT = self._limit |
Ezio Melotti | 7643024 | 2009-07-11 18:28:48 +0000 | [diff] [blame] | 842 | unlink(TESTFN) |
| 843 | unlink(TESTFN2) |
| 844 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 845 | |
| 846 | class PyZipFileTests(unittest.TestCase): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 847 | def test_write_pyfile(self): |
Łukasz Langa | a9f054b | 2010-11-23 00:15:02 +0000 | [diff] [blame] | 848 | with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp: |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 849 | fn = __file__ |
| 850 | if fn.endswith('.pyc') or fn.endswith('.pyo'): |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 851 | path_split = fn.split(os.sep) |
| 852 | if os.altsep is not None: |
| 853 | path_split.extend(fn.split(os.altsep)) |
| 854 | if '__pycache__' in path_split: |
| 855 | fn = imp.source_from_cache(fn) |
| 856 | else: |
| 857 | fn = fn[:-1] |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 858 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 859 | zipfp.writepy(fn) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 860 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 861 | bn = os.path.basename(fn) |
Benjamin Peterson | 577473f | 2010-01-19 00:09:57 +0000 | [diff] [blame] | 862 | self.assertNotIn(bn, zipfp.namelist()) |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 863 | self.assertTrue(bn + 'o' in zipfp.namelist() or |
| 864 | bn + 'c' in zipfp.namelist()) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 865 | |
Łukasz Langa | a9f054b | 2010-11-23 00:15:02 +0000 | [diff] [blame] | 866 | with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp: |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 867 | fn = __file__ |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 868 | if fn.endswith(('.pyc', '.pyo')): |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 869 | fn = fn[:-1] |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 870 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 871 | zipfp.writepy(fn, "testpackage") |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 872 | |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 873 | bn = "%s/%s" % ("testpackage", os.path.basename(fn)) |
Benjamin Peterson | 577473f | 2010-01-19 00:09:57 +0000 | [diff] [blame] | 874 | self.assertNotIn(bn, zipfp.namelist()) |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 875 | self.assertTrue(bn + 'o' in zipfp.namelist() or |
| 876 | bn + 'c' in zipfp.namelist()) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 877 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 878 | def test_write_python_package(self): |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 879 | import email |
| 880 | packagedir = os.path.dirname(email.__file__) |
| 881 | |
Łukasz Langa | a9f054b | 2010-11-23 00:15:02 +0000 | [diff] [blame] | 882 | with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp: |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 883 | zipfp.writepy(packagedir) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 884 | |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 885 | # Check for a couple of modules at different levels of the |
| 886 | # hierarchy |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 887 | names = zipfp.namelist() |
| 888 | self.assertTrue('email/__init__.pyo' in names or |
| 889 | 'email/__init__.pyc' in names) |
| 890 | self.assertTrue('email/mime/text.pyo' in names or |
| 891 | 'email/mime/text.pyc' in names) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 892 | |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 893 | def test_write_with_optimization(self): |
| 894 | import email |
| 895 | packagedir = os.path.dirname(email.__file__) |
| 896 | # use .pyc if running test in optimization mode, |
| 897 | # use .pyo if running test in debug mode |
| 898 | optlevel = 1 if __debug__ else 0 |
| 899 | ext = '.pyo' if optlevel == 1 else '.pyc' |
| 900 | |
| 901 | with TemporaryFile() as t, \ |
| 902 | zipfile.PyZipFile(t, "w", optimize=optlevel) as zipfp: |
| 903 | zipfp.writepy(packagedir) |
| 904 | |
| 905 | names = zipfp.namelist() |
| 906 | self.assertIn('email/__init__' + ext, names) |
| 907 | self.assertIn('email/mime/text' + ext, names) |
| 908 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 909 | def test_write_python_directory(self): |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 910 | os.mkdir(TESTFN2) |
| 911 | try: |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 912 | with open(os.path.join(TESTFN2, "mod1.py"), "w") as fp: |
| 913 | fp.write("print(42)\n") |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 914 | |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 915 | with open(os.path.join(TESTFN2, "mod2.py"), "w") as fp: |
| 916 | fp.write("print(42 * 42)\n") |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 917 | |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 918 | with open(os.path.join(TESTFN2, "mod2.txt"), "w") as fp: |
| 919 | fp.write("bla bla bla\n") |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 920 | |
Łukasz Langa | a9f054b | 2010-11-23 00:15:02 +0000 | [diff] [blame] | 921 | with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp: |
| 922 | zipfp.writepy(TESTFN2) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 923 | |
Łukasz Langa | a9f054b | 2010-11-23 00:15:02 +0000 | [diff] [blame] | 924 | names = zipfp.namelist() |
| 925 | self.assertTrue('mod1.pyc' in names or 'mod1.pyo' in names) |
| 926 | self.assertTrue('mod2.pyc' in names or 'mod2.pyo' in names) |
| 927 | self.assertNotIn('mod2.txt', names) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 928 | |
| 929 | finally: |
| 930 | shutil.rmtree(TESTFN2) |
| 931 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 932 | def test_write_non_pyfile(self): |
Łukasz Langa | a9f054b | 2010-11-23 00:15:02 +0000 | [diff] [blame] | 933 | with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp: |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 934 | with open(TESTFN, 'w') as f: |
| 935 | f.write('most definitely not a python file') |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 936 | self.assertRaises(RuntimeError, zipfp.writepy, TESTFN) |
| 937 | os.remove(TESTFN) |
| 938 | |
Serhiy Storchaka | 45c4375 | 2013-01-29 20:10:28 +0200 | [diff] [blame] | 939 | def test_write_pyfile_bad_syntax(self): |
| 940 | os.mkdir(TESTFN2) |
| 941 | try: |
| 942 | with open(os.path.join(TESTFN2, "mod1.py"), "w") as fp: |
| 943 | fp.write("Bad syntax in python file\n") |
| 944 | |
| 945 | with TemporaryFile() as t, zipfile.PyZipFile(t, "w") as zipfp: |
| 946 | # syntax errors are printed to stdout |
| 947 | with captured_stdout() as s: |
| 948 | zipfp.writepy(os.path.join(TESTFN2, "mod1.py")) |
| 949 | |
| 950 | self.assertIn("SyntaxError", s.getvalue()) |
| 951 | |
| 952 | # as it will not have compiled the python file, it will |
| 953 | # include the .py file not .pyc or .pyo |
| 954 | names = zipfp.namelist() |
| 955 | self.assertIn('mod1.py', names) |
| 956 | self.assertNotIn('mod1.pyc', names) |
| 957 | self.assertNotIn('mod1.pyo', names) |
| 958 | |
| 959 | finally: |
| 960 | shutil.rmtree(TESTFN2) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 961 | |
Johannes Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 962 | class OtherTests(unittest.TestCase): |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 963 | zips_with_bad_crc = { |
| 964 | zipfile.ZIP_STORED: ( |
| 965 | b'PK\003\004\024\0\0\0\0\0 \213\212;:r' |
| 966 | b'\253\377\f\0\0\0\f\0\0\0\005\0\0\000af' |
| 967 | b'ilehello,AworldP' |
| 968 | b'K\001\002\024\003\024\0\0\0\0\0 \213\212;:' |
| 969 | b'r\253\377\f\0\0\0\f\0\0\0\005\0\0\0\0' |
| 970 | b'\0\0\0\0\0\0\0\200\001\0\0\0\000afi' |
| 971 | b'lePK\005\006\0\0\0\0\001\0\001\0003\000' |
| 972 | b'\0\0/\0\0\0\0\0'), |
| 973 | zipfile.ZIP_DEFLATED: ( |
| 974 | b'PK\x03\x04\x14\x00\x00\x00\x08\x00n}\x0c=FA' |
| 975 | b'KE\x10\x00\x00\x00n\x00\x00\x00\x05\x00\x00\x00af' |
| 976 | b'ile\xcbH\xcd\xc9\xc9W(\xcf/\xcaI\xc9\xa0' |
| 977 | b'=\x13\x00PK\x01\x02\x14\x03\x14\x00\x00\x00\x08\x00n' |
| 978 | b'}\x0c=FAKE\x10\x00\x00\x00n\x00\x00\x00\x05' |
| 979 | b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x01\x00\x00\x00' |
| 980 | b'\x00afilePK\x05\x06\x00\x00\x00\x00\x01\x00' |
| 981 | 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] | 982 | zipfile.ZIP_BZIP2: ( |
| 983 | b'PK\x03\x04\x14\x03\x00\x00\x0c\x00nu\x0c=FA' |
| 984 | b'KE8\x00\x00\x00n\x00\x00\x00\x05\x00\x00\x00af' |
| 985 | b'ileBZh91AY&SY\xd4\xa8\xca' |
| 986 | b'\x7f\x00\x00\x0f\x11\x80@\x00\x06D\x90\x80 \x00 \xa5' |
| 987 | b'P\xd9!\x03\x03\x13\x13\x13\x89\xa9\xa9\xc2u5:\x9f' |
| 988 | b'\x8b\xb9"\x9c(HjTe?\x80PK\x01\x02\x14' |
| 989 | b'\x03\x14\x03\x00\x00\x0c\x00nu\x0c=FAKE8' |
| 990 | b'\x00\x00\x00n\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x00' |
| 991 | b'\x00 \x80\x80\x81\x00\x00\x00\x00afilePK' |
| 992 | b'\x05\x06\x00\x00\x00\x00\x01\x00\x01\x003\x00\x00\x00[\x00' |
| 993 | b'\x00\x00\x00\x00'), |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 994 | zipfile.ZIP_LZMA: ( |
| 995 | b'PK\x03\x04\x14\x03\x00\x00\x0e\x00nu\x0c=FA' |
| 996 | b'KE\x1b\x00\x00\x00n\x00\x00\x00\x05\x00\x00\x00af' |
| 997 | b'ile\t\x04\x05\x00]\x00\x00\x00\x04\x004\x19I' |
| 998 | b'\xee\x8d\xe9\x17\x89:3`\tq!.8\x00PK' |
| 999 | b'\x01\x02\x14\x03\x14\x03\x00\x00\x0e\x00nu\x0c=FA' |
| 1000 | b'KE\x1b\x00\x00\x00n\x00\x00\x00\x05\x00\x00\x00\x00\x00' |
| 1001 | b'\x00\x00\x00\x00 \x80\x80\x81\x00\x00\x00\x00afil' |
| 1002 | b'ePK\x05\x06\x00\x00\x00\x00\x01\x00\x01\x003\x00\x00' |
| 1003 | b'\x00>\x00\x00\x00\x00\x00'), |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 1004 | } |
| 1005 | |
Martin v. Löwis | d099b56 | 2012-05-01 14:08:22 +0200 | [diff] [blame] | 1006 | def test_unsupported_version(self): |
| 1007 | # File has an extract_version of 120 |
| 1008 | data = (b'PK\x03\x04x\x00\x00\x00\x00\x00!p\xa1@\x00\x00\x00\x00\x00\x00' |
| 1009 | b'\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00xPK\x01\x02x\x03x\x00\x00\x00\x00' |
| 1010 | b'\x00!p\xa1@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00' |
| 1011 | b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x01\x00\x00\x00\x00xPK\x05\x06' |
| 1012 | b'\x00\x00\x00\x00\x01\x00\x01\x00/\x00\x00\x00\x1f\x00\x00\x00\x00\x00') |
| 1013 | self.assertRaises(NotImplementedError, zipfile.ZipFile, |
| 1014 | io.BytesIO(data), 'r') |
| 1015 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1016 | def test_unicode_filenames(self): |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1017 | with zipfile.ZipFile(TESTFN, "w") as zf: |
| 1018 | zf.writestr("foo.txt", "Test for unicode filename") |
| 1019 | zf.writestr("\xf6.txt", "Test for unicode filename") |
Ezio Melotti | e961593 | 2010-01-24 19:26:24 +0000 | [diff] [blame] | 1020 | self.assertIsInstance(zf.infolist()[0].filename, str) |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1021 | |
| 1022 | with zipfile.ZipFile(TESTFN, "r") as zf: |
| 1023 | self.assertEqual(zf.filelist[0].filename, "foo.txt") |
| 1024 | self.assertEqual(zf.filelist[1].filename, "\xf6.txt") |
Martin v. Löwis | 8570f6a | 2008-05-05 17:44:38 +0000 | [diff] [blame] | 1025 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1026 | def test_create_non_existent_file_for_append(self): |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1027 | if os.path.exists(TESTFN): |
| 1028 | os.unlink(TESTFN) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1029 | |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1030 | filename = 'testfile.txt' |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1031 | content = b'hello, world. this is some content.' |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1032 | |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1033 | try: |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1034 | with zipfile.ZipFile(TESTFN, 'a') as zf: |
| 1035 | zf.writestr(filename, content) |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1036 | except IOError: |
| 1037 | self.fail('Could not append data to a non-existent zip file.') |
| 1038 | |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 1039 | self.assertTrue(os.path.exists(TESTFN)) |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1040 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1041 | with zipfile.ZipFile(TESTFN, 'r') as zf: |
| 1042 | self.assertEqual(zf.read(filename), content) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1043 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1044 | def test_close_erroneous_file(self): |
Johannes Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 1045 | # This test checks that the ZipFile constructor closes the file object |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1046 | # it opens if there's an error in the file. If it doesn't, the |
| 1047 | # traceback holds a reference to the ZipFile object and, indirectly, |
| 1048 | # the file object. |
Johannes Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 1049 | # On Windows, this causes the os.unlink() call to fail because the |
| 1050 | # underlying file is still open. This is SF bug #412214. |
| 1051 | # |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1052 | with open(TESTFN, "w") as fp: |
| 1053 | fp.write("this is not a legal zip file\n") |
Johannes Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 1054 | try: |
| 1055 | zf = zipfile.ZipFile(TESTFN) |
Georg Brandl | 4d54088 | 2010-10-28 06:42:33 +0000 | [diff] [blame] | 1056 | except zipfile.BadZipFile: |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1057 | pass |
| 1058 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1059 | def test_is_zip_erroneous_file(self): |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1060 | """Check that is_zipfile() correctly identifies non-zip files.""" |
Antoine Pitrou | db5fe66 | 2008-12-27 15:50:40 +0000 | [diff] [blame] | 1061 | # - passing a filename |
| 1062 | with open(TESTFN, "w") as fp: |
| 1063 | fp.write("this is not a legal zip file\n") |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1064 | chk = zipfile.is_zipfile(TESTFN) |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1065 | self.assertFalse(chk) |
Antoine Pitrou | db5fe66 | 2008-12-27 15:50:40 +0000 | [diff] [blame] | 1066 | # - passing a file object |
| 1067 | with open(TESTFN, "rb") as fp: |
| 1068 | chk = zipfile.is_zipfile(fp) |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 1069 | self.assertTrue(not chk) |
Antoine Pitrou | db5fe66 | 2008-12-27 15:50:40 +0000 | [diff] [blame] | 1070 | # - passing a file-like object |
| 1071 | fp = io.BytesIO() |
| 1072 | fp.write(b"this is not a legal zip file\n") |
| 1073 | chk = zipfile.is_zipfile(fp) |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 1074 | self.assertTrue(not chk) |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1075 | fp.seek(0, 0) |
Antoine Pitrou | db5fe66 | 2008-12-27 15:50:40 +0000 | [diff] [blame] | 1076 | chk = zipfile.is_zipfile(fp) |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 1077 | self.assertTrue(not chk) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1078 | |
Serhiy Storchaka | d2b1527 | 2013-01-31 15:27:07 +0200 | [diff] [blame] | 1079 | def test_damaged_zipfile(self): |
| 1080 | """Check that zipfiles with missing bytes at the end raise BadZipFile.""" |
| 1081 | # - Create a valid zip file |
| 1082 | fp = io.BytesIO() |
| 1083 | with zipfile.ZipFile(fp, mode="w") as zipf: |
| 1084 | zipf.writestr("foo.txt", b"O, for a Muse of Fire!") |
| 1085 | zipfiledata = fp.getvalue() |
| 1086 | |
| 1087 | # - Now create copies of it missing the last N bytes and make sure |
| 1088 | # a BadZipFile exception is raised when we try to open it |
| 1089 | for N in range(len(zipfiledata)): |
| 1090 | fp = io.BytesIO(zipfiledata[:N]) |
| 1091 | self.assertRaises(zipfile.BadZipFile, zipfile.ZipFile, fp) |
| 1092 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1093 | def test_is_zip_valid_file(self): |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1094 | """Check that is_zipfile() correctly identifies zip files.""" |
Antoine Pitrou | db5fe66 | 2008-12-27 15:50:40 +0000 | [diff] [blame] | 1095 | # - passing a filename |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1096 | with zipfile.ZipFile(TESTFN, mode="w") as zipf: |
| 1097 | zipf.writestr("foo.txt", b"O, for a Muse of Fire!") |
| 1098 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1099 | chk = zipfile.is_zipfile(TESTFN) |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 1100 | self.assertTrue(chk) |
Antoine Pitrou | db5fe66 | 2008-12-27 15:50:40 +0000 | [diff] [blame] | 1101 | # - passing a file object |
| 1102 | with open(TESTFN, "rb") as fp: |
| 1103 | chk = zipfile.is_zipfile(fp) |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 1104 | self.assertTrue(chk) |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1105 | fp.seek(0, 0) |
Antoine Pitrou | db5fe66 | 2008-12-27 15:50:40 +0000 | [diff] [blame] | 1106 | zip_contents = fp.read() |
| 1107 | # - passing a file-like object |
| 1108 | fp = io.BytesIO() |
| 1109 | fp.write(zip_contents) |
| 1110 | chk = zipfile.is_zipfile(fp) |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 1111 | self.assertTrue(chk) |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1112 | fp.seek(0, 0) |
Antoine Pitrou | db5fe66 | 2008-12-27 15:50:40 +0000 | [diff] [blame] | 1113 | chk = zipfile.is_zipfile(fp) |
Benjamin Peterson | c9c0f20 | 2009-06-30 23:06:06 +0000 | [diff] [blame] | 1114 | self.assertTrue(chk) |
Johannes Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 1115 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1116 | def test_non_existent_file_raises_IOError(self): |
Johannes Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 1117 | # make sure we don't raise an AttributeError when a partially-constructed |
| 1118 | # ZipFile instance is finalized; this tests for regression on SF tracker |
| 1119 | # bug #403871. |
| 1120 | |
| 1121 | # The bug we're testing for caused an AttributeError to be raised |
| 1122 | # when a ZipFile instance was created for a file that did not |
| 1123 | # exist; the .fp member was not initialized but was needed by the |
| 1124 | # __del__() method. Since the AttributeError is in the __del__(), |
| 1125 | # it is ignored, but the user should be sufficiently annoyed by |
| 1126 | # the message on the output that regression will be noticed |
| 1127 | # quickly. |
| 1128 | self.assertRaises(IOError, zipfile.ZipFile, TESTFN) |
| 1129 | |
Amaury Forgeot d'Arc | bc34780 | 2009-07-28 22:18:57 +0000 | [diff] [blame] | 1130 | def test_empty_file_raises_BadZipFile(self): |
| 1131 | f = open(TESTFN, 'w') |
| 1132 | f.close() |
Georg Brandl | 4d54088 | 2010-10-28 06:42:33 +0000 | [diff] [blame] | 1133 | self.assertRaises(zipfile.BadZipFile, zipfile.ZipFile, TESTFN) |
Amaury Forgeot d'Arc | bc34780 | 2009-07-28 22:18:57 +0000 | [diff] [blame] | 1134 | |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1135 | with open(TESTFN, 'w') as fp: |
| 1136 | fp.write("short file") |
Georg Brandl | 4d54088 | 2010-10-28 06:42:33 +0000 | [diff] [blame] | 1137 | self.assertRaises(zipfile.BadZipFile, zipfile.ZipFile, TESTFN) |
Amaury Forgeot d'Arc | bc34780 | 2009-07-28 22:18:57 +0000 | [diff] [blame] | 1138 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1139 | def test_closed_zip_raises_RuntimeError(self): |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1140 | """Verify that testzip() doesn't swallow inappropriate exceptions.""" |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1141 | data = io.BytesIO() |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1142 | with zipfile.ZipFile(data, mode="w") as zipf: |
| 1143 | zipf.writestr("foo.txt", "O, for a Muse of Fire!") |
Johannes Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 1144 | |
Andrew Svetlov | 737fb89 | 2012-12-18 21:14:22 +0200 | [diff] [blame] | 1145 | # This is correct; calling .read on a closed ZipFile should raise |
Johannes Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 1146 | # a RuntimeError, and so should calling .testzip. An earlier |
| 1147 | # version of .testzip would swallow this exception (and any other) |
| 1148 | # and report that the first file in the archive was corrupt. |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1149 | self.assertRaises(RuntimeError, zipf.read, "foo.txt") |
| 1150 | self.assertRaises(RuntimeError, zipf.open, "foo.txt") |
Johannes Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 1151 | self.assertRaises(RuntimeError, zipf.testzip) |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1152 | self.assertRaises(RuntimeError, zipf.writestr, "bogus.txt", "bogus") |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 1153 | with open(TESTFN, 'w') as f: |
| 1154 | f.write('zipfile test data') |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1155 | self.assertRaises(RuntimeError, zipf.write, TESTFN) |
| 1156 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1157 | def test_bad_constructor_mode(self): |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1158 | """Check that bad modes passed to ZipFile constructor are caught.""" |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1159 | self.assertRaises(RuntimeError, zipfile.ZipFile, TESTFN, "q") |
| 1160 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1161 | def test_bad_open_mode(self): |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1162 | """Check that bad modes passed to ZipFile.open are caught.""" |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1163 | with zipfile.ZipFile(TESTFN, mode="w") as zipf: |
| 1164 | zipf.writestr("foo.txt", "O, for a Muse of Fire!") |
| 1165 | |
| 1166 | with zipfile.ZipFile(TESTFN, mode="r") as zipf: |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1167 | # read the data to make sure the file is there |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1168 | zipf.read("foo.txt") |
| 1169 | self.assertRaises(RuntimeError, zipf.open, "foo.txt", "q") |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1170 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1171 | def test_read0(self): |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1172 | """Check that calling read(0) on a ZipExtFile object returns an empty |
| 1173 | string and doesn't advance file pointer.""" |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1174 | with zipfile.ZipFile(TESTFN, mode="w") as zipf: |
| 1175 | zipf.writestr("foo.txt", "O, for a Muse of Fire!") |
| 1176 | # read the data to make sure the file is there |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 1177 | with zipf.open("foo.txt") as f: |
| 1178 | for i in range(FIXEDTEST_SIZE): |
| 1179 | self.assertEqual(f.read(0), b'') |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1180 | |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 1181 | self.assertEqual(f.read(), b"O, for a Muse of Fire!") |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1182 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1183 | def test_open_non_existent_item(self): |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1184 | """Check that attempting to call open() for an item that doesn't |
| 1185 | exist in the archive raises a RuntimeError.""" |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1186 | with zipfile.ZipFile(TESTFN, mode="w") as zipf: |
| 1187 | self.assertRaises(KeyError, zipf.open, "foo.txt", "r") |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1188 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1189 | def test_bad_compression_mode(self): |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1190 | """Check that bad compression methods passed to ZipFile.open are |
| 1191 | caught.""" |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1192 | self.assertRaises(RuntimeError, zipfile.ZipFile, TESTFN, "w", -1) |
| 1193 | |
Martin v. Löwis | b3260f0 | 2012-05-01 08:38:01 +0200 | [diff] [blame] | 1194 | def test_unsupported_compression(self): |
| 1195 | # data is declared as shrunk, but actually deflated |
| 1196 | data = (b'PK\x03\x04.\x00\x00\x00\x01\x00\xe4C\xa1@\x00\x00\x00' |
| 1197 | b'\x00\x02\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00x\x03\x00PK\x01' |
| 1198 | b'\x02.\x03.\x00\x00\x00\x01\x00\xe4C\xa1@\x00\x00\x00\x00\x02\x00\x00' |
| 1199 | b'\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' |
| 1200 | b'\x80\x01\x00\x00\x00\x00xPK\x05\x06\x00\x00\x00\x00\x01\x00\x01\x00' |
| 1201 | b'/\x00\x00\x00!\x00\x00\x00\x00\x00') |
| 1202 | with zipfile.ZipFile(io.BytesIO(data), 'r') as zipf: |
| 1203 | self.assertRaises(NotImplementedError, zipf.open, 'x') |
| 1204 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1205 | def test_null_byte_in_filename(self): |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1206 | """Check that a filename containing a null byte is properly |
| 1207 | terminated.""" |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1208 | with zipfile.ZipFile(TESTFN, mode="w") as zipf: |
| 1209 | zipf.writestr("foo.txt\x00qqq", b"O, for a Muse of Fire!") |
| 1210 | self.assertEqual(zipf.namelist(), ['foo.txt']) |
Johannes Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 1211 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1212 | def test_struct_sizes(self): |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1213 | """Check that ZIP internal structure sizes are calculated correctly.""" |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 1214 | self.assertEqual(zipfile.sizeEndCentDir, 22) |
| 1215 | self.assertEqual(zipfile.sizeCentralDir, 46) |
| 1216 | self.assertEqual(zipfile.sizeEndCentDir64, 56) |
| 1217 | self.assertEqual(zipfile.sizeEndCentDir64Locator, 20) |
| 1218 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1219 | def test_comments(self): |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1220 | """Check that comments on the archive are handled properly.""" |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 1221 | |
| 1222 | # check default comment is empty |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1223 | with zipfile.ZipFile(TESTFN, mode="w") as zipf: |
| 1224 | self.assertEqual(zipf.comment, b'') |
| 1225 | zipf.writestr("foo.txt", "O, for a Muse of Fire!") |
| 1226 | |
| 1227 | with zipfile.ZipFile(TESTFN, mode="r") as zipfr: |
| 1228 | self.assertEqual(zipfr.comment, b'') |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 1229 | |
| 1230 | # check a simple short comment |
| 1231 | 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] | 1232 | with zipfile.ZipFile(TESTFN, mode="w") as zipf: |
| 1233 | zipf.comment = comment |
| 1234 | zipf.writestr("foo.txt", "O, for a Muse of Fire!") |
| 1235 | with zipfile.ZipFile(TESTFN, mode="r") as zipfr: |
| 1236 | self.assertEqual(zipf.comment, comment) |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 1237 | |
| 1238 | # check a comment of max length |
| 1239 | comment2 = ''.join(['%d' % (i**3 % 10) for i in range((1 << 16)-1)]) |
| 1240 | comment2 = comment2.encode("ascii") |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1241 | with zipfile.ZipFile(TESTFN, mode="w") as zipf: |
| 1242 | zipf.comment = comment2 |
| 1243 | zipf.writestr("foo.txt", "O, for a Muse of Fire!") |
| 1244 | |
| 1245 | with zipfile.ZipFile(TESTFN, mode="r") as zipfr: |
| 1246 | self.assertEqual(zipfr.comment, comment2) |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 1247 | |
| 1248 | # check a comment that is too long is truncated |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1249 | with zipfile.ZipFile(TESTFN, mode="w") as zipf: |
| 1250 | zipf.comment = comment2 + b'oops' |
| 1251 | zipf.writestr("foo.txt", "O, for a Muse of Fire!") |
| 1252 | with zipfile.ZipFile(TESTFN, mode="r") as zipfr: |
| 1253 | self.assertEqual(zipfr.comment, comment2) |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 1254 | |
Antoine Pitrou | c399185 | 2012-06-30 17:31:37 +0200 | [diff] [blame] | 1255 | # check that comments are correctly modified in append mode |
| 1256 | with zipfile.ZipFile(TESTFN,mode="w") as zipf: |
| 1257 | zipf.comment = b"original comment" |
| 1258 | zipf.writestr("foo.txt", "O, for a Muse of Fire!") |
| 1259 | with zipfile.ZipFile(TESTFN,mode="a") as zipf: |
| 1260 | zipf.comment = b"an updated comment" |
| 1261 | with zipfile.ZipFile(TESTFN,mode="r") as zipf: |
| 1262 | self.assertEqual(zipf.comment, b"an updated comment") |
| 1263 | |
| 1264 | # check that comments are correctly shortened in append mode |
| 1265 | with zipfile.ZipFile(TESTFN,mode="w") as zipf: |
| 1266 | zipf.comment = b"original comment that's longer" |
| 1267 | zipf.writestr("foo.txt", "O, for a Muse of Fire!") |
| 1268 | with zipfile.ZipFile(TESTFN,mode="a") as zipf: |
| 1269 | zipf.comment = b"shorter comment" |
| 1270 | with zipfile.ZipFile(TESTFN,mode="r") as zipf: |
| 1271 | self.assertEqual(zipf.comment, b"shorter comment") |
| 1272 | |
R David Murray | f50b38a | 2012-04-12 18:44:58 -0400 | [diff] [blame] | 1273 | def test_unicode_comment(self): |
| 1274 | with zipfile.ZipFile(TESTFN, "w", zipfile.ZIP_STORED) as zipf: |
| 1275 | zipf.writestr("foo.txt", "O, for a Muse of Fire!") |
| 1276 | with self.assertRaises(TypeError): |
| 1277 | zipf.comment = "this is an error" |
| 1278 | |
| 1279 | def test_change_comment_in_empty_archive(self): |
| 1280 | with zipfile.ZipFile(TESTFN, "a", zipfile.ZIP_STORED) as zipf: |
| 1281 | self.assertFalse(zipf.filelist) |
| 1282 | zipf.comment = b"this is a comment" |
| 1283 | with zipfile.ZipFile(TESTFN, "r") as zipf: |
| 1284 | self.assertEqual(zipf.comment, b"this is a comment") |
| 1285 | |
| 1286 | def test_change_comment_in_nonempty_archive(self): |
| 1287 | with zipfile.ZipFile(TESTFN, "w", zipfile.ZIP_STORED) as zipf: |
| 1288 | zipf.writestr("foo.txt", "O, for a Muse of Fire!") |
| 1289 | with zipfile.ZipFile(TESTFN, "a", zipfile.ZIP_STORED) as zipf: |
| 1290 | self.assertTrue(zipf.filelist) |
| 1291 | zipf.comment = b"this is a comment" |
| 1292 | with zipfile.ZipFile(TESTFN, "r") as zipf: |
| 1293 | self.assertEqual(zipf.comment, b"this is a comment") |
| 1294 | |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 1295 | def check_testzip_with_bad_crc(self, compression): |
| 1296 | """Tests that files with bad CRCs return their name from testzip.""" |
| 1297 | zipdata = self.zips_with_bad_crc[compression] |
| 1298 | |
| 1299 | with zipfile.ZipFile(io.BytesIO(zipdata), mode="r") as zipf: |
| 1300 | # testzip returns the name of the first corrupt file, or None |
| 1301 | self.assertEqual('afile', zipf.testzip()) |
| 1302 | |
| 1303 | def test_testzip_with_bad_crc_stored(self): |
| 1304 | self.check_testzip_with_bad_crc(zipfile.ZIP_STORED) |
| 1305 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 1306 | @requires_zlib |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 1307 | def test_testzip_with_bad_crc_deflated(self): |
| 1308 | self.check_testzip_with_bad_crc(zipfile.ZIP_DEFLATED) |
| 1309 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 1310 | @requires_bz2 |
| 1311 | def test_testzip_with_bad_crc_bzip2(self): |
| 1312 | self.check_testzip_with_bad_crc(zipfile.ZIP_BZIP2) |
| 1313 | |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 1314 | @requires_lzma |
| 1315 | def test_testzip_with_bad_crc_lzma(self): |
| 1316 | self.check_testzip_with_bad_crc(zipfile.ZIP_LZMA) |
| 1317 | |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 1318 | def check_read_with_bad_crc(self, compression): |
Georg Brandl | 4d54088 | 2010-10-28 06:42:33 +0000 | [diff] [blame] | 1319 | """Tests that files with bad CRCs raise a BadZipFile exception when read.""" |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 1320 | zipdata = self.zips_with_bad_crc[compression] |
| 1321 | |
| 1322 | # Using ZipFile.read() |
| 1323 | with zipfile.ZipFile(io.BytesIO(zipdata), mode="r") as zipf: |
Georg Brandl | 4d54088 | 2010-10-28 06:42:33 +0000 | [diff] [blame] | 1324 | self.assertRaises(zipfile.BadZipFile, zipf.read, 'afile') |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 1325 | |
| 1326 | # Using ZipExtFile.read() |
| 1327 | with zipfile.ZipFile(io.BytesIO(zipdata), mode="r") as zipf: |
| 1328 | with zipf.open('afile', 'r') as corrupt_file: |
Georg Brandl | 4d54088 | 2010-10-28 06:42:33 +0000 | [diff] [blame] | 1329 | self.assertRaises(zipfile.BadZipFile, corrupt_file.read) |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 1330 | |
| 1331 | # Same with small reads (in order to exercise the buffering logic) |
| 1332 | with zipfile.ZipFile(io.BytesIO(zipdata), mode="r") as zipf: |
| 1333 | with zipf.open('afile', 'r') as corrupt_file: |
| 1334 | corrupt_file.MIN_READ_SIZE = 2 |
Georg Brandl | 4d54088 | 2010-10-28 06:42:33 +0000 | [diff] [blame] | 1335 | with self.assertRaises(zipfile.BadZipFile): |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 1336 | while corrupt_file.read(2): |
| 1337 | pass |
| 1338 | |
| 1339 | def test_read_with_bad_crc_stored(self): |
| 1340 | self.check_read_with_bad_crc(zipfile.ZIP_STORED) |
| 1341 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 1342 | @requires_zlib |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 1343 | def test_read_with_bad_crc_deflated(self): |
| 1344 | self.check_read_with_bad_crc(zipfile.ZIP_DEFLATED) |
| 1345 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 1346 | @requires_bz2 |
| 1347 | def test_read_with_bad_crc_bzip2(self): |
| 1348 | self.check_read_with_bad_crc(zipfile.ZIP_BZIP2) |
| 1349 | |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 1350 | @requires_lzma |
| 1351 | def test_read_with_bad_crc_lzma(self): |
| 1352 | self.check_read_with_bad_crc(zipfile.ZIP_LZMA) |
| 1353 | |
Antoine Pitrou | 6464d5f | 2010-09-12 14:51:20 +0000 | [diff] [blame] | 1354 | def check_read_return_size(self, compression): |
| 1355 | # Issue #9837: ZipExtFile.read() shouldn't return more bytes |
| 1356 | # than requested. |
| 1357 | for test_size in (1, 4095, 4096, 4097, 16384): |
| 1358 | file_size = test_size + 1 |
| 1359 | junk = b''.join(struct.pack('B', randint(0, 255)) |
| 1360 | for x in range(file_size)) |
| 1361 | with zipfile.ZipFile(io.BytesIO(), "w", compression) as zipf: |
| 1362 | zipf.writestr('foo', junk) |
| 1363 | with zipf.open('foo', 'r') as fp: |
| 1364 | buf = fp.read(test_size) |
| 1365 | self.assertEqual(len(buf), test_size) |
| 1366 | |
| 1367 | def test_read_return_size_stored(self): |
| 1368 | self.check_read_return_size(zipfile.ZIP_STORED) |
| 1369 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 1370 | @requires_zlib |
Antoine Pitrou | 6464d5f | 2010-09-12 14:51:20 +0000 | [diff] [blame] | 1371 | def test_read_return_size_deflated(self): |
| 1372 | self.check_read_return_size(zipfile.ZIP_DEFLATED) |
| 1373 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 1374 | @requires_bz2 |
| 1375 | def test_read_return_size_bzip2(self): |
| 1376 | self.check_read_return_size(zipfile.ZIP_BZIP2) |
| 1377 | |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 1378 | @requires_lzma |
| 1379 | def test_read_return_size_lzma(self): |
| 1380 | self.check_read_return_size(zipfile.ZIP_LZMA) |
| 1381 | |
Georg Brandl | 268e4d4 | 2010-10-14 06:59:45 +0000 | [diff] [blame] | 1382 | def test_empty_zipfile(self): |
| 1383 | # Check that creating a file in 'w' or 'a' mode and closing without |
| 1384 | # adding any files to the archives creates a valid empty ZIP file |
| 1385 | zipf = zipfile.ZipFile(TESTFN, mode="w") |
| 1386 | zipf.close() |
| 1387 | try: |
| 1388 | zipf = zipfile.ZipFile(TESTFN, mode="r") |
| 1389 | except zipfile.BadZipFile: |
| 1390 | self.fail("Unable to create empty ZIP file in 'w' mode") |
| 1391 | |
| 1392 | zipf = zipfile.ZipFile(TESTFN, mode="a") |
| 1393 | zipf.close() |
| 1394 | try: |
| 1395 | zipf = zipfile.ZipFile(TESTFN, mode="r") |
| 1396 | except: |
| 1397 | self.fail("Unable to create empty ZIP file in 'a' mode") |
| 1398 | |
| 1399 | def test_open_empty_file(self): |
| 1400 | # Issue 1710703: Check that opening a file with less than 22 bytes |
Georg Brandl | 4d54088 | 2010-10-28 06:42:33 +0000 | [diff] [blame] | 1401 | # raises a BadZipFile exception (rather than the previously unhelpful |
Georg Brandl | 268e4d4 | 2010-10-14 06:59:45 +0000 | [diff] [blame] | 1402 | # IOError) |
| 1403 | f = open(TESTFN, 'w') |
| 1404 | f.close() |
Georg Brandl | 4d54088 | 2010-10-28 06:42:33 +0000 | [diff] [blame] | 1405 | self.assertRaises(zipfile.BadZipFile, zipfile.ZipFile, TESTFN, 'r') |
Georg Brandl | 268e4d4 | 2010-10-14 06:59:45 +0000 | [diff] [blame] | 1406 | |
Senthil Kumaran | 29fa9d4 | 2011-10-20 01:46:00 +0800 | [diff] [blame] | 1407 | def test_create_zipinfo_before_1980(self): |
| 1408 | self.assertRaises(ValueError, |
| 1409 | zipfile.ZipInfo, 'seventies', (1979, 1, 1, 0, 0, 0)) |
| 1410 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1411 | def tearDown(self): |
Ezio Melotti | 7643024 | 2009-07-11 18:28:48 +0000 | [diff] [blame] | 1412 | unlink(TESTFN) |
| 1413 | unlink(TESTFN2) |
| 1414 | |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1415 | |
| 1416 | class DecryptionTests(unittest.TestCase): |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1417 | """Check that ZIP decryption works. Since the library does not |
| 1418 | support encryption at the moment, we use a pre-generated encrypted |
| 1419 | ZIP file.""" |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1420 | |
| 1421 | data = ( |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1422 | b'PK\x03\x04\x14\x00\x01\x00\x00\x00n\x92i.#y\xef?&\x00\x00\x00\x1a\x00' |
| 1423 | b'\x00\x00\x08\x00\x00\x00test.txt\xfa\x10\xa0gly|\xfa-\xc5\xc0=\xf9y' |
| 1424 | b'\x18\xe0\xa8r\xb3Z}Lg\xbc\xae\xf9|\x9b\x19\xe4\x8b\xba\xbb)\x8c\xb0\xdbl' |
| 1425 | b'PK\x01\x02\x14\x00\x14\x00\x01\x00\x00\x00n\x92i.#y\xef?&\x00\x00\x00' |
| 1426 | b'\x1a\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x01\x00 \x00\xb6\x81' |
| 1427 | b'\x00\x00\x00\x00test.txtPK\x05\x06\x00\x00\x00\x00\x01\x00\x01\x006\x00' |
| 1428 | b'\x00\x00L\x00\x00\x00\x00\x00' ) |
Christian Heimes | fdab48e | 2008-01-20 09:06:41 +0000 | [diff] [blame] | 1429 | data2 = ( |
| 1430 | b'PK\x03\x04\x14\x00\t\x00\x08\x00\xcf}38xu\xaa\xb2\x14\x00\x00\x00\x00\x02' |
| 1431 | b'\x00\x00\x04\x00\x15\x00zeroUT\t\x00\x03\xd6\x8b\x92G\xda\x8b\x92GUx\x04' |
| 1432 | b'\x00\xe8\x03\xe8\x03\xc7<M\xb5a\xceX\xa3Y&\x8b{oE\xd7\x9d\x8c\x98\x02\xc0' |
| 1433 | b'PK\x07\x08xu\xaa\xb2\x14\x00\x00\x00\x00\x02\x00\x00PK\x01\x02\x17\x03' |
| 1434 | b'\x14\x00\t\x00\x08\x00\xcf}38xu\xaa\xb2\x14\x00\x00\x00\x00\x02\x00\x00' |
| 1435 | b'\x04\x00\r\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa4\x81\x00\x00\x00\x00ze' |
| 1436 | b'roUT\x05\x00\x03\xd6\x8b\x92GUx\x00\x00PK\x05\x06\x00\x00\x00\x00\x01' |
| 1437 | b'\x00\x01\x00?\x00\x00\x00[\x00\x00\x00\x00\x00' ) |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1438 | |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1439 | plain = b'zipfile.py encryption test' |
Christian Heimes | fdab48e | 2008-01-20 09:06:41 +0000 | [diff] [blame] | 1440 | plain2 = b'\x00'*512 |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1441 | |
| 1442 | def setUp(self): |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1443 | with open(TESTFN, "wb") as fp: |
| 1444 | fp.write(self.data) |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1445 | self.zip = zipfile.ZipFile(TESTFN, "r") |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1446 | with open(TESTFN2, "wb") as fp: |
| 1447 | fp.write(self.data2) |
Christian Heimes | fdab48e | 2008-01-20 09:06:41 +0000 | [diff] [blame] | 1448 | self.zip2 = zipfile.ZipFile(TESTFN2, "r") |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1449 | |
| 1450 | def tearDown(self): |
| 1451 | self.zip.close() |
| 1452 | os.unlink(TESTFN) |
Christian Heimes | fdab48e | 2008-01-20 09:06:41 +0000 | [diff] [blame] | 1453 | self.zip2.close() |
| 1454 | os.unlink(TESTFN2) |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1455 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1456 | def test_no_password(self): |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1457 | # Reading the encrypted file without password |
| 1458 | # must generate a RunTime exception |
| 1459 | self.assertRaises(RuntimeError, self.zip.read, "test.txt") |
Christian Heimes | fdab48e | 2008-01-20 09:06:41 +0000 | [diff] [blame] | 1460 | self.assertRaises(RuntimeError, self.zip2.read, "zero") |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1461 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1462 | def test_bad_password(self): |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1463 | self.zip.setpassword(b"perl") |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1464 | self.assertRaises(RuntimeError, self.zip.read, "test.txt") |
Christian Heimes | fdab48e | 2008-01-20 09:06:41 +0000 | [diff] [blame] | 1465 | self.zip2.setpassword(b"perl") |
| 1466 | self.assertRaises(RuntimeError, self.zip2.read, "zero") |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1467 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 1468 | @requires_zlib |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1469 | def test_good_password(self): |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1470 | self.zip.setpassword(b"python") |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1471 | self.assertEqual(self.zip.read("test.txt"), self.plain) |
Christian Heimes | fdab48e | 2008-01-20 09:06:41 +0000 | [diff] [blame] | 1472 | self.zip2.setpassword(b"12345") |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1473 | self.assertEqual(self.zip2.read("zero"), self.plain2) |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1474 | |
R. David Murray | 8d855d8 | 2010-12-21 21:53:37 +0000 | [diff] [blame] | 1475 | def test_unicode_password(self): |
| 1476 | self.assertRaises(TypeError, self.zip.setpassword, "unicode") |
| 1477 | self.assertRaises(TypeError, self.zip.read, "test.txt", "python") |
| 1478 | self.assertRaises(TypeError, self.zip.open, "test.txt", pwd="python") |
| 1479 | self.assertRaises(TypeError, self.zip.extract, "test.txt", pwd="python") |
| 1480 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1481 | |
| 1482 | class TestsWithRandomBinaryFiles(unittest.TestCase): |
| 1483 | def setUp(self): |
| 1484 | datacount = randint(16, 64)*1024 + randint(1, 1024) |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1485 | self.data = b''.join(struct.pack('<f', random()*randint(-1000, 1000)) |
| 1486 | for i in range(datacount)) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1487 | |
| 1488 | # Make a source file with some lines |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1489 | with open(TESTFN, "wb") as fp: |
| 1490 | fp.write(self.data) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1491 | |
| 1492 | def tearDown(self): |
Ezio Melotti | 7643024 | 2009-07-11 18:28:48 +0000 | [diff] [blame] | 1493 | unlink(TESTFN) |
| 1494 | unlink(TESTFN2) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1495 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1496 | def make_test_archive(self, f, compression): |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1497 | # Create the ZIP archive |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1498 | with zipfile.ZipFile(f, "w", compression) as zipfp: |
| 1499 | zipfp.write(TESTFN, "another.name") |
| 1500 | zipfp.write(TESTFN, TESTFN) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1501 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1502 | def zip_test(self, f, compression): |
| 1503 | self.make_test_archive(f, compression) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1504 | |
| 1505 | # Read the ZIP archive |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1506 | with zipfile.ZipFile(f, "r", compression) as zipfp: |
| 1507 | testdata = zipfp.read(TESTFN) |
| 1508 | self.assertEqual(len(testdata), len(self.data)) |
| 1509 | self.assertEqual(testdata, self.data) |
| 1510 | self.assertEqual(zipfp.read("another.name"), self.data) |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 1511 | if not isinstance(f, str): |
| 1512 | f.close() |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1513 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1514 | def test_stored(self): |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1515 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1516 | self.zip_test(f, zipfile.ZIP_STORED) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1517 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 1518 | @requires_zlib |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 1519 | def test_deflated(self): |
| 1520 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
| 1521 | self.zip_test(f, zipfile.ZIP_DEFLATED) |
| 1522 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 1523 | @requires_bz2 |
| 1524 | def test_bzip2(self): |
| 1525 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
| 1526 | self.zip_test(f, zipfile.ZIP_BZIP2) |
| 1527 | |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 1528 | @requires_lzma |
| 1529 | def test_lzma(self): |
| 1530 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
| 1531 | self.zip_test(f, zipfile.ZIP_LZMA) |
| 1532 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1533 | def zip_open_test(self, f, compression): |
| 1534 | self.make_test_archive(f, compression) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1535 | |
| 1536 | # Read the ZIP archive |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1537 | with zipfile.ZipFile(f, "r", compression) as zipfp: |
| 1538 | zipdata1 = [] |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 1539 | with zipfp.open(TESTFN) as zipopen1: |
| 1540 | while True: |
| 1541 | read_data = zipopen1.read(256) |
| 1542 | if not read_data: |
| 1543 | break |
| 1544 | zipdata1.append(read_data) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1545 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1546 | zipdata2 = [] |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 1547 | with zipfp.open("another.name") as zipopen2: |
| 1548 | while True: |
| 1549 | read_data = zipopen2.read(256) |
| 1550 | if not read_data: |
| 1551 | break |
| 1552 | zipdata2.append(read_data) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1553 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1554 | testdata1 = b''.join(zipdata1) |
| 1555 | self.assertEqual(len(testdata1), len(self.data)) |
| 1556 | self.assertEqual(testdata1, self.data) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1557 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1558 | testdata2 = b''.join(zipdata2) |
Ezio Melotti | 3538671 | 2009-12-31 13:22:41 +0000 | [diff] [blame] | 1559 | self.assertEqual(len(testdata2), len(self.data)) |
| 1560 | self.assertEqual(testdata2, self.data) |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 1561 | if not isinstance(f, str): |
| 1562 | f.close() |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1563 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1564 | def test_open_stored(self): |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1565 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1566 | self.zip_open_test(f, zipfile.ZIP_STORED) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1567 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 1568 | @requires_zlib |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 1569 | def test_open_deflated(self): |
| 1570 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
| 1571 | self.zip_open_test(f, zipfile.ZIP_DEFLATED) |
| 1572 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 1573 | @requires_bz2 |
| 1574 | def test_open_bzip2(self): |
| 1575 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
| 1576 | self.zip_open_test(f, zipfile.ZIP_BZIP2) |
| 1577 | |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 1578 | @requires_lzma |
| 1579 | def test_open_lzma(self): |
| 1580 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
| 1581 | self.zip_open_test(f, zipfile.ZIP_LZMA) |
| 1582 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1583 | def zip_random_open_test(self, f, compression): |
| 1584 | self.make_test_archive(f, compression) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1585 | |
| 1586 | # Read the ZIP archive |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1587 | with zipfile.ZipFile(f, "r", compression) as zipfp: |
| 1588 | zipdata1 = [] |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 1589 | with zipfp.open(TESTFN) as zipopen1: |
| 1590 | while True: |
| 1591 | read_data = zipopen1.read(randint(1, 1024)) |
| 1592 | if not read_data: |
| 1593 | break |
| 1594 | zipdata1.append(read_data) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1595 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1596 | testdata = b''.join(zipdata1) |
| 1597 | self.assertEqual(len(testdata), len(self.data)) |
| 1598 | self.assertEqual(testdata, self.data) |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 1599 | if not isinstance(f, str): |
| 1600 | f.close() |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1601 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1602 | def test_random_open_stored(self): |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1603 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1604 | self.zip_random_open_test(f, zipfile.ZIP_STORED) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1605 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 1606 | @requires_zlib |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 1607 | def test_random_open_deflated(self): |
| 1608 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
| 1609 | self.zip_random_open_test(f, zipfile.ZIP_DEFLATED) |
| 1610 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 1611 | @requires_bz2 |
| 1612 | def test_random_open_bzip2(self): |
| 1613 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
| 1614 | self.zip_random_open_test(f, zipfile.ZIP_BZIP2) |
| 1615 | |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 1616 | @requires_lzma |
| 1617 | def test_random_open_lzma(self): |
| 1618 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
| 1619 | self.zip_random_open_test(f, zipfile.ZIP_LZMA) |
| 1620 | |
Ezio Melotti | 7643024 | 2009-07-11 18:28:48 +0000 | [diff] [blame] | 1621 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 1622 | @requires_zlib |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1623 | class TestsWithMultipleOpens(unittest.TestCase): |
| 1624 | def setUp(self): |
| 1625 | # Create the ZIP archive |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1626 | with zipfile.ZipFile(TESTFN2, "w", zipfile.ZIP_DEFLATED) as zipfp: |
| 1627 | zipfp.writestr('ones', '1'*FIXEDTEST_SIZE) |
| 1628 | zipfp.writestr('twos', '2'*FIXEDTEST_SIZE) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1629 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1630 | def test_same_file(self): |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1631 | # Verify that (when the ZipFile is in control of creating file objects) |
| 1632 | # multiple open() calls can be made without interfering with each other. |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1633 | with zipfile.ZipFile(TESTFN2, mode="r") as zipf: |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 1634 | with zipf.open('ones') as zopen1, zipf.open('ones') as zopen2: |
| 1635 | data1 = zopen1.read(500) |
| 1636 | data2 = zopen2.read(500) |
| 1637 | data1 += zopen1.read(500) |
| 1638 | data2 += zopen2.read(500) |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1639 | self.assertEqual(data1, data2) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1640 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1641 | def test_different_file(self): |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1642 | # Verify that (when the ZipFile is in control of creating file objects) |
| 1643 | # multiple open() calls can be made without interfering with each other. |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1644 | with zipfile.ZipFile(TESTFN2, mode="r") as zipf: |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 1645 | with zipf.open('ones') as zopen1, zipf.open('twos') as zopen2: |
| 1646 | data1 = zopen1.read(500) |
| 1647 | data2 = zopen2.read(500) |
| 1648 | data1 += zopen1.read(500) |
| 1649 | data2 += zopen2.read(500) |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1650 | self.assertEqual(data1, b'1'*FIXEDTEST_SIZE) |
| 1651 | self.assertEqual(data2, b'2'*FIXEDTEST_SIZE) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1652 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1653 | def test_interleaved(self): |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1654 | # Verify that (when the ZipFile is in control of creating file objects) |
| 1655 | # multiple open() calls can be made without interfering with each other. |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1656 | with zipfile.ZipFile(TESTFN2, mode="r") as zipf: |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 1657 | with zipf.open('ones') as zopen1, zipf.open('twos') as zopen2: |
| 1658 | data1 = zopen1.read(500) |
| 1659 | data2 = zopen2.read(500) |
| 1660 | data1 += zopen1.read(500) |
| 1661 | data2 += zopen2.read(500) |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1662 | self.assertEqual(data1, b'1'*FIXEDTEST_SIZE) |
| 1663 | self.assertEqual(data2, b'2'*FIXEDTEST_SIZE) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1664 | |
| 1665 | def tearDown(self): |
Ezio Melotti | 7643024 | 2009-07-11 18:28:48 +0000 | [diff] [blame] | 1666 | unlink(TESTFN2) |
| 1667 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1668 | |
Martin v. Löwis | 59e4779 | 2009-01-24 14:10:07 +0000 | [diff] [blame] | 1669 | class TestWithDirectory(unittest.TestCase): |
| 1670 | def setUp(self): |
| 1671 | os.mkdir(TESTFN2) |
| 1672 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1673 | def test_extract_dir(self): |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1674 | with zipfile.ZipFile(findfile("zipdir.zip")) as zipf: |
| 1675 | zipf.extractall(TESTFN2) |
Martin v. Löwis | 59e4779 | 2009-01-24 14:10:07 +0000 | [diff] [blame] | 1676 | self.assertTrue(os.path.isdir(os.path.join(TESTFN2, "a"))) |
| 1677 | self.assertTrue(os.path.isdir(os.path.join(TESTFN2, "a", "b"))) |
| 1678 | self.assertTrue(os.path.exists(os.path.join(TESTFN2, "a", "b", "c"))) |
| 1679 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1680 | def test_bug_6050(self): |
Martin v. Löwis | 70ccd16 | 2009-05-24 19:47:22 +0000 | [diff] [blame] | 1681 | # Extraction should succeed if directories already exist |
| 1682 | os.mkdir(os.path.join(TESTFN2, "a")) |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1683 | self.test_extract_dir() |
Martin v. Löwis | 70ccd16 | 2009-05-24 19:47:22 +0000 | [diff] [blame] | 1684 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1685 | def test_store_dir(self): |
Martin v. Löwis | 59e4779 | 2009-01-24 14:10:07 +0000 | [diff] [blame] | 1686 | os.mkdir(os.path.join(TESTFN2, "x")) |
| 1687 | zipf = zipfile.ZipFile(TESTFN, "w") |
| 1688 | zipf.write(os.path.join(TESTFN2, "x"), "x") |
| 1689 | self.assertTrue(zipf.filelist[0].filename.endswith("x/")) |
| 1690 | |
| 1691 | def tearDown(self): |
| 1692 | shutil.rmtree(TESTFN2) |
| 1693 | if os.path.exists(TESTFN): |
Ezio Melotti | 7643024 | 2009-07-11 18:28:48 +0000 | [diff] [blame] | 1694 | unlink(TESTFN) |
Martin v. Löwis | 59e4779 | 2009-01-24 14:10:07 +0000 | [diff] [blame] | 1695 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1696 | |
| 1697 | class UniversalNewlineTests(unittest.TestCase): |
| 1698 | def setUp(self): |
Guido van Rossum | 9c62772 | 2007-08-27 18:31:48 +0000 | [diff] [blame] | 1699 | self.line_gen = [bytes("Test of zipfile line %d." % i, "ascii") |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1700 | for i in range(FIXEDTEST_SIZE)] |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1701 | self.seps = ('\r', '\r\n', '\n') |
| 1702 | self.arcdata, self.arcfiles = {}, {} |
| 1703 | for n, s in enumerate(self.seps): |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1704 | b = s.encode("ascii") |
| 1705 | self.arcdata[s] = b.join(self.line_gen) + b |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1706 | self.arcfiles[s] = '%s-%d' % (TESTFN, n) |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1707 | f = open(self.arcfiles[s], "wb") |
| 1708 | try: |
| 1709 | f.write(self.arcdata[s]) |
| 1710 | finally: |
| 1711 | f.close() |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1712 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1713 | def make_test_archive(self, f, compression): |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1714 | # Create the ZIP archive |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1715 | with zipfile.ZipFile(f, "w", compression) as zipfp: |
| 1716 | for fn in self.arcfiles.values(): |
| 1717 | zipfp.write(fn, fn) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1718 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1719 | def read_test(self, f, compression): |
| 1720 | self.make_test_archive(f, compression) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1721 | |
| 1722 | # Read the ZIP archive |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1723 | with zipfile.ZipFile(f, "r") as zipfp: |
| 1724 | for sep, fn in self.arcfiles.items(): |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 1725 | with zipfp.open(fn, "rU") as fp: |
| 1726 | zipdata = fp.read() |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1727 | self.assertEqual(self.arcdata[sep], zipdata) |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 1728 | if not isinstance(f, str): |
| 1729 | f.close() |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1730 | |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 1731 | def readline_read_test(self, f, compression): |
| 1732 | self.make_test_archive(f, compression) |
| 1733 | |
| 1734 | # Read the ZIP archive |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 1735 | with zipfile.ZipFile(f, "r") as zipfp: |
| 1736 | for sep, fn in self.arcfiles.items(): |
| 1737 | with zipfp.open(fn, "rU") as zipopen: |
| 1738 | data = b'' |
| 1739 | while True: |
| 1740 | read = zipopen.readline() |
| 1741 | if not read: |
| 1742 | break |
| 1743 | data += read |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 1744 | |
Brian Curtin | 8fb9b86 | 2010-11-18 02:15:28 +0000 | [diff] [blame] | 1745 | read = zipopen.read(5) |
| 1746 | if not read: |
| 1747 | break |
| 1748 | data += read |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 1749 | |
| 1750 | self.assertEqual(data, self.arcdata['\n']) |
| 1751 | |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 1752 | if not isinstance(f, str): |
| 1753 | f.close() |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 1754 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1755 | def readline_test(self, f, compression): |
| 1756 | self.make_test_archive(f, compression) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1757 | |
| 1758 | # Read the ZIP archive |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1759 | with zipfile.ZipFile(f, "r") as zipfp: |
| 1760 | for sep, fn in self.arcfiles.items(): |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 1761 | with zipfp.open(fn, "rU") as zipopen: |
| 1762 | for line in self.line_gen: |
| 1763 | linedata = zipopen.readline() |
| 1764 | self.assertEqual(linedata, line + b'\n') |
| 1765 | if not isinstance(f, str): |
| 1766 | f.close() |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1767 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1768 | def readlines_test(self, f, compression): |
| 1769 | self.make_test_archive(f, compression) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1770 | |
| 1771 | # Read the ZIP archive |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1772 | with zipfile.ZipFile(f, "r") as zipfp: |
| 1773 | for sep, fn in self.arcfiles.items(): |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 1774 | with zipfp.open(fn, "rU") as fp: |
| 1775 | ziplines = fp.readlines() |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1776 | for line, zipline in zip(self.line_gen, ziplines): |
| 1777 | self.assertEqual(zipline, line + b'\n') |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 1778 | if not isinstance(f, str): |
| 1779 | f.close() |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1780 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1781 | def iterlines_test(self, f, compression): |
| 1782 | self.make_test_archive(f, compression) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1783 | |
| 1784 | # Read the ZIP archive |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1785 | with zipfile.ZipFile(f, "r") as zipfp: |
| 1786 | for sep, fn in self.arcfiles.items(): |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 1787 | with zipfp.open(fn, "rU") as fp: |
| 1788 | for line, zipline in zip(self.line_gen, fp): |
| 1789 | self.assertEqual(zipline, line + b'\n') |
| 1790 | if not isinstance(f, str): |
| 1791 | f.close() |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1792 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1793 | def test_read_stored(self): |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1794 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1795 | self.read_test(f, zipfile.ZIP_STORED) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1796 | |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 1797 | def test_readline_read_stored(self): |
| 1798 | # Issue #7610: calls to readline() interleaved with calls to read(). |
| 1799 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
| 1800 | self.readline_read_test(f, zipfile.ZIP_STORED) |
| 1801 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1802 | def test_readline_stored(self): |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1803 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1804 | self.readline_test(f, zipfile.ZIP_STORED) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1805 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1806 | def test_readlines_stored(self): |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1807 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1808 | self.readlines_test(f, zipfile.ZIP_STORED) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1809 | |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1810 | def test_iterlines_stored(self): |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1811 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1812 | self.iterlines_test(f, zipfile.ZIP_STORED) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1813 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 1814 | @requires_zlib |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1815 | def test_read_deflated(self): |
Ezio Melotti | 7643024 | 2009-07-11 18:28:48 +0000 | [diff] [blame] | 1816 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1817 | self.read_test(f, zipfile.ZIP_DEFLATED) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1818 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 1819 | @requires_zlib |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 1820 | def test_readline_read_deflated(self): |
| 1821 | # Issue #7610: calls to readline() interleaved with calls to read(). |
| 1822 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
| 1823 | self.readline_read_test(f, zipfile.ZIP_DEFLATED) |
| 1824 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 1825 | @requires_zlib |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1826 | def test_readline_deflated(self): |
Ezio Melotti | 7643024 | 2009-07-11 18:28:48 +0000 | [diff] [blame] | 1827 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1828 | self.readline_test(f, zipfile.ZIP_DEFLATED) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1829 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 1830 | @requires_zlib |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1831 | def test_readlines_deflated(self): |
Ezio Melotti | 7643024 | 2009-07-11 18:28:48 +0000 | [diff] [blame] | 1832 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1833 | self.readlines_test(f, zipfile.ZIP_DEFLATED) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1834 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame] | 1835 | @requires_zlib |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1836 | def test_iterlines_deflated(self): |
Ezio Melotti | 7643024 | 2009-07-11 18:28:48 +0000 | [diff] [blame] | 1837 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
Ezio Melotti | afd0d11 | 2009-07-15 17:17:17 +0000 | [diff] [blame] | 1838 | self.iterlines_test(f, zipfile.ZIP_DEFLATED) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1839 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 1840 | @requires_bz2 |
| 1841 | def test_read_bzip2(self): |
| 1842 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
| 1843 | self.read_test(f, zipfile.ZIP_BZIP2) |
| 1844 | |
| 1845 | @requires_bz2 |
| 1846 | def test_readline_read_bzip2(self): |
| 1847 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
| 1848 | self.readline_read_test(f, zipfile.ZIP_BZIP2) |
| 1849 | |
| 1850 | @requires_bz2 |
| 1851 | def test_readline_bzip2(self): |
| 1852 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
| 1853 | self.readline_test(f, zipfile.ZIP_BZIP2) |
| 1854 | |
| 1855 | @requires_bz2 |
| 1856 | def test_readlines_bzip2(self): |
| 1857 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
| 1858 | self.readlines_test(f, zipfile.ZIP_BZIP2) |
| 1859 | |
| 1860 | @requires_bz2 |
| 1861 | def test_iterlines_bzip2(self): |
| 1862 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
| 1863 | self.iterlines_test(f, zipfile.ZIP_BZIP2) |
| 1864 | |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 1865 | @requires_lzma |
| 1866 | def test_read_lzma(self): |
| 1867 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
| 1868 | self.read_test(f, zipfile.ZIP_LZMA) |
| 1869 | |
| 1870 | @requires_lzma |
| 1871 | def test_readline_read_lzma(self): |
| 1872 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
| 1873 | self.readline_read_test(f, zipfile.ZIP_LZMA) |
| 1874 | |
| 1875 | @requires_lzma |
| 1876 | def test_readline_lzma(self): |
| 1877 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
| 1878 | self.readline_test(f, zipfile.ZIP_LZMA) |
| 1879 | |
| 1880 | @requires_lzma |
| 1881 | def test_readlines_lzma(self): |
| 1882 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
| 1883 | self.readlines_test(f, zipfile.ZIP_LZMA) |
| 1884 | |
| 1885 | @requires_lzma |
| 1886 | def test_iterlines_lzma(self): |
| 1887 | for f in (TESTFN2, TemporaryFile(), io.BytesIO()): |
| 1888 | self.iterlines_test(f, zipfile.ZIP_LZMA) |
| 1889 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1890 | def tearDown(self): |
| 1891 | for sep, fn in self.arcfiles.items(): |
| 1892 | os.remove(fn) |
Ezio Melotti | 7643024 | 2009-07-11 18:28:48 +0000 | [diff] [blame] | 1893 | unlink(TESTFN) |
| 1894 | unlink(TESTFN2) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1895 | |
| 1896 | |
Johannes Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 1897 | def test_main(): |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1898 | run_unittest(TestsWithSourceFile, TestZip64InSmallFiles, OtherTests, |
| 1899 | PyZipFileTests, DecryptionTests, TestsWithMultipleOpens, |
Ezio Melotti | 7643024 | 2009-07-11 18:28:48 +0000 | [diff] [blame] | 1900 | TestWithDirectory, UniversalNewlineTests, |
| 1901 | TestsWithRandomBinaryFiles) |
Johannes Gijsbers | 3caf9c1 | 2004-08-19 15:11:50 +0000 | [diff] [blame] | 1902 | |
| 1903 | if __name__ == "__main__": |
| 1904 | test_main() |