test_sysconfig.py 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. """Tests for distutils.sysconfig."""
  2. import os
  3. import test
  4. import unittest
  5. import shutil
  6. import subprocess
  7. import sys
  8. import textwrap
  9. from distutils import sysconfig
  10. from distutils.tests import support
  11. from test.test_support import TESTFN
  12. class SysconfigTestCase(support.EnvironGuard,
  13. unittest.TestCase):
  14. def setUp(self):
  15. super(SysconfigTestCase, self).setUp()
  16. self.makefile = None
  17. def tearDown(self):
  18. if self.makefile is not None:
  19. os.unlink(self.makefile)
  20. self.cleanup_testfn()
  21. super(SysconfigTestCase, self).tearDown()
  22. def cleanup_testfn(self):
  23. path = test.test_support.TESTFN
  24. if os.path.isfile(path):
  25. os.remove(path)
  26. elif os.path.isdir(path):
  27. shutil.rmtree(path)
  28. def test_get_python_lib(self):
  29. lib_dir = sysconfig.get_python_lib()
  30. # XXX doesn't work on Linux when Python was never installed before
  31. #self.assertTrue(os.path.isdir(lib_dir), lib_dir)
  32. # test for pythonxx.lib?
  33. self.assertNotEqual(sysconfig.get_python_lib(),
  34. sysconfig.get_python_lib(prefix=TESTFN))
  35. _sysconfig = __import__('sysconfig')
  36. res = sysconfig.get_python_lib(True, True)
  37. self.assertEqual(_sysconfig.get_path('platstdlib'), res)
  38. def test_get_python_inc(self):
  39. inc_dir = sysconfig.get_python_inc()
  40. # This is not much of a test. We make sure Python.h exists
  41. # in the directory returned by get_python_inc() but we don't know
  42. # it is the correct file.
  43. self.assertTrue(os.path.isdir(inc_dir), inc_dir)
  44. python_h = os.path.join(inc_dir, "Python.h")
  45. self.assertTrue(os.path.isfile(python_h), python_h)
  46. def test_parse_makefile_base(self):
  47. self.makefile = test.test_support.TESTFN
  48. fd = open(self.makefile, 'w')
  49. try:
  50. fd.write(r"CONFIG_ARGS= '--arg1=optarg1' 'ENV=LIB'" '\n')
  51. fd.write('VAR=$OTHER\nOTHER=foo')
  52. finally:
  53. fd.close()
  54. d = sysconfig.parse_makefile(self.makefile)
  55. self.assertEqual(d, {'CONFIG_ARGS': "'--arg1=optarg1' 'ENV=LIB'",
  56. 'OTHER': 'foo'})
  57. def test_parse_makefile_literal_dollar(self):
  58. self.makefile = test.test_support.TESTFN
  59. fd = open(self.makefile, 'w')
  60. try:
  61. fd.write(r"CONFIG_ARGS= '--arg1=optarg1' 'ENV=\$$LIB'" '\n')
  62. fd.write('VAR=$OTHER\nOTHER=foo')
  63. finally:
  64. fd.close()
  65. d = sysconfig.parse_makefile(self.makefile)
  66. self.assertEqual(d, {'CONFIG_ARGS': r"'--arg1=optarg1' 'ENV=\$LIB'",
  67. 'OTHER': 'foo'})
  68. def test_sysconfig_module(self):
  69. import sysconfig as global_sysconfig
  70. self.assertEqual(global_sysconfig.get_config_var('CFLAGS'), sysconfig.get_config_var('CFLAGS'))
  71. self.assertEqual(global_sysconfig.get_config_var('LDFLAGS'), sysconfig.get_config_var('LDFLAGS'))
  72. @unittest.skipIf(sysconfig.get_config_var('CUSTOMIZED_OSX_COMPILER'),'compiler flags customized')
  73. def test_sysconfig_compiler_vars(self):
  74. # On OS X, binary installers support extension module building on
  75. # various levels of the operating system with differing Xcode
  76. # configurations. This requires customization of some of the
  77. # compiler configuration directives to suit the environment on
  78. # the installed machine. Some of these customizations may require
  79. # running external programs and, so, are deferred until needed by
  80. # the first extension module build. With Python 3.3, only
  81. # the Distutils version of sysconfig is used for extension module
  82. # builds, which happens earlier in the Distutils tests. This may
  83. # cause the following tests to fail since no tests have caused
  84. # the global version of sysconfig to call the customization yet.
  85. # The solution for now is to simply skip this test in this case.
  86. # The longer-term solution is to only have one version of sysconfig.
  87. import sysconfig as global_sysconfig
  88. if sysconfig.get_config_var('CUSTOMIZED_OSX_COMPILER'):
  89. self.skipTest('compiler flags customized')
  90. self.assertEqual(global_sysconfig.get_config_var('LDSHARED'), sysconfig.get_config_var('LDSHARED'))
  91. self.assertEqual(global_sysconfig.get_config_var('CC'), sysconfig.get_config_var('CC'))
  92. def test_customize_compiler_before_get_config_vars(self):
  93. # Issue #21923: test that a Distribution compiler
  94. # instance can be called without an explicit call to
  95. # get_config_vars().
  96. with open(TESTFN, 'w') as f:
  97. f.writelines(textwrap.dedent('''\
  98. from distutils.core import Distribution
  99. config = Distribution().get_command_obj('config')
  100. # try_compile may pass or it may fail if no compiler
  101. # is found but it should not raise an exception.
  102. rc = config.try_compile('int x;')
  103. '''))
  104. p = subprocess.Popen([str(sys.executable), TESTFN],
  105. stdout=subprocess.PIPE,
  106. stderr=subprocess.STDOUT,
  107. universal_newlines=True)
  108. outs, errs = p.communicate()
  109. self.assertEqual(0, p.returncode, "Subprocess failed: " + outs)
  110. def test_suite():
  111. suite = unittest.TestSuite()
  112. suite.addTest(unittest.makeSuite(SysconfigTestCase))
  113. return suite
  114. if __name__ == '__main__':
  115. test.test_support.run_unittest(test_suite())