Last active
October 29, 2023 06:14
-
-
Save brant-ruan/21945be3baab4bb3c0fc9f8449e71383 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Location = Tuple[str, int] | |
class Coverage: | |
"""Track coverage within a `with` block. Use as | |
``` | |
with Coverage() as cov: | |
function_to_be_traced() | |
c = cov.coverage() | |
``` | |
""" | |
def __init__(self) -> None: | |
"""Constructor""" | |
self._trace: List[Location] = [] | |
# Trace function | |
def traceit(self, frame: FrameType, event: str, arg: Any) -> Optional[Callable]: | |
"""Tracing function. To be overloaded in subclasses.""" | |
if self.original_trace_function is not None: | |
self.original_trace_function(frame, event, arg) | |
if event == "line": | |
function_name = frame.f_code.co_name | |
lineno = frame.f_lineno | |
if function_name != '__exit__': # avoid tracing ourselves: | |
self._trace.append((function_name, lineno)) | |
return self.traceit | |
def __enter__(self) -> Any: | |
"""Start of `with` block. Turn on tracing.""" | |
self.original_trace_function = sys.gettrace() | |
sys.settrace(self.traceit) | |
return self | |
def __exit__(self, exc_type: Type, exc_value: BaseException, | |
tb: TracebackType) -> Optional[bool]: | |
"""End of `with` block. Turn off tracing.""" | |
sys.settrace(self.original_trace_function) | |
return None # default: pass all exceptions | |
def trace(self) -> List[Location]: | |
"""The list of executed lines, as (function_name, line_number) pairs""" | |
return self._trace | |
def coverage(self) -> Set[Location]: | |
"""The set of executed lines, as (function_name, line_number) pairs""" | |
return set(self.trace()) | |
def function_names(self) -> Set[str]: | |
"""The set of function names seen""" | |
return set(function_name for (function_name, line_number) in self.coverage()) | |
def __repr__(self) -> str: | |
"""Return a string representation of this object. | |
Show covered (and uncovered) program code""" | |
t = "" | |
for function_name in self.function_names(): | |
# Similar code as in the example above | |
try: | |
fun = eval(function_name) | |
except Exception as exc: | |
t += f"Skipping {function_name}: {exc}" | |
continue | |
source_lines, start_line_number = inspect.getsourcelines(fun) | |
for lineno in range(start_line_number, start_line_number + len(source_lines)): | |
if (function_name, lineno) in self.trace(): | |
t += "# " | |
else: | |
t += " " | |
t += "%2d " % lineno | |
t += source_lines[lineno - start_line_number] | |
return t |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment