summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_cmd_line_script.py
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2017-03-12 10:38:32 (GMT)
committerGitHub <noreply@github.com>2017-03-12 10:38:32 (GMT)
commitd2977a3ae2cc6802921b1e3b6e9d13fcfbda872d (patch)
tree24ce5c1f440a1458eccabfd83ff0ae6865f26eac /Lib/test/test_cmd_line_script.py
parent6a6d090612dd7deaac2bc0399fad743e5e2db606 (diff)
downloadcpython-d2977a3ae2cc6802921b1e3b6e9d13fcfbda872d.zip
cpython-d2977a3ae2cc6802921b1e3b6e9d13fcfbda872d.tar.gz
cpython-d2977a3ae2cc6802921b1e3b6e9d13fcfbda872d.tar.bz2
bpo-29723: Consistently configure sys.path[0] (#575)
Directory and zipfile execution previously added the parent directory of the directory or zipfile as sys.path[0] and then subsequently overwrote it with the directory or zipfile itself. This caused problems in isolated mode, as it overwrote the "stdlib as a zip archive" entry in sys.path, as the parent directory was never added. The attempted fix to that issue in bpo-29319 created the opposite problem in *non*-isolated mode, by potentially leaving the parent directory on sys.path instead of overwriting it. This change fixes the root cause of the problem by removing the whole "add-and-overwrite" dance for sys.path[0], and instead simply never adds the parent directory to sys.path in the first place.
Diffstat (limited to 'Lib/test/test_cmd_line_script.py')
-rw-r--r--Lib/test/test_cmd_line_script.py67
1 files changed, 67 insertions, 0 deletions
diff --git a/Lib/test/test_cmd_line_script.py b/Lib/test/test_cmd_line_script.py
index e058ecd..1587daf 100644
--- a/Lib/test/test_cmd_line_script.py
+++ b/Lib/test/test_cmd_line_script.py
@@ -572,6 +572,73 @@ class CmdLineTest(unittest.TestCase):
self.assertNotIn("\f", text)
self.assertIn("\n 1 + 1 = 2\n ^", text)
+ def test_consistent_sys_path_for_direct_execution(self):
+ # This test case ensures that the following all give the same
+ # sys.path configuration:
+ #
+ # ./python -s script_dir/__main__.py
+ # ./python -s script_dir
+ # ./python -I script_dir
+ script = textwrap.dedent("""\
+ import sys
+ for entry in sys.path:
+ print(entry)
+ """)
+ # Always show full path diffs on errors
+ self.maxDiff = None
+ with support.temp_dir() as work_dir, support.temp_dir() as script_dir:
+ script_name = _make_test_script(script_dir, '__main__', script)
+ # Reference output comes from directly executing __main__.py
+ # We omit PYTHONPATH and user site to align with isolated mode
+ p = spawn_python("-Es", script_name, cwd=work_dir)
+ out_by_name = kill_python(p).decode().splitlines()
+ self.assertEqual(out_by_name[0], script_dir)
+ self.assertNotIn(work_dir, out_by_name)
+ # Directory execution should give the same output
+ p = spawn_python("-Es", script_dir, cwd=work_dir)
+ out_by_dir = kill_python(p).decode().splitlines()
+ self.assertEqual(out_by_dir, out_by_name)
+ # As should directory execution in isolated mode
+ p = spawn_python("-I", script_dir, cwd=work_dir)
+ out_by_dir_isolated = kill_python(p).decode().splitlines()
+ self.assertEqual(out_by_dir_isolated, out_by_dir, out_by_name)
+
+ def test_consistent_sys_path_for_module_execution(self):
+ # This test case ensures that the following both give the same
+ # sys.path configuration:
+ # ./python -sm script_pkg.__main__
+ # ./python -sm script_pkg
+ #
+ # And that this fails as unable to find the package:
+ # ./python -Im script_pkg
+ script = textwrap.dedent("""\
+ import sys
+ for entry in sys.path:
+ print(entry)
+ """)
+ # Always show full path diffs on errors
+ self.maxDiff = None
+ with support.temp_dir() as work_dir:
+ script_dir = os.path.join(work_dir, "script_pkg")
+ os.mkdir(script_dir)
+ script_name = _make_test_script(script_dir, '__main__', script)
+ # Reference output comes from `-m script_pkg.__main__`
+ # We omit PYTHONPATH and user site to better align with the
+ # direct execution test cases
+ p = spawn_python("-sm", "script_pkg.__main__", cwd=work_dir)
+ out_by_module = kill_python(p).decode().splitlines()
+ self.assertEqual(out_by_module[0], '')
+ self.assertNotIn(script_dir, out_by_module)
+ # Package execution should give the same output
+ p = spawn_python("-sm", "script_pkg", cwd=work_dir)
+ out_by_package = kill_python(p).decode().splitlines()
+ self.assertEqual(out_by_package, out_by_module)
+ # Isolated mode should fail with an import error
+ exitcode, stdout, stderr = assert_python_failure(
+ "-Im", "script_pkg", cwd=work_dir
+ )
+ traceback_lines = stderr.decode().splitlines()
+ self.assertIn("No module named script_pkg", traceback_lines[-1])
def test_main():
support.run_unittest(CmdLineTest)