/opt/imh-python/lib/python3.9/distutils/tests
NameSizeModeActions
__pycache__/-0755rm
includetest.rst250644editdlrm
Setup.sample22490644editdlrm
support.py64780644editdlrm
test_archive_util.py143010644editdlrm
test_bdist.py18930644editdlrm
test_bdist_dumb.py29050644editdlrm
test_bdist_msi.py8030644editdlrm
test_bdist_rpm.py50080644editdlrm
test_bdist_wininst.py13900644editdlrm
test_build.py19650644editdlrm
test_build_clib.py46310644editdlrm
test_build_ext.py206330644editdlrm
test_build_py.py63350644editdlrm
test_build_scripts.py35930644editdlrm
test_check.py57110644editdlrm
test_clean.py14410644editdlrm
test_cmd.py38350644editdlrm
test_config.py38920644editdlrm
test_config_cmd.py30230644editdlrm
test_core.py40770644editdlrm
test_cygwinccompiler.py56360644editdlrm
test_dep_util.py28200644editdlrm
test_dir_util.py46540644editdlrm
test_dist.py190800644editdlrm
test_extension.py27680644editdlrm
test_filelist.py114750644editdlrm
test_file_util.py44130644editdlrm
test_install.py86120644editdlrm
test_install_data.py25770644editdlrm
test_install_headers.py12380644editdlrm
test_install_lib.py39740644editdlrm
test_install_scripts.py26250644editdlrm
test_log.py18640644editdlrm
test_msvc9compiler.py60380644editdlrm
test_msvccompiler.py28450644editdlrm
test_register.py97650644editdlrm
test_sdist.py170470644editdlrm
test_spawn.py54600644editdlrm
test_sysconfig.py110450644editdlrm
test_text_file.py34360644editdlrm
test_unixccompiler.py46280644editdlrm
test_upload.py71370644editdlrm
test_util.py115720644editdlrm
test_version.py34500644editdlrm
test_versionpredicate.py2800644editdlrm
xxmodule.c129150644editdlrm
__init__.py13440644editdlrm
Edit: /opt/imh-python/lib/python3.9/distutils/tests/test_spawn.py (5460B)
"""Tests for distutils.spawn.""" import os import stat import sys import unittest.mock from test.support import run_unittest, unix_shell from test import support as test_support from distutils.spawn import find_executable from distutils.spawn import spawn from distutils.errors import DistutilsExecError from distutils.tests import support class SpawnTestCase(support.TempdirManager, support.LoggingSilencer, unittest.TestCase): @unittest.skipUnless(os.name in ('nt', 'posix'), 'Runs only under posix or nt') def test_spawn(self): tmpdir = self.mkdtemp() # creating something executable # through the shell that returns 1 if sys.platform != 'win32': exe = os.path.join(tmpdir, 'foo.sh') self.write_file(exe, '#!%s\nexit 1' % unix_shell) else: exe = os.path.join(tmpdir, 'foo.bat') self.write_file(exe, 'exit 1') os.chmod(exe, 0o777) self.assertRaises(DistutilsExecError, spawn, [exe]) # now something that works if sys.platform != 'win32': exe = os.path.join(tmpdir, 'foo.sh') self.write_file(exe, '#!%s\nexit 0' % unix_shell) else: exe = os.path.join(tmpdir, 'foo.bat') self.write_file(exe, 'exit 0') os.chmod(exe, 0o777) spawn([exe]) # should work without any error def test_find_executable(self): with test_support.temp_dir() as tmp_dir: # use TESTFN to get a pseudo-unique filename program_noeext = test_support.TESTFN # Give the temporary program an ".exe" suffix for all. # It's needed on Windows and not harmful on other platforms. program = program_noeext + ".exe" filename = os.path.join(tmp_dir, program) with open(filename, "wb"): pass os.chmod(filename, stat.S_IXUSR) # test path parameter rv = find_executable(program, path=tmp_dir) self.assertEqual(rv, filename) if sys.platform == 'win32': # test without ".exe" extension rv = find_executable(program_noeext, path=tmp_dir) self.assertEqual(rv, filename) # test find in the current directory with test_support.change_cwd(tmp_dir): rv = find_executable(program) self.assertEqual(rv, program) # test non-existent program dont_exist_program = "dontexist_" + program rv = find_executable(dont_exist_program , path=tmp_dir) self.assertIsNone(rv) # PATH='': no match, except in the current directory with test_support.EnvironmentVarGuard() as env: env['PATH'] = '' with unittest.mock.patch('distutils.spawn.os.confstr', return_value=tmp_dir, create=True), \ unittest.mock.patch('distutils.spawn.os.defpath', tmp_dir): rv = find_executable(program) self.assertIsNone(rv) # look in current directory with test_support.change_cwd(tmp_dir): rv = find_executable(program) self.assertEqual(rv, program) # PATH=':': explicitly looks in the current directory with test_support.EnvironmentVarGuard() as env: env['PATH'] = os.pathsep with unittest.mock.patch('distutils.spawn.os.confstr', return_value='', create=True), \ unittest.mock.patch('distutils.spawn.os.defpath', ''): rv = find_executable(program) self.assertIsNone(rv) # look in current directory with test_support.change_cwd(tmp_dir): rv = find_executable(program) self.assertEqual(rv, program) # missing PATH: test os.confstr("CS_PATH") and os.defpath with test_support.EnvironmentVarGuard() as env: env.pop('PATH', None) # without confstr with unittest.mock.patch('distutils.spawn.os.confstr', side_effect=ValueError, create=True), \ unittest.mock.patch('distutils.spawn.os.defpath', tmp_dir): rv = find_executable(program) self.assertEqual(rv, filename) # with confstr with unittest.mock.patch('distutils.spawn.os.confstr', return_value=tmp_dir, create=True), \ unittest.mock.patch('distutils.spawn.os.defpath', ''): rv = find_executable(program) self.assertEqual(rv, filename) def test_spawn_missing_exe(self): with self.assertRaises(DistutilsExecError) as ctx: spawn(['does-not-exist']) self.assertIn("command 'does-not-exist' failed", str(ctx.exception)) def test_suite(): return unittest.makeSuite(SpawnTestCase) if __name__ == "__main__": run_unittest(test_suite())