mirror of
				https://github.com/searxng/searxng.git
				synced 2025-10-30 18:22:31 -04:00 
			
		
		
		
	In the past, some files were tested with the standard profile, others with a profile in which most of the messages were switched off ... some files were not checked at all. - ``PYLINT_SEARXNG_DISABLE_OPTION`` has been abolished - the distinction ``# lint: pylint`` is no longer necessary - the pylint tasks have been reduced from three to two 1. ./searx/engines -> lint engines with additional builtins 2. ./searx ./searxng_extra ./tests -> lint all other python files Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
		
			
				
	
	
		
			138 lines
		
	
	
		
			4.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			138 lines
		
	
	
		
			4.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| # SPDX-License-Identifier: AGPL-3.0-or-later
 | |
| # pylint: disable=missing-module-docstring, invalid-name
 | |
| 
 | |
| from copy import copy
 | |
| 
 | |
| import searx.search
 | |
| from searx.search import SearchQuery, EngineRef
 | |
| from searx import settings
 | |
| from tests import SearxTestCase
 | |
| 
 | |
| 
 | |
| SAFESEARCH = 0
 | |
| PAGENO = 1
 | |
| PUBLIC_ENGINE_NAME = 'general dummy'
 | |
| TEST_ENGINES = [
 | |
|     {
 | |
|         'name': PUBLIC_ENGINE_NAME,
 | |
|         'engine': 'dummy',
 | |
|         'categories': 'general',
 | |
|         'shortcut': 'gd',
 | |
|         'timeout': 3.0,
 | |
|         'tokens': [],
 | |
|     },
 | |
| ]
 | |
| 
 | |
| 
 | |
| class SearchQueryTestCase(SearxTestCase):  # pylint: disable=missing-class-docstring
 | |
|     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):  # pylint: disable=missing-class-docstring
 | |
|     def setUp(self):
 | |
| 
 | |
|         from searx import webapp  # pylint: disable=import-outside-toplevel
 | |
| 
 | |
|         self.app = webapp.app
 | |
| 
 | |
|     @classmethod
 | |
|     def setUpClass(cls):
 | |
|         searx.search.initialize(TEST_ENGINES)
 | |
| 
 | |
|     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(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.assertTrue(results.redirect_url is not None)
 | |
| 
 | |
|         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.assertTrue(results.redirect_url is None)
 |