|
import io |
|
import sys |
|
from types import ModuleType |
|
from typing import Sequence, Type |
|
|
|
import pytest |
|
|
|
from rich import inspect |
|
from rich._inspect import ( |
|
get_object_types_mro, |
|
get_object_types_mro_as_strings, |
|
is_object_one_of_types, |
|
) |
|
from rich.console import Console |
|
|
|
skip_py37 = pytest.mark.skipif( |
|
sys.version_info.minor == 7 and sys.version_info.major == 3, |
|
reason="rendered differently on py3.7", |
|
) |
|
|
|
skip_py38 = pytest.mark.skipif( |
|
sys.version_info.minor == 8 and sys.version_info.major == 3, |
|
reason="rendered differently on py3.8", |
|
) |
|
|
|
skip_py39 = pytest.mark.skipif( |
|
sys.version_info.minor == 9 and sys.version_info.major == 3, |
|
reason="rendered differently on py3.9", |
|
) |
|
|
|
skip_py310 = pytest.mark.skipif( |
|
sys.version_info.minor == 10 and sys.version_info.major == 3, |
|
reason="rendered differently on py3.10", |
|
) |
|
|
|
skip_py311 = pytest.mark.skipif( |
|
sys.version_info.minor == 11 and sys.version_info.major == 3, |
|
reason="rendered differently on py3.11", |
|
) |
|
|
|
skip_py312 = pytest.mark.skipif( |
|
sys.version_info.minor == 12 and sys.version_info.major == 3, |
|
reason="rendered differently on py3.12", |
|
) |
|
|
|
skip_py313 = pytest.mark.skipif( |
|
sys.version_info.minor == 13 and sys.version_info.major == 3, |
|
reason="rendered differently on py3.13", |
|
) |
|
|
|
skip_pypy3 = pytest.mark.skipif( |
|
hasattr(sys, "pypy_version_info"), |
|
reason="rendered differently on pypy3", |
|
) |
|
|
|
|
|
def render(obj, methods=False, value=False, width=50) -> str: |
|
console = Console(file=io.StringIO(), width=width, legacy_windows=False) |
|
inspect(obj, console=console, methods=methods, value=value) |
|
return console.file.getvalue() |
|
|
|
|
|
class InspectError(Exception): |
|
def __str__(self) -> str: |
|
return "INSPECT ERROR" |
|
|
|
|
|
class Foo: |
|
"""Foo test |
|
|
|
Second line |
|
""" |
|
|
|
def __init__(self, foo: int) -> None: |
|
"""constructor docs.""" |
|
self.foo = foo |
|
|
|
@property |
|
def broken(self): |
|
raise InspectError() |
|
|
|
def method(self, a, b) -> str: |
|
"""Multi line |
|
|
|
docs. |
|
""" |
|
return "test" |
|
|
|
def __dir__(self): |
|
return ["__init__", "broken", "method"] |
|
|
|
|
|
class FooSubclass(Foo): |
|
pass |
|
|
|
|
|
def test_render(): |
|
console = Console(width=100, file=io.StringIO(), legacy_windows=False) |
|
|
|
foo = Foo("hello") |
|
inspect(foo, console=console, all=True, value=False) |
|
result = console.file.getvalue() |
|
print(repr(result)) |
|
expected = "โญโโโโโโโโโโโโโโ <class 'tests.test_inspect.Foo'> โโโโโโโโโโโโโโโฎ\nโ Foo test โ\nโ โ\nโ broken = InspectError() โ\nโ __init__ = def __init__(foo: int) -> None: constructor docs. โ\nโ method = def method(a, b) -> str: Multi line โ\nโฐโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ\n" |
|
assert result == expected |
|
|
|
|
|
@skip_pypy3 |
|
def test_inspect_text(): |
|
num_attributes = 34 if sys.version_info >= (3, 11) else 33 |
|
expected = ( |
|
"โญโโโโโโโโโโโโโโโโ <class 'str'> โโโโโโโโโโโโโโโโโโฎ\n" |
|
"โ str(object='') -> str โ\n" |
|
"โ str(bytes_or_buffer[, encoding[, errors]]) -> โ\n" |
|
"โ str โ\n" |
|
"โ โ\n" |
|
f"โ {num_attributes} attribute(s) not shown. Run โ\n" |
|
"โ inspect(inspect) for options. โ\n" |
|
"โฐโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ\n" |
|
) |
|
print(repr(expected)) |
|
assert render("Hello") == expected |
|
|
|
|
|
@skip_py37 |
|
@skip_pypy3 |
|
def test_inspect_empty_dict(): |
|
expected = ( |
|
"โญโโโโโโโโโโโโโโโโ <class 'dict'> โโโโโโโโโโโโโโโโโฎ\n" |
|
"โ dict() -> new empty dictionary โ\n" |
|
"โ dict(mapping) -> new dictionary initialized โ\n" |
|
"โ from a mapping object's โ\n" |
|
"โ (key, value) pairs โ\n" |
|
"โ dict(iterable) -> new dictionary initialized โ\n" |
|
"โ as if via: โ\n" |
|
"โ d = {} โ\n" |
|
"โ for k, v in iterable: โ\n" |
|
"โ d[k] = v โ\n" |
|
"โ dict(**kwargs) -> new dictionary initialized โ\n" |
|
"โ with the name=value pairs โ\n" |
|
"โ in the keyword argument list. For โ\n" |
|
"โ example: dict(one=1, two=2) โ\n" |
|
"โ โ\n" |
|
) |
|
assert render({}).startswith(expected) |
|
|
|
|
|
@skip_py313 |
|
@skip_py312 |
|
@skip_py311 |
|
@skip_pypy3 |
|
def test_inspect_builtin_function_except_python311(): |
|
|
|
expected = ( |
|
"โญโโโโโโโโโโ <built-in function print> โโโโโโโโโโโโฎ\n" |
|
"โ def print(...) โ\n" |
|
"โ โ\n" |
|
"โ print(value, ..., sep=' ', end='\\n', โ\n" |
|
"โ file=sys.stdout, flush=False) โ\n" |
|
"โ โ\n" |
|
"โ 29 attribute(s) not shown. Run โ\n" |
|
"โ inspect(inspect) for options. โ\n" |
|
"โฐโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ\n" |
|
) |
|
assert render(print) == expected |
|
|
|
|
|
@pytest.mark.skipif( |
|
sys.version_info < (3, 11), reason="print builtin signature only available on 3.11+" |
|
) |
|
@skip_pypy3 |
|
def test_inspect_builtin_function_only_python311(): |
|
|
|
expected = ( |
|
"โญโโโโโโโโโโ <built-in function print> โโโโโโโโโโโโฎ\n" |
|
"โ def print(*args, sep=' ', end='\\n', file=None, โ\n" |
|
"โ flush=False): โ\n" |
|
"โ โ\n" |
|
"โ Prints the values to a stream, or to โ\n" |
|
"โ sys.stdout by default. โ\n" |
|
"โ โ\n" |
|
"โ 30 attribute(s) not shown. Run โ\n" |
|
"โ inspect(inspect) for options. โ\n" |
|
"โฐโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ\n" |
|
) |
|
assert render(print) == expected |
|
|
|
|
|
@skip_pypy3 |
|
def test_inspect_coroutine(): |
|
async def coroutine(): |
|
pass |
|
|
|
expected = ( |
|
"โญโ <function test_inspect_coroutine.<locals>.corโโฎ\n" |
|
"โ async def โ\n" |
|
"โ test_inspect_coroutine.<locals>.coroutine(): โ\n" |
|
) |
|
assert render(coroutine).startswith(expected) |
|
|
|
|
|
def test_inspect_integer(): |
|
expected = ( |
|
"โญโโโโโโ <class 'int'> โโโโโโโโฎ\n" |
|
"โ int([x]) -> integer โ\n" |
|
"โ int(x, base=10) -> integer โ\n" |
|
"โ โ\n" |
|
"โ denominator = 1 โ\n" |
|
"โ imag = 0 โ\n" |
|
"โ numerator = 1 โ\n" |
|
"โ real = 1 โ\n" |
|
"โฐโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ\n" |
|
) |
|
assert expected == render(1) |
|
|
|
|
|
def test_inspect_integer_with_value(): |
|
expected = "โญโโโโโโ <class 'int'> โโโโโโโโฎ\nโ int([x]) -> integer โ\nโ int(x, base=10) -> integer โ\nโ โ\nโ โญโโโโโโโโโโโโโโโโโโโโโโโโโฎ โ\nโ โ 1 โ โ\nโ โฐโโโโโโโโโโโโโโโโโโโโโโโโโฏ โ\nโ โ\nโ denominator = 1 โ\nโ imag = 0 โ\nโ numerator = 1 โ\nโ real = 1 โ\nโฐโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ\n" |
|
value = render(1, value=True) |
|
print(repr(value)) |
|
assert value == expected |
|
|
|
|
|
@skip_py37 |
|
@skip_py310 |
|
@skip_py311 |
|
@skip_py312 |
|
@skip_py313 |
|
def test_inspect_integer_with_methods_python38_and_python39(): |
|
expected = ( |
|
"โญโโโโโโโโโโโโโโโโ <class 'int'> โโโโโโโโโโโโโโโโโโฎ\n" |
|
"โ int([x]) -> integer โ\n" |
|
"โ int(x, base=10) -> integer โ\n" |
|
"โ โ\n" |
|
"โ denominator = 1 โ\n" |
|
"โ imag = 0 โ\n" |
|
"โ numerator = 1 โ\n" |
|
"โ real = 1 โ\n" |
|
"โ as_integer_ratio = def as_integer_ratio(): โ\n" |
|
"โ Return integer ratio. โ\n" |
|
"โ bit_length = def bit_length(): Number of โ\n" |
|
"โ bits necessary to represent โ\n" |
|
"โ self in binary. โ\n" |
|
"โ conjugate = def conjugate(...) Returns โ\n" |
|
"โ self, the complex conjugate โ\n" |
|
"โ of any int. โ\n" |
|
"โ from_bytes = def from_bytes(bytes, โ\n" |
|
"โ byteorder, *, โ\n" |
|
"โ signed=False): Return the โ\n" |
|
"โ integer represented by the โ\n" |
|
"โ given array of bytes. โ\n" |
|
"โ to_bytes = def to_bytes(length, โ\n" |
|
"โ byteorder, *, โ\n" |
|
"โ signed=False): Return an โ\n" |
|
"โ array of bytes representing โ\n" |
|
"โ an integer. โ\n" |
|
"โฐโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ\n" |
|
) |
|
assert render(1, methods=True) == expected |
|
|
|
|
|
@skip_py37 |
|
@skip_py38 |
|
@skip_py39 |
|
@skip_py311 |
|
@skip_py312 |
|
@skip_py313 |
|
def test_inspect_integer_with_methods_python310only(): |
|
expected = ( |
|
"โญโโโโโโโโโโโโโโโโ <class 'int'> โโโโโโโโโโโโโโโโโโฎ\n" |
|
"โ int([x]) -> integer โ\n" |
|
"โ int(x, base=10) -> integer โ\n" |
|
"โ โ\n" |
|
"โ denominator = 1 โ\n" |
|
"โ imag = 0 โ\n" |
|
"โ numerator = 1 โ\n" |
|
"โ real = 1 โ\n" |
|
"โ as_integer_ratio = def as_integer_ratio(): โ\n" |
|
"โ Return integer ratio. โ\n" |
|
"โ bit_count = def bit_count(): Number of โ\n" |
|
"โ ones in the binary โ\n" |
|
"โ representation of the โ\n" |
|
"โ absolute value of self. โ\n" |
|
"โ bit_length = def bit_length(): Number of โ\n" |
|
"โ bits necessary to represent โ\n" |
|
"โ self in binary. โ\n" |
|
"โ conjugate = def conjugate(...) Returns โ\n" |
|
"โ self, the complex conjugate โ\n" |
|
"โ of any int. โ\n" |
|
"โ from_bytes = def from_bytes(bytes, โ\n" |
|
"โ byteorder, *, โ\n" |
|
"โ signed=False): Return the โ\n" |
|
"โ integer represented by the โ\n" |
|
"โ given array of bytes. โ\n" |
|
"โ to_bytes = def to_bytes(length, โ\n" |
|
"โ byteorder, *, โ\n" |
|
"โ signed=False): Return an โ\n" |
|
"โ array of bytes representing โ\n" |
|
"โ an integer. โ\n" |
|
"โฐโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ\n" |
|
) |
|
assert render(1, methods=True) == expected |
|
|
|
|
|
@skip_py37 |
|
@skip_py38 |
|
@skip_py39 |
|
@skip_py310 |
|
@skip_py312 |
|
@skip_py313 |
|
def test_inspect_integer_with_methods_python311(): |
|
|
|
|
|
expected = ( |
|
"โญโโโโโโโโโโโโโโโโ <class 'int'> โโโโโโโโโโโโโโโโโโฎ\n" |
|
"โ int([x]) -> integer โ\n" |
|
"โ int(x, base=10) -> integer โ\n" |
|
"โ โ\n" |
|
"โ denominator = 1 โ\n" |
|
"โ imag = 0 โ\n" |
|
"โ numerator = 1 โ\n" |
|
"โ real = 1 โ\n" |
|
"โ as_integer_ratio = def as_integer_ratio(): โ\n" |
|
"โ Return integer ratio. โ\n" |
|
"โ bit_count = def bit_count(): Number of โ\n" |
|
"โ ones in the binary โ\n" |
|
"โ representation of the โ\n" |
|
"โ absolute value of self. โ\n" |
|
"โ bit_length = def bit_length(): Number of โ\n" |
|
"โ bits necessary to represent โ\n" |
|
"โ self in binary. โ\n" |
|
"โ conjugate = def conjugate(...) Returns โ\n" |
|
"โ self, the complex conjugate โ\n" |
|
"โ of any int. โ\n" |
|
"โ from_bytes = def from_bytes(bytes, โ\n" |
|
"โ byteorder='big', *, โ\n" |
|
"โ signed=False): Return the โ\n" |
|
"โ integer represented by the โ\n" |
|
"โ given array of bytes. โ\n" |
|
"โ to_bytes = def to_bytes(length=1, โ\n" |
|
"โ byteorder='big', *, โ\n" |
|
"โ signed=False): Return an โ\n" |
|
"โ array of bytes representing โ\n" |
|
"โ an integer. โ\n" |
|
"โฐโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ\n" |
|
) |
|
assert render(1, methods=True) == expected |
|
|
|
|
|
@skip_py37 |
|
@skip_pypy3 |
|
def test_broken_call_attr(): |
|
class NotCallable: |
|
__call__ = 5 |
|
|
|
def __repr__(self): |
|
return "NotCallable()" |
|
|
|
class Foo: |
|
foo = NotCallable() |
|
|
|
foo = Foo() |
|
assert callable(foo.foo) |
|
expected = "โญโ <class 'tests.test_inspect.test_broken_call_attr.<locals>.Foo'> โโฎ\nโ foo = NotCallable() โ\nโฐโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ\n" |
|
result = render(foo, methods=True, width=100) |
|
print(repr(result)) |
|
assert expected == result |
|
|
|
|
|
def test_inspect_swig_edge_case(): |
|
"""Issue #1838 - Edge case with Faiss library - object with empty dir()""" |
|
|
|
class Thing: |
|
@property |
|
def __class__(self): |
|
raise AttributeError |
|
|
|
thing = Thing() |
|
try: |
|
inspect(thing) |
|
except Exception as e: |
|
assert False, f"Object with no __class__ shouldn't raise {e}" |
|
|
|
|
|
def test_inspect_module_with_class(): |
|
def function(): |
|
pass |
|
|
|
class Thing: |
|
"""Docstring""" |
|
|
|
pass |
|
|
|
module = ModuleType("my_module") |
|
module.SomeClass = Thing |
|
module.function = function |
|
|
|
expected = ( |
|
"โญโโโโโโโโโโ <module 'my_module'> โโโโโโโโโโโฎ\n" |
|
"โ function = def function(): โ\n" |
|
"โ SomeClass = class SomeClass(): Docstring โ\n" |
|
"โฐโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ\n" |
|
) |
|
assert render(module, methods=True) == expected |
|
|
|
|
|
@pytest.mark.parametrize( |
|
"special_character,expected_replacement", |
|
( |
|
("\a", "\\a"), |
|
("\b", "\\b"), |
|
("\f", "\\f"), |
|
("\r", "\\r"), |
|
("\v", "\\v"), |
|
), |
|
) |
|
def test_can_handle_special_characters_in_docstrings( |
|
special_character: str, expected_replacement: str |
|
) -> None: |
|
class Something: |
|
class Thing: |
|
pass |
|
|
|
Something.Thing.__doc__ = f""" |
|
Multiline docstring |
|
with {special_character} should be handled |
|
""" |
|
|
|
expected = """\ |
|
โญโ <class 'tests.test_inspect.test_can_handle_spโโฎ |
|
โ class โ |
|
โ test_can_handle_special_characters_in_docstrin โ |
|
โ gs.<locals>.Something(): โ |
|
โ โ |
|
โ Thing = class Thing(): โ |
|
โ Multiline docstring โ |
|
โ with %s should be handled โ |
|
โฐโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ |
|
""" % ( |
|
expected_replacement |
|
) |
|
assert render(Something, methods=True) == expected |
|
|
|
|
|
@pytest.mark.parametrize( |
|
"obj,expected_result", |
|
( |
|
[object, (object,)], |
|
[object(), (object,)], |
|
["hi", (str, object)], |
|
[str, (str, object)], |
|
[Foo(1), (Foo, object)], |
|
[Foo, (Foo, object)], |
|
[FooSubclass(1), (FooSubclass, Foo, object)], |
|
[FooSubclass, (FooSubclass, Foo, object)], |
|
), |
|
) |
|
def test_object_types_mro(obj: object, expected_result: Sequence[Type]): |
|
assert get_object_types_mro(obj) == expected_result |
|
|
|
|
|
@pytest.mark.parametrize( |
|
"obj,expected_result", |
|
( |
|
|
|
["hi", ["builtins.str", "builtins.object"]], |
|
[str, ["builtins.str", "builtins.object"]], |
|
[Foo(1), [f"{__name__}.Foo", "builtins.object"]], |
|
[Foo, [f"{__name__}.Foo", "builtins.object"]], |
|
[FooSubclass(1), |
|
[f"{__name__}.FooSubclass", f"{__name__}.Foo", "builtins.object"]], |
|
[FooSubclass, |
|
[f"{__name__}.FooSubclass", f"{__name__}.Foo", "builtins.object"]], |
|
|
|
), |
|
) |
|
def test_object_types_mro_as_strings(obj: object, expected_result: Sequence[str]): |
|
assert get_object_types_mro_as_strings(obj) == expected_result |
|
|
|
|
|
@pytest.mark.parametrize( |
|
"obj,types,expected_result", |
|
( |
|
|
|
["hi", ["builtins.str"], True], |
|
[str, ["builtins.str"], True], |
|
["hi", ["builtins.str", "foo"], True], |
|
[str, ["builtins.str", "foo"], True], |
|
[Foo(1), [f"{__name__}.Foo"], True], |
|
[Foo, [f"{__name__}.Foo"], True], |
|
[Foo(1), ["builtins.str", f"{__name__}.Foo"], True], |
|
[Foo, ["builtins.int", f"{__name__}.Foo"], True], |
|
[Foo(1), [f"{__name__}.FooSubclass"], False], |
|
[Foo, [f"{__name__}.FooSubclass"], False], |
|
[Foo(1), [f"{__name__}.FooSubclass", f"{__name__}.Foo"], True], |
|
[Foo, [f"{__name__}.Foo", f"{__name__}.FooSubclass"], True], |
|
|
|
), |
|
) |
|
def test_object_is_one_of_types( |
|
obj: object, types: Sequence[str], expected_result: bool |
|
): |
|
assert is_object_one_of_types(obj, types) is expected_result |
|
|