mirror of
https://github.com/searxng/searxng.git
synced 2025-09-08 19:28:32 +02:00
- pyright configuration [1]_ - stub files: types-lxml [2]_ - addition of various type hints - enable use of new type system features on older Python versions [3]_ - ``.tool-versions`` - set python to lowest version we support (3.10.18) [4]_: Older versions typically lack some typing features found in newer Python versions. Therefore, for local type checking (before commit), it is necessary to use the older Python interpreter. .. [1] https://docs.basedpyright.com/v1.20.0/configuration/config-files/ .. [2] https://pypi.org/project/types-lxml/ .. [3] https://typing-extensions.readthedocs.io/en/latest/# .. [4] https://mise.jdx.dev/configuration.html#tool-versions Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> Format: reST
120 lines
4.3 KiB
Python
120 lines
4.3 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
# pylint: disable=missing-module-docstring,disable=missing-class-docstring,invalid-name
|
|
|
|
from copy import copy
|
|
|
|
import searx.search
|
|
from searx.search.models import SearchQuery, EngineRef
|
|
from searx import settings
|
|
from tests import SearxTestCase
|
|
|
|
|
|
SAFESEARCH = 0
|
|
PAGENO = 1
|
|
PUBLIC_ENGINE_NAME = "dummy engine" # from the ./settings/test_settings.yml
|
|
|
|
|
|
class SearchQueryTestCase(SearxTestCase):
|
|
|
|
def test_repr(self):
|
|
s = SearchQuery('test', [EngineRef('bing', 'general')], 'all', 0, 1, '1', 5.0, 'g')
|
|
self.assertEqual(
|
|
repr(s), "SearchQuery('test', [EngineRef('bing', 'general')], 'all', 0, 1, '1', 5.0, 'g', None)"
|
|
) # noqa
|
|
|
|
def test_eq(self):
|
|
s = SearchQuery('test', [EngineRef('bing', 'general')], 'all', 0, 1, None, None, None)
|
|
t = SearchQuery('test', [EngineRef('google', 'general')], 'all', 0, 1, None, None, None)
|
|
self.assertEqual(s, s)
|
|
self.assertNotEqual(s, t)
|
|
|
|
def test_copy(self):
|
|
s = SearchQuery('test', [EngineRef('bing', 'general')], 'all', 0, 1, None, None, None)
|
|
t = copy(s)
|
|
self.assertEqual(s, t)
|
|
|
|
|
|
class SearchTestCase(SearxTestCase):
|
|
|
|
def test_timeout_simple(self):
|
|
settings['outgoing']['max_request_timeout'] = None
|
|
search_query = SearchQuery(
|
|
'test', [EngineRef(PUBLIC_ENGINE_NAME, 'general')], 'en-US', SAFESEARCH, PAGENO, None, None
|
|
)
|
|
search = searx.search.Search(search_query)
|
|
with self.app.test_request_context('/search'):
|
|
search.search()
|
|
self.assertEqual(search.actual_timeout, 3.0)
|
|
|
|
def test_timeout_query_above_default_nomax(self):
|
|
settings['outgoing']['max_request_timeout'] = None
|
|
search_query = SearchQuery(
|
|
'test', [EngineRef(PUBLIC_ENGINE_NAME, 'general')], 'en-US', SAFESEARCH, PAGENO, None, 5.0
|
|
)
|
|
search = searx.search.Search(search_query)
|
|
with self.app.test_request_context('/search'):
|
|
search.search()
|
|
self.assertEqual(search.actual_timeout, 3.0)
|
|
|
|
def test_timeout_query_below_default_nomax(self):
|
|
settings['outgoing']['max_request_timeout'] = None
|
|
search_query = SearchQuery(
|
|
'test', [EngineRef(PUBLIC_ENGINE_NAME, 'general')], 'en-US', SAFESEARCH, PAGENO, None, 1.0
|
|
)
|
|
search = searx.search.Search(search_query)
|
|
with self.app.test_request_context('/search'):
|
|
search.search()
|
|
self.assertEqual(search.actual_timeout, 1.0)
|
|
|
|
def test_timeout_query_below_max(self):
|
|
settings['outgoing']['max_request_timeout'] = 10.0
|
|
search_query = SearchQuery(
|
|
'test', [EngineRef(PUBLIC_ENGINE_NAME, 'general')], 'en-US', SAFESEARCH, PAGENO, None, 5.0
|
|
)
|
|
search = searx.search.Search(search_query)
|
|
with self.app.test_request_context('/search'):
|
|
search.search()
|
|
self.assertEqual(search.actual_timeout, 5.0)
|
|
|
|
def test_timeout_query_above_max(self):
|
|
settings['outgoing']['max_request_timeout'] = 10.0
|
|
search_query = SearchQuery(
|
|
'test', [EngineRef(PUBLIC_ENGINE_NAME, 'general')], 'en-US', SAFESEARCH, PAGENO, None, 15.0
|
|
)
|
|
search = searx.search.Search(search_query)
|
|
with self.app.test_request_context('/search'):
|
|
search.search()
|
|
self.assertEqual(search.actual_timeout, 10.0)
|
|
|
|
def test_external_bang_valid(self):
|
|
search_query = SearchQuery(
|
|
'yes yes',
|
|
[EngineRef(PUBLIC_ENGINE_NAME, 'general')],
|
|
'en-US',
|
|
SAFESEARCH,
|
|
PAGENO,
|
|
None,
|
|
None,
|
|
external_bang="yt",
|
|
)
|
|
search = searx.search.Search(search_query)
|
|
results = search.search()
|
|
# For checking if the user redirected with the youtube external bang
|
|
self.assertIsNotNone(results.redirect_url)
|
|
|
|
def test_external_bang_none(self):
|
|
search_query = SearchQuery(
|
|
'youtube never gonna give you up',
|
|
[EngineRef(PUBLIC_ENGINE_NAME, 'general')],
|
|
'en-US',
|
|
SAFESEARCH,
|
|
PAGENO,
|
|
None,
|
|
None,
|
|
)
|
|
|
|
search = searx.search.Search(search_query)
|
|
with self.app.test_request_context('/search'):
|
|
results = search.search()
|
|
# This should not redirect
|
|
self.assertIsNone(results.redirect_url)
|