test_util.py 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. """Tests for distutils.util."""
  2. import sys
  3. import unittest
  4. from test.test_support import run_unittest
  5. from distutils.errors import DistutilsByteCompileError
  6. from distutils.util import byte_compile, grok_environment_error
  7. class UtilTestCase(unittest.TestCase):
  8. def test_dont_write_bytecode(self):
  9. # makes sure byte_compile raise a DistutilsError
  10. # if sys.dont_write_bytecode is True
  11. old_dont_write_bytecode = sys.dont_write_bytecode
  12. sys.dont_write_bytecode = True
  13. try:
  14. self.assertRaises(DistutilsByteCompileError, byte_compile, [])
  15. finally:
  16. sys.dont_write_bytecode = old_dont_write_bytecode
  17. def test_grok_environment_error(self):
  18. # test obsolete function to ensure backward compat (#4931)
  19. exc = IOError("Unable to find batch file")
  20. msg = grok_environment_error(exc)
  21. self.assertEqual(msg, "error: Unable to find batch file")
  22. def test_suite():
  23. return unittest.makeSuite(UtilTestCase)
  24. if __name__ == "__main__":
  25. run_unittest(test_suite())