Page MenuHomeSoftware Heritage

Jenkins > .tox.py3.lib.python3.7.site-packages.swh.search.tests.test_translator::test_origin_and_metadata_filters
Failed

TEST RESULT

Run At
Jul 26 2021, 8:57 PM
Details
def test_origin_and_metadata_filters(): query = 'origin = django or metadata = "framework and web"' expected = { "filters": { "bool": { "should": [ { "multi_match": { "query": "django", "type": "bool_prefix", "operator": "and", "fields": [ "url.as_you_type", "url.as_you_type._2gram", "url.as_you_type._3gram", ], } }, { "nested": { "path": "intrinsic_metadata", "query": { "multi_match": { "query": '"framework and web"', "type": "cross_fields", "operator": "and", "fields": ["intrinsic_metadata.*"], "lenient": True, } }, } }, ] } } } > _test_results(query, expected) .tox/py3/lib/python3.7/site-packages/swh/search/tests/test_translator.py:100: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ .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 0x7fb2f826c780> 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