# SPDX-License-Identifier: AGPL-3.0-or-later # pylint: disable=missing-module-docstring,disable=missing-class-docstring,invalid-name import json import babel from mock import Mock import searx.webapp import searx.search import searx.search.processors from searx.result_types._base import MainResult from searx.results import Timing from searx.preferences import Preferences from tests import SearxTestCase class ViewsTestCase(SearxTestCase): # pylint: disable=too-many-public-methods def setUp(self): super().setUp() # skip init function (no external HTTP request) def dummy(*args, **kwargs): # pylint: disable=unused-argument pass self.setattr4test(searx.search.processors, 'initialize_processor', dummy) # remove sha for the static file so the tests don't have to care about # the changing URLs self.setattr4test(searx.webapp, 'static_files', {}) # set some defaults test_results = [ MainResult( title="First Test", url="http://first.test.xyz", content="first test content", engine="startpage", ), MainResult( title="Second Test", url="http://second.test.xyz", content="second test content", engine="youtube", ), ] for r in test_results: r.normalize_result_fields() timings = [ Timing(engine='startpage', total=0.8, load=0.7), Timing(engine='youtube', total=0.9, load=0.6), ] def search_mock(search_self, *args): # pylint: disable=unused-argument search_self.result_container = Mock( get_ordered_results=lambda: test_results, answers={}, corrections=set(), suggestions=set(), infoboxes=[], unresponsive_engines=set(), results=test_results, number_of_results=3, results_length=lambda: len(test_results), get_timings=lambda: timings, redirect_url=None, engine_data={}, ) search_self.search_query.locale = babel.Locale.parse("en-US", sep='-') self.setattr4test(searx.search.Search, 'search', search_mock) original_preferences_get_value = Preferences.get_value def preferences_get_value(preferences_self, user_setting_name: str): if user_setting_name == 'theme': return 'simple' return original_preferences_get_value(preferences_self, user_setting_name) self.setattr4test(Preferences, 'get_value', preferences_get_value) # to see full diffs self.maxDiff = None # pylint: disable=invalid-name def test_index_empty(self): result = self.client.post('/') self.assertEqual(result.status_code, 200) self.assertIn( b'
\n second test ',
result.data,
)
def test_index_json(self):
result = self.client.post('/', data={'q': 'test', 'format': 'json'})
self.assertEqual(result.status_code, 308)
def test_search_json(self):
result = self.client.post('/search', data={'q': 'test', 'format': 'json'})
result_dict = json.loads(result.data.decode())
self.assertEqual('test', result_dict['query'])
self.assertEqual(len(result_dict['results']), 2)
self.assertEqual(result_dict['results'][0]['content'], 'first test content')
self.assertEqual(result_dict['results'][0]['url'], 'http://first.test.xyz')
def test_index_csv(self):
result = self.client.post('/', data={'q': 'test', 'format': 'csv'})
self.assertEqual(result.status_code, 308)
def test_search_csv(self):
result = self.client.post('/search', data={'q': 'test', 'format': 'csv'})
self.assertEqual(
b'title,url,content,host,engine,score,type\r\n'
b'First Test,http://first.test.xyz,first test content,first.test.xyz,startpage,,result\r\n' # noqa
b'Second Test,http://second.test.xyz,second test content,second.test.xyz,youtube,,result\r\n', # noqa
result.data,
)
def test_index_rss(self):
result = self.client.post('/', data={'q': 'test', 'format': 'rss'})
self.assertEqual(result.status_code, 308)
def test_search_rss(self):
result = self.client.post('/search', data={'q': 'test', 'format': 'rss'})
self.assertIn(b'