forked from microsoft/vscode-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunittest_discovery.py
More file actions
63 lines (52 loc) · 1.72 KB
/
unittest_discovery.py
File metadata and controls
63 lines (52 loc) · 1.72 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
import contextlib
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()) # noqa: PTH109
def get_sourceline(obj):
try:
s, n = inspect.getsourcelines(obj)
except Exception:
try:
# this handles `tornado` case we need a better
# way to get to the wrapped function.
# XXX This is a temporary solution
s, n = inspect.getsourcelines(obj.orig_method)
except Exception:
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:
yield from generate_test_cases(test)
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) # noqa: SLF001
test_id = s.id()
if test_id.startswith("unittest.loader._FailedTest"):
loader_errors.append(s._exception) # noqa: SLF001
else:
print(test_id.replace(".", ":") + ":" + get_sourceline(tm))
except Exception:
print("=== exception start ===")
traceback.print_exc()
print("=== exception end ===")
for error in loader_errors:
with contextlib.suppress(Exception):
print("=== exception start ===")
print(error.msg)
print("=== exception end ===")