test_spawn.py 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. """Tests for distutils.spawn."""
  2. import unittest
  3. import os
  4. import time
  5. from test.test_support import captured_stdout, run_unittest
  6. from distutils.spawn import _nt_quote_args
  7. from distutils.spawn import spawn, find_executable
  8. from distutils.errors import DistutilsExecError
  9. from distutils.tests import support
  10. class SpawnTestCase(support.TempdirManager,
  11. support.LoggingSilencer,
  12. unittest.TestCase):
  13. def test_nt_quote_args(self):
  14. for (args, wanted) in ((['with space', 'nospace'],
  15. ['"with space"', 'nospace']),
  16. (['nochange', 'nospace'],
  17. ['nochange', 'nospace'])):
  18. res = _nt_quote_args(args)
  19. self.assertEqual(res, wanted)
  20. @unittest.skipUnless(os.name in ('nt', 'posix'),
  21. 'Runs only under posix or nt')
  22. def test_spawn(self):
  23. tmpdir = self.mkdtemp()
  24. # creating something executable
  25. # through the shell that returns 1
  26. if os.name == 'posix':
  27. exe = os.path.join(tmpdir, 'foo.sh')
  28. self.write_file(exe, '#!/bin/sh\nexit 1')
  29. os.chmod(exe, 0777)
  30. else:
  31. exe = os.path.join(tmpdir, 'foo.bat')
  32. self.write_file(exe, 'exit 1')
  33. os.chmod(exe, 0777)
  34. self.assertRaises(DistutilsExecError, spawn, [exe])
  35. # now something that works
  36. if os.name == 'posix':
  37. exe = os.path.join(tmpdir, 'foo.sh')
  38. self.write_file(exe, '#!/bin/sh\nexit 0')
  39. os.chmod(exe, 0777)
  40. else:
  41. exe = os.path.join(tmpdir, 'foo.bat')
  42. self.write_file(exe, 'exit 0')
  43. os.chmod(exe, 0777)
  44. spawn([exe]) # should work without any error
  45. def test_suite():
  46. return unittest.makeSuite(SpawnTestCase)
  47. if __name__ == "__main__":
  48. run_unittest(test_suite())