mirror of
https://github.com/python/cpython.git
synced 2025-08-02 16:13:13 +00:00

svn+ssh://pythondev@svn.python.org/python/trunk ........ r78018 | georg.brandl | 2010-02-06 11:08:21 +0100 (Sa, 06 Feb 2010) | 1 line #7864: make deprecation notices a bit clearer. ........ r78035 | georg.brandl | 2010-02-06 23:44:17 +0100 (Sa, 06 Feb 2010) | 1 line Fix duplicate import. ........ r78036 | georg.brandl | 2010-02-06 23:49:47 +0100 (Sa, 06 Feb 2010) | 1 line Remove unused import. ........ r78037 | georg.brandl | 2010-02-06 23:59:15 +0100 (Sa, 06 Feb 2010) | 1 line No need to assign the results of expressions used only for side effects. ........ r78038 | georg.brandl | 2010-02-07 00:02:29 +0100 (So, 07 Feb 2010) | 1 line Add a missing import. ........ r78039 | georg.brandl | 2010-02-07 00:06:24 +0100 (So, 07 Feb 2010) | 1 line Add missing imports. ........ r78040 | georg.brandl | 2010-02-07 00:08:00 +0100 (So, 07 Feb 2010) | 1 line Fix a few UnboundLocalErrors in test_long. ........ r78042 | georg.brandl | 2010-02-07 00:12:12 +0100 (So, 07 Feb 2010) | 1 line Add missing import. ........ r78043 | georg.brandl | 2010-02-07 00:12:19 +0100 (So, 07 Feb 2010) | 1 line Remove duplicate test method. ........ r78046 | georg.brandl | 2010-02-07 00:18:00 +0100 (So, 07 Feb 2010) | 1 line Fix various missing import/unbound name errors. ........ r78048 | georg.brandl | 2010-02-07 00:23:45 +0100 (So, 07 Feb 2010) | 1 line We heard you like test failures so we put unbound locals in your test so that you can fail while you fail. ........ r78049 | georg.brandl | 2010-02-07 00:33:33 +0100 (So, 07 Feb 2010) | 1 line Fix import/access for some identifiers. _TestSharedCTypes does not seem to be executed? ........ r78050 | georg.brandl | 2010-02-07 00:34:10 +0100 (So, 07 Feb 2010) | 1 line Fix more unbound locals in code paths that do not seem to be used. ........ r78051 | georg.brandl | 2010-02-07 00:53:52 +0100 (So, 07 Feb 2010) | 1 line Add missing import when running these tests standalone. ........ r78052 | georg.brandl | 2010-02-07 00:54:04 +0100 (So, 07 Feb 2010) | 1 line Add missing import when running these tests standalone. ........ r78054 | georg.brandl | 2010-02-07 00:58:25 +0100 (So, 07 Feb 2010) | 1 line Add missing import. ........ r78059 | georg.brandl | 2010-02-07 12:34:15 +0100 (So, 07 Feb 2010) | 1 line Use "regexp" consistently. ........ r78075 | georg.brandl | 2010-02-07 13:16:12 +0100 (So, 07 Feb 2010) | 1 line Fix another duplicated test method. ........ r78076 | georg.brandl | 2010-02-07 13:19:43 +0100 (So, 07 Feb 2010) | 1 line Fix wrong usage of "except X, Y:". ........ r78077 | georg.brandl | 2010-02-07 13:25:50 +0100 (So, 07 Feb 2010) | 1 line Fix two redefined test methods. ........ r78078 | georg.brandl | 2010-02-07 13:27:06 +0100 (So, 07 Feb 2010) | 1 line Fix a redefined test method. ........ r78079 | georg.brandl | 2010-02-07 13:34:26 +0100 (So, 07 Feb 2010) | 1 line Add a minimal test for fnmatchcase(). ........ r78080 | georg.brandl | 2010-02-07 13:55:12 +0100 (So, 07 Feb 2010) | 1 line Remove duplicate test method. ........
105 lines
3.1 KiB
Python
105 lines
3.1 KiB
Python
"""Tests for distutils.command.bdist_dumb."""
|
|
|
|
import unittest
|
|
import sys
|
|
import os
|
|
|
|
# zlib is not used here, but if it's not available
|
|
# test_simple_built will fail
|
|
try:
|
|
import zlib
|
|
except ImportError:
|
|
zlib = None
|
|
|
|
from test.support import run_unittest
|
|
|
|
from distutils.core import Distribution
|
|
from distutils.command.bdist_dumb import bdist_dumb
|
|
from distutils.tests import support
|
|
|
|
SETUP_PY = """\
|
|
from distutils.core import setup
|
|
import foo
|
|
|
|
setup(name='foo', version='0.1', py_modules=['foo'],
|
|
url='xxx', author='xxx', author_email='xxx')
|
|
|
|
"""
|
|
|
|
class BuildDumbTestCase(support.TempdirManager,
|
|
support.LoggingSilencer,
|
|
support.EnvironGuard,
|
|
unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
super(BuildDumbTestCase, self).setUp()
|
|
self.old_location = os.getcwd()
|
|
self.old_sys_argv = sys.argv, sys.argv[:]
|
|
|
|
def tearDown(self):
|
|
os.chdir(self.old_location)
|
|
sys.argv = self.old_sys_argv[0]
|
|
sys.argv[:] = self.old_sys_argv[1]
|
|
super(BuildDumbTestCase, self).tearDown()
|
|
|
|
@unittest.skipUnless(zlib, "requires zlib")
|
|
def test_simple_built(self):
|
|
|
|
# let's create a simple package
|
|
tmp_dir = self.mkdtemp()
|
|
pkg_dir = os.path.join(tmp_dir, 'foo')
|
|
os.mkdir(pkg_dir)
|
|
self.write_file((pkg_dir, 'setup.py'), SETUP_PY)
|
|
self.write_file((pkg_dir, 'foo.py'), '#')
|
|
self.write_file((pkg_dir, 'MANIFEST.in'), 'include foo.py')
|
|
self.write_file((pkg_dir, 'README'), '')
|
|
|
|
dist = Distribution({'name': 'foo', 'version': '0.1',
|
|
'py_modules': ['foo'],
|
|
'url': 'xxx', 'author': 'xxx',
|
|
'author_email': 'xxx'})
|
|
dist.script_name = 'setup.py'
|
|
os.chdir(pkg_dir)
|
|
|
|
sys.argv = ['setup.py']
|
|
cmd = bdist_dumb(dist)
|
|
|
|
# so the output is the same no matter
|
|
# what is the platform
|
|
cmd.format = 'zip'
|
|
|
|
cmd.ensure_finalized()
|
|
cmd.run()
|
|
|
|
# see what we have
|
|
dist_created = os.listdir(os.path.join(pkg_dir, 'dist'))
|
|
base = "%s.%s" % (dist.get_fullname(), cmd.plat_name)
|
|
if os.name == 'os2':
|
|
base = base.replace(':', '-')
|
|
|
|
wanted = ['%s.zip' % base]
|
|
self.assertEquals(dist_created, wanted)
|
|
|
|
# now let's check what we have in the zip file
|
|
# XXX to be done
|
|
|
|
def test_finalize_options(self):
|
|
pkg_dir, dist = self.create_dist()
|
|
os.chdir(pkg_dir)
|
|
cmd = bdist_dumb(dist)
|
|
self.assertEquals(cmd.bdist_dir, None)
|
|
cmd.finalize_options()
|
|
|
|
# bdist_dir is initialized to bdist_base/dumb if not set
|
|
base = cmd.get_finalized_command('bdist').bdist_base
|
|
self.assertEquals(cmd.bdist_dir, os.path.join(base, 'dumb'))
|
|
|
|
# the format is set to a default value depending on the os.name
|
|
default = cmd.default_format[os.name]
|
|
self.assertEquals(cmd.format, default)
|
|
|
|
def test_suite():
|
|
return unittest.makeSuite(BuildDumbTestCase)
|
|
|
|
if __name__ == '__main__':
|
|
run_unittest(test_suite())
|