2024-03-11 13:06:26 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
# pylint: disable=missing-module-docstring
|
2015-10-03 15:26:07 +00:00
|
|
|
|
|
|
|
from searx.results import ResultContainer
|
[fix] unit tests: call searx.search.initialize in test's setUp
Depending on the order the unit tests are executed, the searx.search module is
initalized or not, issue reported in [1]::
Traceback (most recent call last):
File "searxng/tests/unit/test_results.py", line 72, in test_result_merge_by_title
self.container.extend('stract', [fake_result(engine='stract', title='short title')])
File "searxng/searx/results.py", line 243, in extend
histogram_observe(standard_result_count, 'engine', engine_name, 'result', 'count')
File "searxng/searx/metrics/__init__.py", line 49, in histogram_observe
histogram_storage.get(*args).observe(duration)
^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'NoneType' object has no attribute 'get'
To ensure that the searx.search module is initialized, the
- searx.engines.load_engines is replace by
- searx.search.initialize
[1] https://github.com/searxng/searxng/pull/3932#discussion_r1822406569
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2024-10-30 12:16:31 +00:00
|
|
|
import searx.search
|
2021-09-02 14:01:34 +00:00
|
|
|
from tests import SearxTestCase
|
2015-10-03 15:26:07 +00:00
|
|
|
|
|
|
|
|
2024-10-17 04:57:21 +00:00
|
|
|
def make_test_engine_dict(**kwargs) -> dict:
|
|
|
|
test_engine = {
|
|
|
|
# fmt: off
|
|
|
|
'name': None,
|
|
|
|
'engine': None,
|
|
|
|
'categories': 'general',
|
|
|
|
'shortcut': 'dummy',
|
|
|
|
'timeout': 3.0,
|
|
|
|
'tokens': [],
|
|
|
|
# fmt: on
|
|
|
|
}
|
|
|
|
|
|
|
|
test_engine.update(**kwargs)
|
|
|
|
return test_engine
|
|
|
|
|
|
|
|
|
2021-12-27 08:26:22 +00:00
|
|
|
def fake_result(url='https://aa.bb/cc?dd=ee#ff', title='aaa', content='bbb', engine='wikipedia', **kwargs):
|
2021-12-27 08:16:03 +00:00
|
|
|
result = {
|
|
|
|
# fmt: off
|
|
|
|
'url': url,
|
|
|
|
'title': title,
|
|
|
|
'content': content,
|
|
|
|
'engine': engine,
|
|
|
|
# fmt: on
|
|
|
|
}
|
2015-10-03 15:26:07 +00:00
|
|
|
result.update(kwargs)
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
2024-03-11 13:06:26 +00:00
|
|
|
class ResultContainerTestCase(SearxTestCase): # pylint: disable=missing-class-docstring
|
[fix] unit tests: call searx.search.initialize in test's setUp
Depending on the order the unit tests are executed, the searx.search module is
initalized or not, issue reported in [1]::
Traceback (most recent call last):
File "searxng/tests/unit/test_results.py", line 72, in test_result_merge_by_title
self.container.extend('stract', [fake_result(engine='stract', title='short title')])
File "searxng/searx/results.py", line 243, in extend
histogram_observe(standard_result_count, 'engine', engine_name, 'result', 'count')
File "searxng/searx/metrics/__init__.py", line 49, in histogram_observe
histogram_storage.get(*args).observe(duration)
^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'NoneType' object has no attribute 'get'
To ensure that the searx.search module is initialized, the
- searx.engines.load_engines is replace by
- searx.search.initialize
[1] https://github.com/searxng/searxng/pull/3932#discussion_r1822406569
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2024-10-30 12:16:31 +00:00
|
|
|
|
2024-10-17 04:57:21 +00:00
|
|
|
def setUp(self) -> None:
|
|
|
|
stract_engine = make_test_engine_dict(name="stract", engine="stract", shortcut="stra")
|
|
|
|
duckduckgo_engine = make_test_engine_dict(name="duckduckgo", engine="duckduckgo", shortcut="ddg")
|
|
|
|
mojeek_engine = make_test_engine_dict(name="mojeek", engine="mojeek", shortcut="mjk")
|
[fix] unit tests: call searx.search.initialize in test's setUp
Depending on the order the unit tests are executed, the searx.search module is
initalized or not, issue reported in [1]::
Traceback (most recent call last):
File "searxng/tests/unit/test_results.py", line 72, in test_result_merge_by_title
self.container.extend('stract', [fake_result(engine='stract', title='short title')])
File "searxng/searx/results.py", line 243, in extend
histogram_observe(standard_result_count, 'engine', engine_name, 'result', 'count')
File "searxng/searx/metrics/__init__.py", line 49, in histogram_observe
histogram_storage.get(*args).observe(duration)
^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'NoneType' object has no attribute 'get'
To ensure that the searx.search module is initialized, the
- searx.engines.load_engines is replace by
- searx.search.initialize
[1] https://github.com/searxng/searxng/pull/3932#discussion_r1822406569
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2024-10-30 12:16:31 +00:00
|
|
|
searx.search.initialize([stract_engine, duckduckgo_engine, mojeek_engine])
|
2024-10-17 04:57:21 +00:00
|
|
|
self.container = ResultContainer()
|
|
|
|
|
|
|
|
def tearDown(self):
|
[fix] unit tests: call searx.search.initialize in test's setUp
Depending on the order the unit tests are executed, the searx.search module is
initalized or not, issue reported in [1]::
Traceback (most recent call last):
File "searxng/tests/unit/test_results.py", line 72, in test_result_merge_by_title
self.container.extend('stract', [fake_result(engine='stract', title='short title')])
File "searxng/searx/results.py", line 243, in extend
histogram_observe(standard_result_count, 'engine', engine_name, 'result', 'count')
File "searxng/searx/metrics/__init__.py", line 49, in histogram_observe
histogram_storage.get(*args).observe(duration)
^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'NoneType' object has no attribute 'get'
To ensure that the searx.search module is initialized, the
- searx.engines.load_engines is replace by
- searx.search.initialize
[1] https://github.com/searxng/searxng/pull/3932#discussion_r1822406569
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2024-10-30 12:16:31 +00:00
|
|
|
searx.search.load_engines([])
|
2024-10-17 04:57:21 +00:00
|
|
|
|
2015-10-03 15:26:07 +00:00
|
|
|
def test_empty(self):
|
2024-10-17 04:57:21 +00:00
|
|
|
self.assertEqual(self.container.get_ordered_results(), [])
|
2015-10-03 15:26:07 +00:00
|
|
|
|
|
|
|
def test_one_result(self):
|
2024-10-17 04:57:21 +00:00
|
|
|
self.container.extend('wikipedia', [fake_result()])
|
|
|
|
|
|
|
|
self.assertEqual(self.container.results_length(), 1)
|
2015-10-03 15:26:07 +00:00
|
|
|
|
|
|
|
def test_one_suggestion(self):
|
2024-10-17 04:57:21 +00:00
|
|
|
self.container.extend('wikipedia', [fake_result(suggestion=True)])
|
|
|
|
|
|
|
|
self.assertEqual(len(self.container.suggestions), 1)
|
|
|
|
self.assertEqual(self.container.results_length(), 0)
|
2015-10-03 15:26:07 +00:00
|
|
|
|
|
|
|
def test_result_merge(self):
|
2024-10-17 04:57:21 +00:00
|
|
|
self.container.extend('wikipedia', [fake_result()])
|
|
|
|
self.container.extend('wikidata', [fake_result(), fake_result(url='https://example.com/')])
|
|
|
|
|
|
|
|
self.assertEqual(self.container.results_length(), 2)
|
|
|
|
|
|
|
|
def test_result_merge_by_title(self):
|
|
|
|
self.container.extend('stract', [fake_result(engine='stract', title='short title')])
|
|
|
|
self.container.extend('duckduckgo', [fake_result(engine='duckduckgo', title='normal title')])
|
|
|
|
self.container.extend('mojeek', [fake_result(engine='mojeek', title='this long long title')])
|
|
|
|
|
|
|
|
self.assertEqual(self.container.get_ordered_results()[0].get('title', ''), 'this long long title')
|