Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1 | # Tests of the full ZIP64 functionality of zipfile |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 2 | # The support.requires call is the only reason for keeping this separate |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 3 | # from test_zipfile |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 4 | from test import support |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 5 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 6 | # XXX(nnorwitz): disable this test by looking for extra largfile resource |
| 7 | # which doesn't exist. This test takes over 30 minutes to run in general |
| 8 | # and requires more disk space than most of the buildbots. |
Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 9 | support.requires( |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 10 | 'extralargefile', |
| 11 | 'test requires loads of disk-space bytes and a long time to run' |
| 12 | ) |
| 13 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 14 | import zipfile, os, unittest |
| 15 | import time |
| 16 | import sys |
| 17 | |
Guido van Rossum | 34d1928 | 2007-08-09 01:03:29 +0000 | [diff] [blame] | 18 | from io import StringIO |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 19 | from tempfile import TemporaryFile |
| 20 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame^] | 21 | from test.support import TESTFN, run_unittest, requires_zlib |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 22 | |
| 23 | TESTFN2 = TESTFN + "2" |
| 24 | |
| 25 | # How much time in seconds can pass before we print a 'Still working' message. |
| 26 | _PRINT_WORKING_MSG_INTERVAL = 5 * 60 |
| 27 | |
| 28 | class TestsWithSourceFile(unittest.TestCase): |
| 29 | def setUp(self): |
| 30 | # Create test data. |
Guido van Rossum | 805365e | 2007-05-07 22:24:25 +0000 | [diff] [blame] | 31 | line_gen = ("Test of zipfile line %d." % i for i in range(1000000)) |
Amaury Forgeot d'Arc | 3be2f04 | 2008-11-12 01:57:36 +0000 | [diff] [blame] | 32 | self.data = '\n'.join(line_gen).encode('ascii') |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 33 | |
| 34 | # And write it to a file. |
| 35 | fp = open(TESTFN, "wb") |
| 36 | fp.write(self.data) |
| 37 | fp.close() |
| 38 | |
| 39 | def zipTest(self, f, compression): |
| 40 | # Create the ZIP archive. |
| 41 | zipfp = zipfile.ZipFile(f, "w", compression, allowZip64=True) |
| 42 | |
| 43 | # It will contain enough copies of self.data to reach about 6GB of |
| 44 | # raw data to store. |
| 45 | filecount = 6*1024**3 // len(self.data) |
| 46 | |
| 47 | next_time = time.time() + _PRINT_WORKING_MSG_INTERVAL |
| 48 | for num in range(filecount): |
| 49 | zipfp.writestr("testfn%d" % num, self.data) |
| 50 | # Print still working message since this test can be really slow |
| 51 | if next_time <= time.time(): |
| 52 | next_time = time.time() + _PRINT_WORKING_MSG_INTERVAL |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 53 | print(( |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 54 | ' zipTest still writing %d of %d, be patient...' % |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 55 | (num, filecount)), file=sys.__stdout__) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 56 | sys.__stdout__.flush() |
| 57 | zipfp.close() |
| 58 | |
| 59 | # Read the ZIP archive |
| 60 | zipfp = zipfile.ZipFile(f, "r", compression) |
| 61 | for num in range(filecount): |
| 62 | self.assertEqual(zipfp.read("testfn%d" % num), self.data) |
| 63 | # Print still working message since this test can be really slow |
| 64 | if next_time <= time.time(): |
| 65 | next_time = time.time() + _PRINT_WORKING_MSG_INTERVAL |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 66 | print(( |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 67 | ' zipTest still reading %d of %d, be patient...' % |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 68 | (num, filecount)), file=sys.__stdout__) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 69 | sys.__stdout__.flush() |
| 70 | zipfp.close() |
| 71 | |
| 72 | def testStored(self): |
| 73 | # Try the temp file first. If we do TESTFN2 first, then it hogs |
| 74 | # gigabytes of disk space for the duration of the test. |
| 75 | for f in TemporaryFile(), TESTFN2: |
| 76 | self.zipTest(f, zipfile.ZIP_STORED) |
| 77 | |
Ezio Melotti | 975077a | 2011-05-19 22:03:22 +0300 | [diff] [blame^] | 78 | @requires_zlib |
| 79 | def testDeflated(self): |
| 80 | # Try the temp file first. If we do TESTFN2 first, then it hogs |
| 81 | # gigabytes of disk space for the duration of the test. |
| 82 | for f in TemporaryFile(), TESTFN2: |
| 83 | self.zipTest(f, zipfile.ZIP_DEFLATED) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 84 | |
| 85 | def tearDown(self): |
| 86 | for fname in TESTFN, TESTFN2: |
| 87 | if os.path.exists(fname): |
| 88 | os.remove(fname) |
| 89 | |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 90 | |
| 91 | class OtherTests(unittest.TestCase): |
| 92 | def testMoreThan64kFiles(self): |
| 93 | # This test checks that more than 64k files can be added to an archive, |
| 94 | # and that the resulting archive can be read properly by ZipFile |
| 95 | zipf = zipfile.ZipFile(TESTFN, mode="w") |
| 96 | zipf.debug = 100 |
Amaury Forgeot d'Arc | 3be2f04 | 2008-11-12 01:57:36 +0000 | [diff] [blame] | 97 | numfiles = (1 << 16) * 3//2 |
| 98 | for i in range(numfiles): |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 99 | zipf.writestr("foo%08d" % i, "%d" % (i**3 % 57)) |
| 100 | self.assertEqual(len(zipf.namelist()), numfiles) |
| 101 | zipf.close() |
| 102 | |
| 103 | zipf2 = zipfile.ZipFile(TESTFN, mode="r") |
| 104 | self.assertEqual(len(zipf2.namelist()), numfiles) |
Amaury Forgeot d'Arc | 3be2f04 | 2008-11-12 01:57:36 +0000 | [diff] [blame] | 105 | for i in range(numfiles): |
| 106 | content = zipf2.read("foo%08d" % i).decode('ascii') |
| 107 | self.assertEqual(content, "%d" % (i**3 % 57)) |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 108 | zipf.close() |
| 109 | |
| 110 | def tearDown(self): |
Amaury Forgeot d'Arc | 3be2f04 | 2008-11-12 01:57:36 +0000 | [diff] [blame] | 111 | support.unlink(TESTFN) |
| 112 | support.unlink(TESTFN2) |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 113 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 114 | def test_main(): |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 115 | run_unittest(TestsWithSourceFile, OtherTests) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 116 | |
| 117 | if __name__ == "__main__": |
| 118 | test_main() |