Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Lib/distutils/archive_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,15 @@ def make_zipfile(base_name, base_dir, verbose=0, dry_run=0):
zip = zipfile.ZipFile(zip_filename, "w",
compression=zipfile.ZIP_STORED)

if base_dir != os.curdir:
path = os.path.normpath(os.path.join(base_dir, ''))
zip.write(path, path)
log.info("adding '%s'", path)
for dirpath, dirnames, filenames in os.walk(base_dir):
for name in dirnames:
path = os.path.normpath(os.path.join(dirpath, name, ''))
zip.write(path, path)
log.info("adding '%s'", path)
for name in filenames:
path = os.path.normpath(os.path.join(dirpath, name))
if os.path.isfile(path):
Expand Down
13 changes: 6 additions & 7 deletions Lib/distutils/tests/test_archive_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,12 +122,13 @@ def _tarinfo(self, path):
try:
names = tar.getnames()
names.sort()
return tuple(names)
return names
finally:
tar.close()

_created_files = ('dist', 'dist/file1', 'dist/file2',
'dist/sub', 'dist/sub/file3', 'dist/sub2')
_zip_created_files = ['dist/', 'dist/file1', 'dist/file2',
'dist/sub/', 'dist/sub/file3', 'dist/sub2/']
_created_files = [p.rstrip('/') for p in _zip_created_files]

def _create_files(self):
# creating something to tar
Expand Down Expand Up @@ -244,8 +245,7 @@ def test_make_zipfile(self):
tarball = base_name + '.zip'
self.assertTrue(os.path.exists(tarball))
with zipfile.ZipFile(tarball) as zf:
self.assertEqual(sorted(zf.namelist()),
['dist/file1', 'dist/file2', 'dist/sub/file3'])
self.assertEqual(sorted(zf.namelist()), self._zip_created_files)

@unittest.skipUnless(ZIP_SUPPORT, 'Need zip support to run')
def test_make_zipfile_no_zlib(self):
Expand All @@ -271,8 +271,7 @@ def fake_zipfile(*a, **kw):
[((tarball, "w"), {'compression': zipfile.ZIP_STORED})])
self.assertTrue(os.path.exists(tarball))
with zipfile.ZipFile(tarball) as zf:
self.assertEqual(sorted(zf.namelist()),
['dist/file1', 'dist/file2', 'dist/sub/file3'])
self.assertEqual(sorted(zf.namelist()), self._zip_created_files)

def test_check_archive_formats(self):
self.assertEqual(check_archive_formats(['gztar', 'xxx', 'zip']),
Expand Down
2 changes: 1 addition & 1 deletion Lib/distutils/tests/test_bdist_dumb.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def test_simple_built(self):
finally:
fp.close()

contents = sorted(os.path.basename(fn) for fn in contents)
contents = sorted(filter(None, map(os.path.basename, contents)))
wanted = ['foo-0.1-py%s.%s.egg-info' % sys.version_info[:2], 'foo.py']
if not sys.dont_write_bytecode:
wanted.append('foo.%s.pyc' % sys.implementation.cache_tag)
Expand Down
12 changes: 10 additions & 2 deletions Lib/distutils/tests/test_sdist.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,9 @@ def test_prune_file_list(self):
zip_file.close()

# making sure everything has been pruned correctly
self.assertEqual(len(content), 4)
expected = ['', 'PKG-INFO', 'README', 'setup.py',
'somecode/', 'somecode/__init__.py']
self.assertEqual(sorted(content), ['fake-1.0/' + x for x in expected])

@unittest.skipUnless(ZLIB_SUPPORT, 'Need zlib support to run')
@unittest.skipIf(find_executable('tar') is None,
Expand Down Expand Up @@ -226,7 +228,13 @@ def test_add_defaults(self):
zip_file.close()

# making sure everything was added
self.assertEqual(len(content), 12)
expected = ['', 'PKG-INFO', 'README', 'buildout.cfg',
'data/', 'data/data.dt', 'inroot.txt',
'scripts/', 'scripts/script.py', 'setup.py',
'some/', 'some/file.txt', 'some/other_file.txt',
'somecode/', 'somecode/__init__.py', 'somecode/doc.dat',
'somecode/doc.txt']
self.assertEqual(sorted(content), ['fake-1.0/' + x for x in expected])

# checking the MANIFEST
f = open(join(self.tmp_dir, 'MANIFEST'))
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ZIP files created by :mod:`distutils` will now include entries for
directories.