def test_limit_and_sortby():
query = "visited = true sort_by = [-visits,last_visit] limit = 15"
expected = {
"filters": {"term": {"has_visits": True}},
"sortBy": ["-visits", "last_visit"],
"limit": 15,
}
> _test_results(query, expected)
.tox/py3/lib/python3.7/site-packages/swh/search/tests/test_translator.py:111:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
.tox/py3/lib/python3.7/site-packages/swh/search/tests/test_translator.py:7: in _test_results
output = Translator().parse_query(query)
.tox/py3/lib/python3.7/site-packages/swh/search/translator.py:14: in __init__
swh_ql = Language("static/swh_ql.so", "swh_search_ql")
.tox/py3/lib/python3.7/site-packages/tree_sitter/__init__.py:81: in __init__
self.lib = cdll.LoadLibrary(library_path)
/usr/lib/python3.7/ctypes/__init__.py:434: in LoadLibrary
return self._dlltype(name)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <CDLL 'static/swh_ql.so', handle 0 at 0x7fb2beaabf28>
name = 'static/swh_ql.so', mode = 0, handle = None, use_errno = False
use_last_error = False
def __init__(self, name, mode=DEFAULT_MODE, handle=None,
use_errno=False,
use_last_error=False):
self._name = name
flags = self._func_flags_
if use_errno:
flags |= _FUNCFLAG_USE_ERRNO
if use_last_error:
flags |= _FUNCFLAG_USE_LASTERROR
if _sys.platform.startswith("aix"):
"""When the name contains ".a(" and ends with ")",
e.g., "libFOO.a(libFOO.so)" - this is taken to be an
archive(member) syntax for dlopen(), and the mode is adjusted.
Otherwise, name is presented to dlopen() as a file argument.
"""
if name and name.endswith(")") and ".a(" in name:
mode |= ( _os.RTLD_MEMBER | _os.RTLD_NOW )
class _FuncPtr(_CFuncPtr):
_flags_ = flags
_restype_ = self._func_restype_
self._FuncPtr = _FuncPtr
if handle is None:
> self._handle = _dlopen(self._name, mode)
E OSError: static/swh_ql.so: cannot open shared object file: No such file or directory
/usr/lib/python3.7/ctypes/__init__.py:356: OSError
TEST RESULT
TEST RESULT
- Run At
- Jul 26 2021, 8:57 PM