| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- import inspect
- import cytoolz
- from types import BuiltinFunctionType
- from cytoolz import curry, identity, keyfilter, valfilter, merge_with
- from dev_skip_test import dev_skip_test
- @curry
- def isfrommod(modname, func):
- mod = getattr(func, '__module__', '') or ''
- return mod.startswith(modname) or 'toolz.functoolz.curry' in str(type(func))
- @dev_skip_test
- def test_class_sigs():
- """ Test that all ``cdef class`` extension types in ``cytoolz`` have
- correctly embedded the function signature as done in ``toolz``.
- """
- import toolz
- # only consider items created in both `toolz` and `cytoolz`
- toolz_dict = valfilter(isfrommod('toolz'), toolz.__dict__)
- cytoolz_dict = valfilter(isfrommod('cytoolz'), cytoolz.__dict__)
- # only test `cdef class` extensions from `cytoolz`
- cytoolz_dict = valfilter(lambda x: not isinstance(x, BuiltinFunctionType),
- cytoolz_dict)
- # full API coverage should be tested elsewhere
- toolz_dict = keyfilter(lambda x: x in cytoolz_dict, toolz_dict)
- cytoolz_dict = keyfilter(lambda x: x in toolz_dict, cytoolz_dict)
- d = merge_with(identity, toolz_dict, cytoolz_dict)
- for key, (toolz_func, cytoolz_func) in d.items():
- if key in ['excepts', 'juxt', 'memoize', 'flip']:
- continue
- try:
- # function
- toolz_spec = inspect.getargspec(toolz_func)
- except TypeError:
- try:
- # curried or partial object
- toolz_spec = inspect.getargspec(toolz_func.func)
- except (TypeError, AttributeError):
- # class
- toolz_spec = inspect.getargspec(toolz_func.__init__)
- # For Cython < 0.25
- toolz_sig = toolz_func.__name__ + inspect.formatargspec(*toolz_spec)
- doc = cytoolz_func.__doc__
- # For Cython >= 0.25
- toolz_sig_alt = toolz_func.__name__ + inspect.formatargspec(
- *toolz_spec,
- **{'formatvalue': lambda x: '=' + getattr(x, '__name__', repr(x))}
- )
- doc_alt = doc.replace('Py_ssize_t ', '')
- if not (toolz_sig in doc or toolz_sig_alt in doc_alt):
- message = ('cytoolz.%s does not have correct function signature.'
- '\n\nExpected: %s'
- '\n\nDocstring in cytoolz is:\n%s'
- % (key, toolz_sig, cytoolz_func.__doc__))
- assert False, message
- skip_sigs = ['identity']
- aliases = {'comp': 'compose'}
- @dev_skip_test
- def test_sig_at_beginning():
- """ Test that the function signature is at the beginning of the docstring
- and is followed by exactly one blank line.
- """
- cytoolz_dict = valfilter(isfrommod('cytoolz'), cytoolz.__dict__)
- cytoolz_dict = keyfilter(lambda x: x not in skip_sigs, cytoolz_dict)
- for key, val in cytoolz_dict.items():
- doclines = val.__doc__.splitlines()
- assert len(doclines) > 2, (
- 'cytoolz.%s docstring too short:\n\n%s' % (key, val.__doc__))
- sig = '%s(' % aliases.get(key, key)
- assert sig in doclines[0], (
- 'cytoolz.%s docstring missing signature at beginning:\n\n%s'
- % (key, val.__doc__))
- assert not doclines[1], (
- 'cytoolz.%s docstring missing blank line after signature:\n\n%s'
- % (key, val.__doc__))
- assert doclines[2], (
- 'cytoolz.%s docstring too many blank lines after signature:\n\n%s'
- % (key, val.__doc__))
|