diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-06-25 06:48:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-25 06:48:54 (GMT) |
commit | af5392f5c6f8014659e995840df6ee7b5017f743 (patch) | |
tree | 093bcef0c911b5d80ba5582beff456c95c39f554 /Lib | |
parent | 77703942c5997dff00c48f10df1b29b11645624c (diff) | |
download | cpython-af5392f5c6f8014659e995840df6ee7b5017f743.zip cpython-af5392f5c6f8014659e995840df6ee7b5017f743.tar.gz cpython-af5392f5c6f8014659e995840df6ee7b5017f743.tar.bz2 |
bpo-30746: Port more tests for os.spawnvpe() and os.execve() from 2.7. (#2394)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_os.py | 45 |
1 files changed, 36 insertions, 9 deletions
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index 6b30e0b..d069270 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -1571,6 +1571,27 @@ class ExecTests(unittest.TestCase): if os.name != "nt": self._test_internal_execvpe(bytes) + def test_execve_invalid_env(self): + args = [sys.executable, '-c', 'pass'] + + # null character in the enviroment variable name + newenv = os.environ.copy() + newenv["FRUIT\0VEGETABLE"] = "cabbage" + with self.assertRaises(ValueError): + os.execve(args[0], args, newenv) + + # null character in the enviroment variable value + newenv = os.environ.copy() + newenv["FRUIT"] = "orange\0VEGETABLE=cabbage" + with self.assertRaises(ValueError): + os.execve(args[0], args, newenv) + + # equal character in the enviroment variable name + newenv = os.environ.copy() + newenv["FRUIT=ORANGE"] = "lemon" + with self.assertRaises(ValueError): + os.execve(args[0], args, newenv) + @unittest.skipUnless(sys.platform == "win32", "Win32 specific tests") class Win32ErrorTests(unittest.TestCase): @@ -2382,36 +2403,34 @@ class SpawnTests(unittest.TestCase): self.assertRaises(ValueError, os.spawnve, os.P_NOWAIT, args[0], ('',), {}) self.assertRaises(ValueError, os.spawnve, os.P_NOWAIT, args[0], [''], {}) - @requires_os_func('spawnve') - def test_spawnve_invalid_env(self): - # null character in the enviroment variable name + def _test_invalid_env(self, spawn): args = [sys.executable, '-c', 'pass'] + + # null character in the enviroment variable name newenv = os.environ.copy() newenv["FRUIT\0VEGETABLE"] = "cabbage" try: - exitcode = os.spawnve(os.P_WAIT, args[0], args, newenv) + exitcode = spawn(os.P_WAIT, args[0], args, newenv) except ValueError: pass else: self.assertEqual(exitcode, 127) # null character in the enviroment variable value - args = [sys.executable, '-c', 'pass'] newenv = os.environ.copy() newenv["FRUIT"] = "orange\0VEGETABLE=cabbage" try: - exitcode = os.spawnve(os.P_WAIT, args[0], args, newenv) + exitcode = spawn(os.P_WAIT, args[0], args, newenv) except ValueError: pass else: self.assertEqual(exitcode, 127) # equal character in the enviroment variable name - args = [sys.executable, '-c', 'pass'] newenv = os.environ.copy() newenv["FRUIT=ORANGE"] = "lemon" try: - exitcode = os.spawnve(os.P_WAIT, args[0], args, newenv) + exitcode = spawn(os.P_WAIT, args[0], args, newenv) except ValueError: pass else: @@ -2427,9 +2446,17 @@ class SpawnTests(unittest.TestCase): args = [sys.executable, filename] newenv = os.environ.copy() newenv["FRUIT"] = "orange=lemon" - exitcode = os.spawnve(os.P_WAIT, args[0], args, newenv) + exitcode = spawn(os.P_WAIT, args[0], args, newenv) self.assertEqual(exitcode, 0) + @requires_os_func('spawnve') + def test_spawnve_invalid_env(self): + self._test_invalid_env(os.spawnve) + + @requires_os_func('spawnvpe') + def test_spawnvpe_invalid_env(self): + self._test_invalid_env(os.spawnvpe) + # The introduction of this TestCase caused at least two different errors on # *nix buildbots. Temporarily skip this to let the buildbots move along. |