blob: a8fb7aba5455c30c731a3ec3a935a389096f4509 [file] [log] [blame]
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001# Tests of the full ZIP64 functionality of zipfile
Benjamin Petersonee8712c2008-05-20 21:35:26 +00002# The support.requires call is the only reason for keeping this separate
Thomas Wouters0e3f5912006-08-11 14:57:12 +00003# from test_zipfile
Benjamin Petersonee8712c2008-05-20 21:35:26 +00004from test import support
Martin v. Löwisb09b8442008-07-03 14:13:42 +00005
Thomas Wouters0e3f5912006-08-11 14:57:12 +00006# 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 Petersonee8712c2008-05-20 21:35:26 +00009support.requires(
Thomas Wouters0e3f5912006-08-11 14:57:12 +000010 'extralargefile',
11 'test requires loads of disk-space bytes and a long time to run'
12 )
13
Thomas Wouters0e3f5912006-08-11 14:57:12 +000014import zipfile, os, unittest
15import time
16import sys
17
Guido van Rossum34d19282007-08-09 01:03:29 +000018from io import StringIO
Thomas Wouters0e3f5912006-08-11 14:57:12 +000019from tempfile import TemporaryFile
20
Ezio Melotti975077a2011-05-19 22:03:22 +030021from test.support import TESTFN, run_unittest, requires_zlib
Thomas Wouters0e3f5912006-08-11 14:57:12 +000022
23TESTFN2 = 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
28class TestsWithSourceFile(unittest.TestCase):
29 def setUp(self):
30 # Create test data.
Guido van Rossum805365e2007-05-07 22:24:25 +000031 line_gen = ("Test of zipfile line %d." % i for i in range(1000000))
Amaury Forgeot d'Arc3be2f042008-11-12 01:57:36 +000032 self.data = '\n'.join(line_gen).encode('ascii')
Thomas Wouters0e3f5912006-08-11 14:57:12 +000033
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 Rossumbe19ed72007-02-09 05:37:30 +000053 print((
Thomas Wouters0e3f5912006-08-11 14:57:12 +000054 ' zipTest still writing %d of %d, be patient...' %
Guido van Rossumbe19ed72007-02-09 05:37:30 +000055 (num, filecount)), file=sys.__stdout__)
Thomas Wouters0e3f5912006-08-11 14:57:12 +000056 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 Rossumbe19ed72007-02-09 05:37:30 +000066 print((
Thomas Wouters0e3f5912006-08-11 14:57:12 +000067 ' zipTest still reading %d of %d, be patient...' %
Guido van Rossumbe19ed72007-02-09 05:37:30 +000068 (num, filecount)), file=sys.__stdout__)
Thomas Wouters0e3f5912006-08-11 14:57:12 +000069 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 Melotti975077a2011-05-19 22:03:22 +030078 @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 Wouters0e3f5912006-08-11 14:57:12 +000084
85 def tearDown(self):
86 for fname in TESTFN, TESTFN2:
87 if os.path.exists(fname):
88 os.remove(fname)
89
Martin v. Löwisb09b8442008-07-03 14:13:42 +000090
91class 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'Arc3be2f042008-11-12 01:57:36 +000097 numfiles = (1 << 16) * 3//2
98 for i in range(numfiles):
Martin v. Löwisb09b8442008-07-03 14:13:42 +000099 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'Arc3be2f042008-11-12 01:57:36 +0000105 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öwisb09b8442008-07-03 14:13:42 +0000108 zipf.close()
109
110 def tearDown(self):
Amaury Forgeot d'Arc3be2f042008-11-12 01:57:36 +0000111 support.unlink(TESTFN)
112 support.unlink(TESTFN2)
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000113
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000114def test_main():
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000115 run_unittest(TestsWithSourceFile, OtherTests)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000116
117if __name__ == "__main__":
118 test_main()