mirror of
https://github.com/LukeHagar/connexion.git
synced 2025-12-06 12:27:45 +00:00
41 lines
1.0 KiB
Python
41 lines
1.0 KiB
Python
import decorator
|
|
|
|
from connexion.decorators.parameter import inspect_function_arguments
|
|
|
|
|
|
@decorator.decorator
|
|
def the_decorator(f, *args, **kwargs):
|
|
return f(*args, **kwargs)
|
|
|
|
|
|
def stub_function(foo, bar):
|
|
"""stub function to be used in tests."""
|
|
pass
|
|
|
|
|
|
def kwargs_function(*args, **kwargs):
|
|
pass
|
|
|
|
|
|
def mix_function(some, *args, **kwargs):
|
|
pass
|
|
|
|
|
|
def test_get_proper_argument_list():
|
|
"""Test get the proper argument list of the decorated function."""
|
|
|
|
assert len(inspect_function_arguments(stub_function)[0]) == 2
|
|
assert inspect_function_arguments(stub_function) == (['foo', 'bar'], False)
|
|
|
|
decorated_stub_function = the_decorator(stub_function)
|
|
assert len(inspect_function_arguments(decorated_stub_function)[0]) == 2
|
|
assert inspect_function_arguments(decorated_stub_function) == (['foo', 'bar'], False)
|
|
|
|
|
|
def test_get_kwargs():
|
|
assert inspect_function_arguments(kwargs_function) == ([], True)
|
|
|
|
|
|
def test_mixed_function():
|
|
assert inspect_function_arguments(mix_function) == (['some'], True)
|