1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
|
import pytest
pytest_plugins = [
str("_pytest.pytester"),
]
def _run_and_check(testdir_or_pytester, path, check_for="Worked"):
result = testdir_or_pytester.runpython(path)
result.stdout.fnmatch_lines([check_for])
if hasattr(pytest, "version_tuple") and pytest.version_tuple[0] >= 7:
@pytest.fixture
def testdir_or_pytester(pytester):
return pytester
else:
@pytest.fixture
def testdir_or_pytester(testdir):
return testdir
def test_run(testdir_or_pytester):
from tests_python import debugger_unittest
import sys
import os
foo_dir = debugger_unittest._get_debugger_test_file(os.path.join("resources", "launch", "foo"))
foo_module = "tests_python.resources.launch.foo"
pydevd_dir = os.path.dirname(os.path.dirname(__file__))
if os.path.exists(os.path.join(pydevd_dir, "pydevd.py")):
append_path = "sys.path.append(%r)" % pydevd_dir
else:
append_path = ""
_run_and_check(
testdir_or_pytester,
testdir_or_pytester.makepyfile(
"""
import sys
%(append_path)s
import pydevd
py_db = pydevd.PyDB()
py_db.ready_to_run = True
py_db.run(%(foo_dir)r)
"""
% locals()
),
)
_run_and_check(
testdir_or_pytester,
testdir_or_pytester.makepyfile(
"""
import sys
%(append_path)s
import pydevd
py_db = pydevd.PyDB()
py_db.run(%(foo_dir)r, set_trace=False)
"""
% locals()
),
)
if sys.version_info[0:2] == (2, 6):
# Not valid for Python 2.6
return
_run_and_check(
testdir_or_pytester,
testdir_or_pytester.makepyfile(
"""
import sys
%(append_path)s
sys.argv.append('--as-module')
import pydevd
py_db = pydevd.PyDB()
py_db.ready_to_run = True
py_db.run(%(foo_module)r, is_module=True)
"""
% locals()
),
)
_run_and_check(
testdir_or_pytester,
testdir_or_pytester.makepyfile(
"""
import sys
sys.argv.append('--as-module')
%(append_path)s
import pydevd
py_db = pydevd.PyDB()
py_db.run(%(foo_module)r, is_module=True, set_trace=False)
"""
% locals()
),
)
def test_run_on_local_module_without_adding_to_pythonpath(testdir_or_pytester):
import sys
import os
pydevd_dir = os.path.dirname(os.path.dirname(__file__))
if os.path.exists(os.path.join(pydevd_dir, "pydevd.py")):
append_path = "sys.path.append(%r)" % pydevd_dir
else:
append_path = ""
foo_module = "local_foo"
with open(os.path.join(os.getcwd(), "local_foo.py"), "w") as stream:
stream.write('print("WorkedLocalFoo")')
_run_and_check(
testdir_or_pytester,
testdir_or_pytester.makepyfile(
"""
import sys
import os
%(append_path)s
sys.argv.append('--as-module')
cwd = os.path.abspath(os.getcwd())
while cwd in sys.path:
sys.path.remove(cwd)
import pydevd
py_db = pydevd.PyDB()
py_db.ready_to_run = True
py_db.run(%(foo_module)r, is_module=True)
"""
% locals()
),
check_for="WorkedLocalFoo",
)
_run_and_check(
testdir_or_pytester,
testdir_or_pytester.makepyfile(
"""
import sys
import os
sys.argv.append('--as-module')
%(append_path)s
cwd = os.path.abspath(os.getcwd())
while cwd in sys.path:
sys.path.remove(cwd)
import pydevd
py_db = pydevd.PyDB()
py_db.run(%(foo_module)r, is_module=True, set_trace=False)
"""
% locals()
),
check_for="WorkedLocalFoo",
)
|