mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
392 lines
11 KiB
Python
392 lines
11 KiB
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
test_util_inspect
|
|
~~~~~~~~~~~~~~~
|
|
|
|
Tests util.inspect functions.
|
|
|
|
:copyright: Copyright 2007-2018 by the Sphinx team, see AUTHORS.
|
|
:license: BSD, see LICENSE for details.
|
|
"""
|
|
import functools
|
|
import sys
|
|
from textwrap import dedent
|
|
|
|
import pytest
|
|
from six import PY3
|
|
|
|
from sphinx.util import inspect
|
|
|
|
|
|
def test_getargspec():
|
|
def func(a, b, c=1, d=2, *e, **f):
|
|
pass
|
|
|
|
spec = inspect.getargspec(func)
|
|
assert spec.args == ['a', 'b', 'c', 'd']
|
|
assert spec.varargs == 'e'
|
|
if PY3:
|
|
assert spec.varkw == 'f'
|
|
assert spec.defaults == (1, 2)
|
|
assert spec.kwonlyargs == []
|
|
assert spec.kwonlydefaults is None
|
|
assert spec.annotations == {}
|
|
else:
|
|
assert spec.keywords == 'f'
|
|
assert spec.defaults == [1, 2]
|
|
|
|
|
|
def test_getargspec_partial():
|
|
def func1(a, b, c=1, d=2, *e, **f):
|
|
pass
|
|
|
|
partial = functools.partial(func1, 10, c=11)
|
|
spec = inspect.getargspec(partial)
|
|
if PY3:
|
|
assert spec.args == ['b']
|
|
assert spec.varargs is None
|
|
assert spec.varkw == 'f'
|
|
assert spec.defaults is None
|
|
assert spec.kwonlyargs == ['c', 'd']
|
|
assert spec.kwonlydefaults == {'c': 11, 'd': 2}
|
|
assert spec.annotations == {}
|
|
else:
|
|
assert spec.args == ['b', 'd']
|
|
assert spec.varargs == 'e'
|
|
assert spec.keywords == 'f'
|
|
assert spec.defaults == [2]
|
|
|
|
|
|
def test_getargspec_partial2():
|
|
def fun(a, b, c=1, d=2):
|
|
pass
|
|
p = functools.partial(fun, 10, c=11)
|
|
|
|
if PY3:
|
|
# Python 3's partial is rather cleverer than Python 2's, and we
|
|
# have to jump through some hoops to define an equivalent function
|
|
# in a way that won't confuse Python 2's parser:
|
|
ns = {}
|
|
exec(dedent("""
|
|
def f_expected(b, *, c=11, d=2):
|
|
pass
|
|
"""), ns)
|
|
f_expected = ns["f_expected"]
|
|
else:
|
|
def f_expected(b, d=2):
|
|
pass
|
|
expected = inspect.getargspec(f_expected)
|
|
|
|
assert expected == inspect.getargspec(p)
|
|
|
|
|
|
def test_getargspec_builtin_type():
|
|
with pytest.raises(TypeError):
|
|
inspect.getargspec(int)
|
|
|
|
|
|
def test_getargspec_bound_methods():
|
|
def f_expected_unbound(self, arg1, **kwargs):
|
|
pass
|
|
expected_unbound = inspect.getargspec(f_expected_unbound)
|
|
|
|
def f_expected_bound(arg1, **kwargs):
|
|
pass
|
|
expected_bound = inspect.getargspec(f_expected_bound)
|
|
|
|
class Foo:
|
|
def method(self, arg1, **kwargs):
|
|
pass
|
|
|
|
bound_method = Foo().method
|
|
|
|
@functools.wraps(bound_method)
|
|
def wrapped_bound_method(*args, **kwargs):
|
|
pass
|
|
|
|
assert expected_unbound == inspect.getargspec(Foo.method)
|
|
if PY3 and sys.version_info >= (3, 4, 4):
|
|
# On py2, the inspect functions don't properly handle bound
|
|
# methods (they include a spurious 'self' argument)
|
|
assert expected_bound == inspect.getargspec(bound_method)
|
|
# On py2, the inspect functions can't properly handle wrapped
|
|
# functions (no __wrapped__ support)
|
|
assert expected_bound == inspect.getargspec(wrapped_bound_method)
|
|
|
|
|
|
def test_Signature():
|
|
# literals
|
|
with pytest.raises(TypeError):
|
|
inspect.Signature(1)
|
|
|
|
with pytest.raises(TypeError):
|
|
inspect.Signature('')
|
|
|
|
# builitin classes
|
|
with pytest.raises(TypeError):
|
|
inspect.Signature(int)
|
|
|
|
with pytest.raises(TypeError):
|
|
inspect.Signature(str)
|
|
|
|
# normal function
|
|
def func(a, b, c=1, d=2, *e, **f):
|
|
pass
|
|
|
|
sig = inspect.Signature(func).format_args()
|
|
assert sig == '(a, b, c=1, d=2, *e, **f)'
|
|
|
|
|
|
def test_Signature_partial():
|
|
def fun(a, b, c=1, d=2):
|
|
pass
|
|
p = functools.partial(fun, 10, c=11)
|
|
|
|
sig = inspect.Signature(p).format_args()
|
|
if sys.version_info < (3,):
|
|
assert sig == '(b, d=2)'
|
|
else:
|
|
assert sig == '(b, *, c=11, d=2)'
|
|
|
|
|
|
def test_Signature_methods():
|
|
class Foo:
|
|
def meth1(self, arg1, **kwargs):
|
|
pass
|
|
|
|
@classmethod
|
|
def meth2(cls, arg1, *args, **kwargs):
|
|
pass
|
|
|
|
@staticmethod
|
|
def meth3(arg1, *args, **kwargs):
|
|
pass
|
|
|
|
@functools.wraps(Foo().meth1)
|
|
def wrapped_bound_method(*args, **kwargs):
|
|
pass
|
|
|
|
# unbound method
|
|
sig = inspect.Signature(Foo.meth1).format_args()
|
|
assert sig == '(self, arg1, **kwargs)'
|
|
|
|
sig = inspect.Signature(Foo.meth1, bound_method=True).format_args()
|
|
assert sig == '(arg1, **kwargs)'
|
|
|
|
# bound method
|
|
sig = inspect.Signature(Foo().meth1).format_args()
|
|
assert sig == '(arg1, **kwargs)'
|
|
|
|
# class method
|
|
sig = inspect.Signature(Foo.meth2).format_args()
|
|
assert sig == '(arg1, *args, **kwargs)'
|
|
|
|
sig = inspect.Signature(Foo().meth2).format_args()
|
|
assert sig == '(arg1, *args, **kwargs)'
|
|
|
|
# static method
|
|
sig = inspect.Signature(Foo.meth3).format_args()
|
|
assert sig == '(arg1, *args, **kwargs)'
|
|
|
|
sig = inspect.Signature(Foo().meth3).format_args()
|
|
assert sig == '(arg1, *args, **kwargs)'
|
|
|
|
# wrapped bound method
|
|
sig = inspect.Signature(wrapped_bound_method).format_args()
|
|
if sys.version_info < (3,):
|
|
assert sig == '(*args, **kwargs)'
|
|
elif sys.version_info < (3, 4, 4):
|
|
assert sig == '(self, arg1, **kwargs)'
|
|
else:
|
|
assert sig == '(arg1, **kwargs)'
|
|
|
|
|
|
@pytest.mark.skipif(sys.version_info < (3, 4),
|
|
reason='functools.partialmethod is available on py34 or above')
|
|
def test_Signature_partialmethod():
|
|
from functools import partialmethod
|
|
|
|
class Foo(object):
|
|
def meth1(self, arg1, arg2, arg3=None, arg4=None):
|
|
pass
|
|
|
|
def meth2(self, arg1, arg2):
|
|
pass
|
|
|
|
foo = partialmethod(meth1, 1, 2)
|
|
bar = partialmethod(meth1, 1, arg3=3)
|
|
baz = partialmethod(meth2, 1, 2)
|
|
|
|
subject = Foo()
|
|
sig = inspect.Signature(subject.foo).format_args()
|
|
assert sig == '(arg3=None, arg4=None)'
|
|
|
|
sig = inspect.Signature(subject.bar).format_args()
|
|
assert sig == '(arg2, *, arg3=3, arg4=None)'
|
|
|
|
sig = inspect.Signature(subject.baz).format_args()
|
|
assert sig == '()'
|
|
|
|
|
|
@pytest.mark.skipif(sys.version_info < (3, 5),
|
|
reason='type annotation test is available on py35 or above')
|
|
def test_Signature_annotations():
|
|
from typing_test_data import f0, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12
|
|
|
|
# Class annotations
|
|
sig = inspect.Signature(f0).format_args()
|
|
assert sig == '(x: int, y: numbers.Integral) -> None'
|
|
|
|
# Generic types with concrete parameters
|
|
sig = inspect.Signature(f1).format_args()
|
|
assert sig == '(x: List[int]) -> List[int]'
|
|
|
|
# TypeVars and generic types with TypeVars
|
|
sig = inspect.Signature(f2).format_args()
|
|
assert sig == '(x: List[T], y: List[T_co], z: T) -> List[T_contra]'
|
|
|
|
# Union types
|
|
sig = inspect.Signature(f3).format_args()
|
|
assert sig == '(x: Union[str, numbers.Integral]) -> None'
|
|
|
|
# Quoted annotations
|
|
sig = inspect.Signature(f4).format_args()
|
|
assert sig == '(x: str, y: str) -> None'
|
|
|
|
# Keyword-only arguments
|
|
sig = inspect.Signature(f5).format_args()
|
|
assert sig == '(x: int, *, y: str, z: str) -> None'
|
|
|
|
# Keyword-only arguments with varargs
|
|
sig = inspect.Signature(f6).format_args()
|
|
assert sig == '(x: int, *args, y: str, z: str) -> None'
|
|
|
|
# Space around '=' for defaults
|
|
sig = inspect.Signature(f7).format_args()
|
|
assert sig == '(x: int = None, y: dict = {}) -> None'
|
|
|
|
# Callable types
|
|
sig = inspect.Signature(f8).format_args()
|
|
assert sig == '(x: Callable[[int, str], int]) -> None'
|
|
|
|
sig = inspect.Signature(f9).format_args()
|
|
assert sig == '(x: Callable) -> None'
|
|
|
|
# Tuple types
|
|
sig = inspect.Signature(f10).format_args()
|
|
assert sig == '(x: Tuple[int, str], y: Tuple[int, ...]) -> None'
|
|
|
|
# Instance annotations
|
|
sig = inspect.Signature(f11).format_args()
|
|
assert sig == '(x: CustomAnnotation, y: 123) -> None'
|
|
|
|
# has_retval=False
|
|
sig = inspect.Signature(f11, has_retval=False).format_args()
|
|
assert sig == '(x: CustomAnnotation, y: 123)'
|
|
|
|
# tuple with more than two items
|
|
sig = inspect.Signature(f12).format_args()
|
|
assert sig == '() -> Tuple[int, str, int]'
|
|
|
|
|
|
def test_safe_getattr_with_default():
|
|
class Foo(object):
|
|
def __getattr__(self, item):
|
|
raise Exception
|
|
|
|
obj = Foo()
|
|
|
|
result = inspect.safe_getattr(obj, 'bar', 'baz')
|
|
|
|
assert result == 'baz'
|
|
|
|
|
|
def test_safe_getattr_with_exception():
|
|
class Foo(object):
|
|
def __getattr__(self, item):
|
|
raise Exception
|
|
|
|
obj = Foo()
|
|
|
|
try:
|
|
inspect.safe_getattr(obj, 'bar')
|
|
except AttributeError as exc:
|
|
assert exc.args[0] == 'bar'
|
|
else:
|
|
pytest.fail('AttributeError not raised')
|
|
|
|
|
|
def test_safe_getattr_with_property_exception():
|
|
class Foo(object):
|
|
@property
|
|
def bar(self):
|
|
raise Exception
|
|
|
|
obj = Foo()
|
|
|
|
try:
|
|
inspect.safe_getattr(obj, 'bar')
|
|
except AttributeError as exc:
|
|
assert exc.args[0] == 'bar'
|
|
else:
|
|
pytest.fail('AttributeError not raised')
|
|
|
|
|
|
def test_safe_getattr_with___dict___override():
|
|
class Foo(object):
|
|
@property
|
|
def __dict__(self):
|
|
raise Exception
|
|
|
|
obj = Foo()
|
|
|
|
try:
|
|
inspect.safe_getattr(obj, 'bar')
|
|
except AttributeError as exc:
|
|
assert exc.args[0] == 'bar'
|
|
else:
|
|
pytest.fail('AttributeError not raised')
|
|
|
|
|
|
def test_dictionary_sorting():
|
|
dictionary = {"c": 3, "a": 1, "d": 2, "b": 4}
|
|
description = inspect.object_description(dictionary)
|
|
assert description == "{'a': 1, 'b': 4, 'c': 3, 'd': 2}"
|
|
|
|
|
|
def test_dict_customtype():
|
|
class CustomType(object):
|
|
def __init__(self, value):
|
|
self._value = value
|
|
|
|
def __repr__(self):
|
|
return "<CustomType(%r)>" % self._value
|
|
|
|
dictionary = {CustomType(2): 2, CustomType(1): 1}
|
|
description = inspect.object_description(dictionary)
|
|
# Type is unsortable, just check that it does not crash
|
|
assert "<CustomType(2)>: 2" in description
|
|
|
|
|
|
def test_isstaticmethod():
|
|
class Foo():
|
|
@staticmethod
|
|
def method1():
|
|
pass
|
|
|
|
def method2(self):
|
|
pass
|
|
|
|
class Bar(Foo):
|
|
pass
|
|
|
|
assert inspect.isstaticmethod(Foo.method1, Foo, 'method1') is True
|
|
assert inspect.isstaticmethod(Foo.method2, Foo, 'method2') is False
|
|
|
|
if sys.version_info < (3, 0):
|
|
assert inspect.isstaticmethod(Bar.method1, Bar, 'method1') is False
|
|
assert inspect.isstaticmethod(Bar.method2, Bar, 'method2') is False
|
|
else:
|
|
assert inspect.isstaticmethod(Bar.method1, Bar, 'method1') is True
|
|
assert inspect.isstaticmethod(Bar.method2, Bar, 'method2') is False
|