changeset: 99292:43208b0f2535 branch: 2.7 parent: 99278:4f61b62bc09d user: Benjamin Peterson date: Sun Nov 22 19:04:56 2015 -0800 files: Lib/test/test_shutil.py Lib/zipfile.py Misc/ACKS Misc/NEWS description: Issue #25624: ZipFile now always writes a ZIP_STORED header for directory entries. Patch by Dingyuan Wang. diff -r 4f61b62bc09d -r 43208b0f2535 Lib/test/test_shutil.py --- a/Lib/test/test_shutil.py Sat Nov 21 18:38:18 2015 -0800 +++ b/Lib/test/test_shutil.py Sun Nov 22 19:04:56 2015 -0800 @@ -511,6 +511,29 @@ names2 = zf.namelist() self.assertEqual(sorted(names), sorted(names2)) + @unittest.skipUnless(zlib, "Requires zlib") + @unittest.skipUnless(ZIP_SUPPORT, 'Need zip support to run') + @unittest.skipUnless(find_executable('unzip'), + 'Need the unzip command to run') + def test_unzip_zipfile(self): + root_dir, base_dir = self._create_files() + base_name = os.path.join(self.mkdtemp(), 'archive') + archive = make_archive(base_name, 'zip', root_dir, base_dir) + + # check if ZIP file was created + self.assertEqual(archive, base_name + '.zip') + self.assertTrue(os.path.isfile(archive)) + + # now check the ZIP file using `unzip -t` + zip_cmd = ['unzip', '-t', archive] + with support.change_cwd(root_dir): + try: + subprocess.check_output(zip_cmd, stderr=subprocess.STDOUT) + except subprocess.CalledProcessError as exc: + details = exc.output + msg = "{}\n\n**Unzip Output**\n{}" + self.fail(msg.format(exc, details)) + def test_make_archive(self): tmpdir = self.mkdtemp() base_name = os.path.join(tmpdir, 'archive') diff -r 4f61b62bc09d -r 43208b0f2535 Lib/zipfile.py --- a/Lib/zipfile.py Sat Nov 21 18:38:18 2015 -0800 +++ b/Lib/zipfile.py Sun Nov 22 19:04:56 2015 -0800 @@ -1134,7 +1134,9 @@ arcname += '/' zinfo = ZipInfo(arcname, date_time) zinfo.external_attr = (st[0] & 0xFFFF) << 16L # Unix attributes - if compress_type is None: + if isdir: + zinfo.compress_type = ZIP_STORED + elif compress_type is None: zinfo.compress_type = self.compression else: zinfo.compress_type = compress_type diff -r 4f61b62bc09d -r 43208b0f2535 Misc/ACKS --- a/Misc/ACKS Sat Nov 21 18:38:18 2015 -0800 +++ b/Misc/ACKS Sun Nov 22 19:04:56 2015 -0800 @@ -1443,6 +1443,7 @@ Larry Wall Kevin Walzer Rodrigo Steinmuller Wanderley +Dingyuan Wang Ke Wang Greg Ward Tom Wardill diff -r 4f61b62bc09d -r 43208b0f2535 Misc/NEWS --- a/Misc/NEWS Sat Nov 21 18:38:18 2015 -0800 +++ b/Misc/NEWS Sun Nov 22 19:04:56 2015 -0800 @@ -13,6 +13,9 @@ Library ------- +- Issue #25624: ZipFile now always writes a ZIP_STORED header for directory + entries. Patch by Dingyuan Wang. + What's New in Python 2.7.11 release candidate 1? ================================================