| |
|
|
| |
| from collections import namedtuple |
|
|
| import pytest |
|
|
| from astropy.utils import introspection |
| from astropy.utils.introspection import (find_current_module, find_mod_objs, |
| isinstancemethod, minversion) |
|
|
|
|
| def test_pkg_finder(): |
| """ |
| Tests that the `find_current_module` function works. Note that |
| this also implicitly tests compat.misc._patched_getmodule |
| """ |
| mod1 = 'astropy.utils.introspection' |
| mod2 = 'astropy.utils.tests.test_introspection' |
| mod3 = 'astropy.utils.tests.test_introspection' |
| assert find_current_module(0).__name__ == mod1 |
| assert find_current_module(1).__name__ == mod2 |
| assert find_current_module(0, True).__name__ == mod3 |
|
|
|
|
| def test_find_current_mod(): |
| from sys import getrecursionlimit |
|
|
| thismodnm = __name__ |
|
|
| assert find_current_module(0) is introspection |
| assert find_current_module(1).__name__ == thismodnm |
| assert find_current_module(getrecursionlimit() + 1) is None |
|
|
| assert find_current_module(0, True).__name__ == thismodnm |
| assert find_current_module(0, [introspection]).__name__ == thismodnm |
| assert find_current_module(0, ['astropy.utils.introspection']).__name__ == thismodnm |
|
|
| with pytest.raises(ImportError): |
| find_current_module(0, ['faddfdsasewrweriopunjlfiurrhujnkflgwhu']) |
|
|
|
|
| def test_find_mod_objs(): |
| lnms, fqns, objs = find_mod_objs('astropy') |
|
|
| |
| |
| import astropy |
|
|
| |
| |
| assert 'test' in lnms |
| assert astropy.test in objs |
|
|
| lnms, fqns, objs = find_mod_objs(__name__, onlylocals=False) |
| assert 'namedtuple' in lnms |
| assert 'collections.namedtuple' in fqns |
| assert namedtuple in objs |
|
|
| lnms, fqns, objs = find_mod_objs(__name__, onlylocals=True) |
| assert 'namedtuple' not in lnms |
| assert 'collections.namedtuple' not in fqns |
| assert namedtuple not in objs |
|
|
|
|
| def test_minversion(): |
| from types import ModuleType |
| test_module = ModuleType(str("test_module")) |
| test_module.__version__ = '0.12.2' |
| good_versions = ['0.12', '0.12.1', '0.12.0.dev', '0.12dev'] |
| bad_versions = ['1', '1.2rc1'] |
| for version in good_versions: |
| assert minversion(test_module, version) |
| for version in bad_versions: |
| assert not minversion(test_module, version) |
|
|