forked from microsoft/vscode-python
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathunittest_discovery.py
More file actions
83 lines (69 loc) · 2.17 KB
/
unittest_discovery.py
File metadata and controls
83 lines (69 loc) · 2.17 KB
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
import inspect
import os
import sys
import traceback
import unittest
start_dir = sys.argv[1]
pattern = sys.argv[2]
top_level_dir = sys.argv[3] if len(sys.argv) >= 4 else None
sys.path.insert(0, os.getcwd())
import os.path
sys.path.insert(
1,
os.path.dirname( # pythonFiles
os.path.dirname( # pythonFiles/testing_tools
os.path.abspath(__file__) # this file
)
),
)
from django_runner import setup_django_env
django_test_enabled = os.environ.get("DJANGO_TEST_ENABLED", "False")
if django_test_enabled.lower() == "true":
print(f"DJANGO TEST DECLEARED = {django_test_enabled}")
django_env_enabled = setup_django_env(start_dir)
print(f"DJANGO ENV ENABLED = {django_env_enabled}")
def get_sourceline(obj):
try:
s, n = inspect.getsourcelines(obj)
except:
try:
# this handles `tornado` case we need a better
# way to get to the wrapped function.
# This is a temporary solution
s, n = inspect.getsourcelines(obj.orig_method)
except:
return "*"
for i, v in enumerate(s):
if v.strip().startswith(("def", "async def")):
return str(n + i)
return "*"
def generate_test_cases(suite):
for test in suite:
if isinstance(test, unittest.TestCase):
yield test
else:
for test_case in generate_test_cases(test):
yield test_case
try:
loader = unittest.TestLoader()
suite = loader.discover(start_dir, pattern=pattern, top_level_dir=top_level_dir)
print("start") # Don't remove this line
loader_errors = []
for s in generate_test_cases(suite):
tm = getattr(s, s._testMethodName)
testId = s.id()
if testId.startswith("unittest.loader._FailedTest"):
loader_errors.append(s._exception)
else:
print(testId.replace(".", ":") + ":" + get_sourceline(tm))
except:
print("=== exception start ===")
traceback.print_exc()
print("=== exception end ===")
for error in loader_errors:
try:
print("=== exception start ===")
print(error.msg)
print("=== exception end ===")
except:
pass