test_ccompiler.py 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. """Tests for distutils.ccompiler."""
  2. import os
  3. import unittest
  4. from test.test_support import captured_stdout
  5. from distutils.ccompiler import (gen_lib_options, CCompiler,
  6. get_default_compiler)
  7. from distutils.sysconfig import customize_compiler
  8. from distutils import debug
  9. from distutils.tests import support
  10. class FakeCompiler(object):
  11. def library_dir_option(self, dir):
  12. return "-L" + dir
  13. def runtime_library_dir_option(self, dir):
  14. return ["-cool", "-R" + dir]
  15. def find_library_file(self, dirs, lib, debug=0):
  16. return 'found'
  17. def library_option(self, lib):
  18. return "-l" + lib
  19. class CCompilerTestCase(support.EnvironGuard, unittest.TestCase):
  20. def test_gen_lib_options(self):
  21. compiler = FakeCompiler()
  22. libdirs = ['lib1', 'lib2']
  23. runlibdirs = ['runlib1']
  24. libs = [os.path.join('dir', 'name'), 'name2']
  25. opts = gen_lib_options(compiler, libdirs, runlibdirs, libs)
  26. wanted = ['-Llib1', '-Llib2', '-cool', '-Rrunlib1', 'found',
  27. '-lname2']
  28. self.assertEqual(opts, wanted)
  29. def test_debug_print(self):
  30. class MyCCompiler(CCompiler):
  31. executables = {}
  32. compiler = MyCCompiler()
  33. with captured_stdout() as stdout:
  34. compiler.debug_print('xxx')
  35. stdout.seek(0)
  36. self.assertEqual(stdout.read(), '')
  37. debug.DEBUG = True
  38. try:
  39. with captured_stdout() as stdout:
  40. compiler.debug_print('xxx')
  41. stdout.seek(0)
  42. self.assertEqual(stdout.read(), 'xxx\n')
  43. finally:
  44. debug.DEBUG = False
  45. @unittest.skipUnless(get_default_compiler() == 'unix',
  46. 'not testing if default compiler is not unix')
  47. def test_customize_compiler(self):
  48. os.environ['AR'] = 'my_ar'
  49. os.environ['ARFLAGS'] = '-arflags'
  50. # make sure AR gets caught
  51. class compiler:
  52. compiler_type = 'unix'
  53. def set_executables(self, **kw):
  54. self.exes = kw
  55. comp = compiler()
  56. customize_compiler(comp)
  57. self.assertEqual(comp.exes['archiver'], 'my_ar -arflags')
  58. def test_suite():
  59. return unittest.makeSuite(CCompilerTestCase)
  60. if __name__ == "__main__":
  61. unittest.main(defaultTest="test_suite")