2008-05-18 08:52:36 -03:00
|
|
|
import sys
|
|
|
|
import os
|
2009-02-13 12:20:24 -04:00
|
|
|
import tempfile
|
2008-05-18 08:52:36 -03:00
|
|
|
import shutil
|
|
|
|
from StringIO import StringIO
|
|
|
|
|
|
|
|
from distutils.core import Extension, Distribution
|
|
|
|
from distutils.command.build_ext import build_ext
|
|
|
|
from distutils import sysconfig
|
2009-05-10 07:24:16 -03:00
|
|
|
from distutils.tests import support
|
|
|
|
from distutils.errors import DistutilsSetupError
|
2008-05-18 08:52:36 -03:00
|
|
|
|
|
|
|
import unittest
|
|
|
|
from test import test_support
|
|
|
|
|
2009-02-13 12:20:24 -04:00
|
|
|
# http://bugs.python.org/issue4373
|
|
|
|
# Don't load the xx module more than once.
|
|
|
|
ALREADY_TESTED = False
|
|
|
|
|
2009-05-10 07:24:16 -03:00
|
|
|
class BuildExtTestCase(support.TempdirManager,
|
|
|
|
support.LoggingSilencer,
|
|
|
|
unittest.TestCase):
|
2008-05-18 08:52:36 -03:00
|
|
|
def setUp(self):
|
|
|
|
# Create a simple test environment
|
|
|
|
# Note that we're making changes to sys.path
|
2009-05-10 07:24:16 -03:00
|
|
|
super(BuildExtTestCase, self).setUp()
|
2009-02-13 12:20:24 -04:00
|
|
|
self.tmp_dir = tempfile.mkdtemp(prefix="pythontest_")
|
2008-05-18 08:52:36 -03:00
|
|
|
self.sys_path = sys.path[:]
|
|
|
|
sys.path.append(self.tmp_dir)
|
|
|
|
|
|
|
|
xx_c = os.path.join(sysconfig.project_base, 'Modules', 'xxmodule.c')
|
|
|
|
shutil.copy(xx_c, self.tmp_dir)
|
|
|
|
|
|
|
|
def test_build_ext(self):
|
2009-02-13 12:20:24 -04:00
|
|
|
global ALREADY_TESTED
|
2008-05-18 08:52:36 -03:00
|
|
|
xx_c = os.path.join(self.tmp_dir, 'xxmodule.c')
|
|
|
|
xx_ext = Extension('xx', [xx_c])
|
|
|
|
dist = Distribution({'name': 'xx', 'ext_modules': [xx_ext]})
|
|
|
|
dist.package_dir = self.tmp_dir
|
|
|
|
cmd = build_ext(dist)
|
2008-05-26 08:42:40 -03:00
|
|
|
if os.name == "nt":
|
|
|
|
# On Windows, we must build a debug version iff running
|
|
|
|
# a debug build of Python
|
|
|
|
cmd.debug = sys.executable.endswith("_d.exe")
|
2008-05-18 08:52:36 -03:00
|
|
|
cmd.build_lib = self.tmp_dir
|
|
|
|
cmd.build_temp = self.tmp_dir
|
|
|
|
|
|
|
|
old_stdout = sys.stdout
|
|
|
|
if not test_support.verbose:
|
|
|
|
# silence compiler output
|
|
|
|
sys.stdout = StringIO()
|
|
|
|
try:
|
|
|
|
cmd.ensure_finalized()
|
|
|
|
cmd.run()
|
|
|
|
finally:
|
|
|
|
sys.stdout = old_stdout
|
|
|
|
|
2009-02-13 12:20:24 -04:00
|
|
|
if ALREADY_TESTED:
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
ALREADY_TESTED = True
|
|
|
|
|
2008-05-18 08:52:36 -03:00
|
|
|
import xx
|
|
|
|
|
|
|
|
for attr in ('error', 'foo', 'new', 'roj'):
|
|
|
|
self.assert_(hasattr(xx, attr))
|
|
|
|
|
|
|
|
self.assertEquals(xx.foo(2, 5), 7)
|
|
|
|
self.assertEquals(xx.foo(13,15), 28)
|
|
|
|
self.assertEquals(xx.new().demo(), None)
|
|
|
|
doc = 'This is a template module just for instruction.'
|
|
|
|
self.assertEquals(xx.__doc__, doc)
|
|
|
|
self.assert_(isinstance(xx.Null(), xx.Null))
|
|
|
|
self.assert_(isinstance(xx.Str(), xx.Str))
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
# Get everything back to normal
|
|
|
|
test_support.unload('xx')
|
|
|
|
sys.path = self.sys_path
|
2008-09-21 17:48:41 -03:00
|
|
|
# XXX on Windows the test leaves a directory with xx module in TEMP
|
|
|
|
shutil.rmtree(self.tmp_dir, os.name == 'nt' or sys.platform == 'cygwin')
|
2009-05-10 07:24:16 -03:00
|
|
|
super(BuildExtTestCase, self).tearDown()
|
2008-05-18 08:52:36 -03:00
|
|
|
|
2009-02-05 18:55:00 -04:00
|
|
|
def test_solaris_enable_shared(self):
|
|
|
|
dist = Distribution({'name': 'xx'})
|
|
|
|
cmd = build_ext(dist)
|
|
|
|
old = sys.platform
|
|
|
|
|
|
|
|
sys.platform = 'sunos' # fooling finalize_options
|
|
|
|
from distutils.sysconfig import _config_vars
|
|
|
|
old_var = _config_vars.get('Py_ENABLE_SHARED')
|
|
|
|
_config_vars['Py_ENABLE_SHARED'] = 1
|
|
|
|
try:
|
|
|
|
cmd.ensure_finalized()
|
|
|
|
finally:
|
|
|
|
sys.platform = old
|
|
|
|
if old_var is None:
|
|
|
|
del _config_vars['Py_ENABLE_SHARED']
|
|
|
|
else:
|
|
|
|
_config_vars['Py_ENABLE_SHARED'] = old_var
|
|
|
|
|
2009-05-12 14:11:54 -03:00
|
|
|
# make sure we get some library dirs under solaris
|
2009-02-05 18:55:00 -04:00
|
|
|
self.assert_(len(cmd.library_dirs) > 0)
|
|
|
|
|
2009-05-10 07:24:16 -03:00
|
|
|
def test_finalize_options(self):
|
|
|
|
# Make sure Python's include directories (for Python.h, pyconfig.h,
|
|
|
|
# etc.) are in the include search path.
|
|
|
|
modules = [Extension('foo', ['xxx'])]
|
|
|
|
dist = Distribution({'name': 'xx', 'ext_modules': modules})
|
|
|
|
cmd = build_ext(dist)
|
|
|
|
cmd.finalize_options()
|
|
|
|
|
|
|
|
from distutils import sysconfig
|
|
|
|
py_include = sysconfig.get_python_inc()
|
|
|
|
self.assert_(py_include in cmd.include_dirs)
|
|
|
|
|
|
|
|
plat_py_include = sysconfig.get_python_inc(plat_specific=1)
|
|
|
|
self.assert_(plat_py_include in cmd.include_dirs)
|
|
|
|
|
|
|
|
# make sure cmd.libraries is turned into a list
|
|
|
|
# if it's a string
|
|
|
|
cmd = build_ext(dist)
|
|
|
|
cmd.libraries = 'my_lib'
|
|
|
|
cmd.finalize_options()
|
|
|
|
self.assertEquals(cmd.libraries, ['my_lib'])
|
|
|
|
|
|
|
|
# make sure cmd.library_dirs is turned into a list
|
|
|
|
# if it's a string
|
|
|
|
cmd = build_ext(dist)
|
|
|
|
cmd.library_dirs = 'my_lib_dir'
|
|
|
|
cmd.finalize_options()
|
2009-05-10 18:33:09 -03:00
|
|
|
self.assert_('my_lib_dir' in cmd.library_dirs)
|
2009-05-10 07:24:16 -03:00
|
|
|
|
|
|
|
# make sure rpath is turned into a list
|
|
|
|
# if it's a list of os.pathsep's paths
|
|
|
|
cmd = build_ext(dist)
|
|
|
|
cmd.rpath = os.pathsep.join(['one', 'two'])
|
|
|
|
cmd.finalize_options()
|
|
|
|
self.assertEquals(cmd.rpath, ['one', 'two'])
|
|
|
|
|
|
|
|
# XXX more tests to perform for win32
|
|
|
|
|
|
|
|
# make sure define is turned into 2-tuples
|
|
|
|
# strings if they are ','-separated strings
|
|
|
|
cmd = build_ext(dist)
|
|
|
|
cmd.define = 'one,two'
|
|
|
|
cmd.finalize_options()
|
|
|
|
self.assertEquals(cmd.define, [('one', '1'), ('two', '1')])
|
|
|
|
|
|
|
|
# make sure undef is turned into a list of
|
|
|
|
# strings if they are ','-separated strings
|
|
|
|
cmd = build_ext(dist)
|
|
|
|
cmd.undef = 'one,two'
|
|
|
|
cmd.finalize_options()
|
|
|
|
self.assertEquals(cmd.undef, ['one', 'two'])
|
|
|
|
|
|
|
|
# make sure swig_opts is turned into a list
|
|
|
|
cmd = build_ext(dist)
|
|
|
|
cmd.swig_opts = None
|
|
|
|
cmd.finalize_options()
|
|
|
|
self.assertEquals(cmd.swig_opts, [])
|
|
|
|
|
|
|
|
cmd = build_ext(dist)
|
|
|
|
cmd.swig_opts = '1 2'
|
|
|
|
cmd.finalize_options()
|
|
|
|
self.assertEquals(cmd.swig_opts, ['1', '2'])
|
|
|
|
|
|
|
|
def test_check_extensions_list(self):
|
|
|
|
dist = Distribution()
|
|
|
|
cmd = build_ext(dist)
|
|
|
|
cmd.finalize_options()
|
|
|
|
|
|
|
|
#'extensions' option must be a list of Extension instances
|
|
|
|
self.assertRaises(DistutilsSetupError, cmd.check_extensions_list, 'foo')
|
|
|
|
|
|
|
|
# each element of 'ext_modules' option must be an
|
|
|
|
# Extension instance or 2-tuple
|
|
|
|
exts = [('bar', 'foo', 'bar'), 'foo']
|
|
|
|
self.assertRaises(DistutilsSetupError, cmd.check_extensions_list, exts)
|
|
|
|
|
|
|
|
# first element of each tuple in 'ext_modules'
|
|
|
|
# must be the extension name (a string) and match
|
|
|
|
# a python dotted-separated name
|
|
|
|
exts = [('foo-bar', '')]
|
|
|
|
self.assertRaises(DistutilsSetupError, cmd.check_extensions_list, exts)
|
|
|
|
|
|
|
|
# second element of each tuple in 'ext_modules'
|
|
|
|
# must be a ary (build info)
|
|
|
|
exts = [('foo.bar', '')]
|
|
|
|
self.assertRaises(DistutilsSetupError, cmd.check_extensions_list, exts)
|
|
|
|
|
|
|
|
# ok this one should pass
|
|
|
|
exts = [('foo.bar', {'sources': [''], 'libraries': 'foo',
|
|
|
|
'some': 'bar'})]
|
|
|
|
cmd.check_extensions_list(exts)
|
|
|
|
ext = exts[0]
|
|
|
|
self.assert_(isinstance(ext, Extension))
|
|
|
|
|
|
|
|
# check_extensions_list adds in ext the values passed
|
|
|
|
# when they are in ('include_dirs', 'library_dirs', 'libraries'
|
|
|
|
# 'extra_objects', 'extra_compile_args', 'extra_link_args')
|
|
|
|
self.assertEquals(ext.libraries, 'foo')
|
|
|
|
self.assert_(not hasattr(ext, 'some'))
|
|
|
|
|
|
|
|
# 'macros' element of build info dict must be 1- or 2-tuple
|
|
|
|
exts = [('foo.bar', {'sources': [''], 'libraries': 'foo',
|
|
|
|
'some': 'bar', 'macros': [('1', '2', '3'), 'foo']})]
|
|
|
|
self.assertRaises(DistutilsSetupError, cmd.check_extensions_list, exts)
|
|
|
|
|
|
|
|
exts[0][1]['macros'] = [('1', '2'), ('3',)]
|
|
|
|
cmd.check_extensions_list(exts)
|
|
|
|
self.assertEquals(exts[0].undef_macros, ['3'])
|
|
|
|
self.assertEquals(exts[0].define_macros, [('1', '2')])
|
|
|
|
|
|
|
|
def test_get_source_files(self):
|
|
|
|
modules = [Extension('foo', ['xxx'])]
|
|
|
|
dist = Distribution({'name': 'xx', 'ext_modules': modules})
|
|
|
|
cmd = build_ext(dist)
|
|
|
|
cmd.ensure_finalized()
|
|
|
|
self.assertEquals(cmd.get_source_files(), ['xxx'])
|
|
|
|
|
2009-05-12 14:11:54 -03:00
|
|
|
def test_compiler_option(self):
|
|
|
|
# cmd.compiler is an option and
|
|
|
|
# should not be overriden by a compiler instance
|
|
|
|
# when the command is run
|
|
|
|
dist = Distribution()
|
|
|
|
cmd = build_ext(dist)
|
|
|
|
cmd.compiler = 'unix'
|
|
|
|
cmd.ensure_finalized()
|
|
|
|
cmd.run()
|
|
|
|
self.assertEquals(cmd.compiler, 'unix')
|
|
|
|
|
2009-05-10 07:24:16 -03:00
|
|
|
def test_get_outputs(self):
|
2009-05-12 14:11:54 -03:00
|
|
|
tmp_dir = self.mkdtemp()
|
|
|
|
c_file = os.path.join(tmp_dir, 'foo.c')
|
2009-07-11 23:09:25 -03:00
|
|
|
self.write_file(c_file, 'void initfoo(void) {};\n')
|
2009-05-12 14:11:54 -03:00
|
|
|
ext = Extension('foo', [c_file])
|
|
|
|
dist = Distribution({'name': 'xx',
|
|
|
|
'ext_modules': [ext]})
|
2009-05-10 07:24:16 -03:00
|
|
|
cmd = build_ext(dist)
|
|
|
|
cmd.ensure_finalized()
|
|
|
|
self.assertEquals(len(cmd.get_outputs()), 1)
|
|
|
|
|
2009-05-12 14:11:54 -03:00
|
|
|
if os.name == "nt":
|
|
|
|
cmd.debug = sys.executable.endswith("_d.exe")
|
|
|
|
|
|
|
|
cmd.build_lib = os.path.join(self.tmp_dir, 'build')
|
|
|
|
cmd.build_temp = os.path.join(self.tmp_dir, 'tempt')
|
|
|
|
|
|
|
|
# issue #5977 : distutils build_ext.get_outputs
|
|
|
|
# returns wrong result with --inplace
|
2009-05-14 17:17:32 -03:00
|
|
|
other_tmp_dir = os.path.realpath(self.mkdtemp())
|
|
|
|
old_wd = os.getcwd()
|
|
|
|
os.chdir(other_tmp_dir)
|
|
|
|
try:
|
|
|
|
cmd.inplace = 1
|
|
|
|
cmd.run()
|
|
|
|
so_file = cmd.get_outputs()[0]
|
|
|
|
finally:
|
|
|
|
os.chdir(old_wd)
|
2009-05-12 14:11:54 -03:00
|
|
|
self.assert_(os.path.exists(so_file))
|
2009-05-18 05:05:17 -03:00
|
|
|
self.assertEquals(os.path.splitext(so_file)[-1],
|
|
|
|
sysconfig.get_config_var('SO'))
|
2009-05-12 14:11:54 -03:00
|
|
|
so_dir = os.path.dirname(so_file)
|
2009-05-14 17:17:32 -03:00
|
|
|
self.assertEquals(so_dir, other_tmp_dir)
|
2009-05-12 14:11:54 -03:00
|
|
|
|
|
|
|
cmd.inplace = 0
|
|
|
|
cmd.run()
|
|
|
|
so_file = cmd.get_outputs()[0]
|
|
|
|
self.assert_(os.path.exists(so_file))
|
2009-05-18 05:05:17 -03:00
|
|
|
self.assertEquals(os.path.splitext(so_file)[-1],
|
|
|
|
sysconfig.get_config_var('SO'))
|
2009-05-12 14:11:54 -03:00
|
|
|
so_dir = os.path.dirname(so_file)
|
|
|
|
self.assertEquals(so_dir, cmd.build_lib)
|
|
|
|
|
2009-05-19 13:19:15 -03:00
|
|
|
# inplace = 0, cmd.package = 'bar'
|
2009-07-03 05:31:31 -03:00
|
|
|
build_py = cmd.get_finalized_command('build_py')
|
|
|
|
build_py.package_dir = {'': 'bar'}
|
2009-05-19 13:19:15 -03:00
|
|
|
path = cmd.get_ext_fullpath('foo')
|
2009-07-03 05:31:31 -03:00
|
|
|
# checking that the last directory is the build_dir
|
2009-05-19 13:19:15 -03:00
|
|
|
path = os.path.split(path)[0]
|
2009-07-03 05:31:31 -03:00
|
|
|
self.assertEquals(path, cmd.build_lib)
|
2009-05-19 13:19:15 -03:00
|
|
|
|
|
|
|
# inplace = 1, cmd.package = 'bar'
|
|
|
|
cmd.inplace = 1
|
|
|
|
other_tmp_dir = os.path.realpath(self.mkdtemp())
|
|
|
|
old_wd = os.getcwd()
|
|
|
|
os.chdir(other_tmp_dir)
|
|
|
|
try:
|
|
|
|
path = cmd.get_ext_fullpath('foo')
|
|
|
|
finally:
|
|
|
|
os.chdir(old_wd)
|
|
|
|
# checking that the last directory is bar
|
|
|
|
path = os.path.split(path)[0]
|
|
|
|
lastdir = os.path.split(path)[-1]
|
2009-07-03 05:31:31 -03:00
|
|
|
self.assertEquals(lastdir, 'bar')
|
|
|
|
|
|
|
|
def test_ext_fullpath(self):
|
2009-07-10 06:13:17 -03:00
|
|
|
ext = sysconfig.get_config_vars()['SO']
|
2009-07-03 05:31:31 -03:00
|
|
|
dist = Distribution()
|
|
|
|
cmd = build_ext(dist)
|
|
|
|
cmd.inplace = 1
|
|
|
|
cmd.distribution.package_dir = {'': 'src'}
|
|
|
|
cmd.distribution.packages = ['lxml', 'lxml.html']
|
|
|
|
curdir = os.getcwd()
|
2009-07-10 06:13:17 -03:00
|
|
|
wanted = os.path.join(curdir, 'src', 'lxml', 'etree' + ext)
|
2009-07-03 05:31:31 -03:00
|
|
|
path = cmd.get_ext_fullpath('lxml.etree')
|
|
|
|
self.assertEquals(wanted, path)
|
|
|
|
|
|
|
|
# building lxml.etree not inplace
|
|
|
|
cmd.inplace = 0
|
|
|
|
cmd.build_lib = os.path.join(curdir, 'tmpdir')
|
2009-07-10 06:13:17 -03:00
|
|
|
wanted = os.path.join(curdir, 'tmpdir', 'lxml', 'etree' + ext)
|
2009-07-03 05:31:31 -03:00
|
|
|
path = cmd.get_ext_fullpath('lxml.etree')
|
|
|
|
self.assertEquals(wanted, path)
|
|
|
|
|
|
|
|
# building twisted.runner.portmap not inplace
|
|
|
|
build_py = cmd.get_finalized_command('build_py')
|
|
|
|
build_py.package_dir = {}
|
|
|
|
cmd.distribution.packages = ['twisted', 'twisted.runner.portmap']
|
|
|
|
path = cmd.get_ext_fullpath('twisted.runner.portmap')
|
|
|
|
wanted = os.path.join(curdir, 'tmpdir', 'twisted', 'runner',
|
2009-07-10 06:13:17 -03:00
|
|
|
'portmap' + ext)
|
2009-07-03 05:31:31 -03:00
|
|
|
self.assertEquals(wanted, path)
|
|
|
|
|
|
|
|
# building twisted.runner.portmap inplace
|
|
|
|
cmd.inplace = 1
|
|
|
|
path = cmd.get_ext_fullpath('twisted.runner.portmap')
|
2009-07-10 06:13:17 -03:00
|
|
|
wanted = os.path.join(curdir, 'twisted', 'runner', 'portmap' + ext)
|
2009-07-03 05:31:31 -03:00
|
|
|
self.assertEquals(wanted, path)
|
2009-05-19 13:19:15 -03:00
|
|
|
|
2008-05-18 08:52:36 -03:00
|
|
|
def test_suite():
|
|
|
|
if not sysconfig.python_build:
|
|
|
|
if test_support.verbose:
|
|
|
|
print 'test_build_ext: The test must be run in a python build dir'
|
|
|
|
return unittest.TestSuite()
|
|
|
|
else: return unittest.makeSuite(BuildExtTestCase)
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
test_support.run_unittest(test_suite())
|