test_webapp.py 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. # -*- coding: utf-8 -*-
  2. import json
  3. from urllib.parse import ParseResult
  4. from mock import Mock
  5. from searx import webapp
  6. from searx.testing import SearxTestCase
  7. from searx.search import Search
  8. class ViewsTestCase(SearxTestCase):
  9. def setUp(self):
  10. webapp.app.config['TESTING'] = True # to get better error messages
  11. self.app = webapp.app.test_client()
  12. # set some defaults
  13. test_results = [
  14. {
  15. 'content': 'first test content',
  16. 'title': 'First Test',
  17. 'url': 'http://first.test.xyz',
  18. 'engines': ['youtube', 'startpage'],
  19. 'engine': 'startpage',
  20. 'parsed_url': ParseResult(scheme='http', netloc='first.test.xyz', path='/', params='', query='', fragment=''), # noqa
  21. }, {
  22. 'content': 'second test content',
  23. 'title': 'Second Test',
  24. 'url': 'http://second.test.xyz',
  25. 'engines': ['youtube', 'startpage'],
  26. 'engine': 'youtube',
  27. 'parsed_url': ParseResult(scheme='http', netloc='second.test.xyz', path='/', params='', query='', fragment=''), # noqa
  28. },
  29. ]
  30. timings = [
  31. {
  32. 'engine': 'startpage',
  33. 'total': 0.8,
  34. 'load': 0.7
  35. },
  36. {
  37. 'engine': 'youtube',
  38. 'total': 0.9,
  39. 'load': 0.6
  40. }
  41. ]
  42. def search_mock(search_self, *args):
  43. search_self.result_container = Mock(get_ordered_results=lambda: test_results,
  44. answers=dict(),
  45. corrections=set(),
  46. suggestions=set(),
  47. infoboxes=[],
  48. unresponsive_engines=set(),
  49. results=test_results,
  50. results_number=lambda: 3,
  51. results_length=lambda: len(test_results),
  52. get_timings=lambda: timings,
  53. redirect_url=None)
  54. self.setattr4test(Search, 'search', search_mock)
  55. def get_current_theme_name_mock(override=None):
  56. if override:
  57. return override
  58. return 'oscar'
  59. self.setattr4test(webapp, 'get_current_theme_name', get_current_theme_name_mock)
  60. self.maxDiff = None # to see full diffs
  61. def test_index_empty(self):
  62. result = self.app.post('/')
  63. self.assertEqual(result.status_code, 200)
  64. self.assertIn(b'<div class="text-hide center-block" id="main-logo">'
  65. + b'<img class="center-block img-responsive" src="/static/themes/oscar/img/logo_searx_a.png"'
  66. + b' alt="searx logo" />searx</div>', result.data)
  67. def test_index_html_post(self):
  68. result = self.app.post('/', data={'q': 'test'})
  69. self.assertEqual(result.status_code, 308)
  70. self.assertEqual(result.location, 'http://localhost/search')
  71. def test_index_html_get(self):
  72. result = self.app.post('/?q=test')
  73. self.assertEqual(result.status_code, 308)
  74. self.assertEqual(result.location, 'http://localhost/search?q=test')
  75. def test_search_empty_html(self):
  76. result = self.app.post('/search', data={'q': ''})
  77. self.assertEqual(result.status_code, 200)
  78. self.assertIn(b'<span class="instance pull-left"><a href="/">searx</a></span>', result.data)
  79. def test_search_empty_json(self):
  80. result = self.app.post('/search', data={'q': '', 'format': 'json'})
  81. self.assertEqual(result.status_code, 400)
  82. def test_search_empty_csv(self):
  83. result = self.app.post('/search', data={'q': '', 'format': 'csv'})
  84. self.assertEqual(result.status_code, 400)
  85. def test_search_empty_rss(self):
  86. result = self.app.post('/search', data={'q': '', 'format': 'rss'})
  87. self.assertEqual(result.status_code, 400)
  88. def test_search_html(self):
  89. result = self.app.post('/search', data={'q': 'test'})
  90. self.assertIn(
  91. b'<h4 class="result_header" id="result-2"><img width="32" height="32" class="favicon"'
  92. + b' src="/static/themes/oscar/img/icons/youtube.png" alt="youtube" /><a href="http://second.test.xyz"'
  93. + b' rel="noreferrer" aria-labelledby="result-2">Second <span class="highlight">Test</span></a></h4>', # noqa
  94. result.data
  95. )
  96. self.assertIn(
  97. b'<p class="result-content">second <span class="highlight">test</span> content</p>', # noqa
  98. result.data
  99. )
  100. def test_index_json(self):
  101. result = self.app.post('/', data={'q': 'test', 'format': 'json'})
  102. self.assertEqual(result.status_code, 308)
  103. def test_search_json(self):
  104. result = self.app.post('/search', data={'q': 'test', 'format': 'json'})
  105. result_dict = json.loads(result.data.decode())
  106. self.assertEqual('test', result_dict['query'])
  107. self.assertEqual(len(result_dict['results']), 2)
  108. self.assertEqual(result_dict['results'][0]['content'], 'first test content')
  109. self.assertEqual(result_dict['results'][0]['url'], 'http://first.test.xyz')
  110. def test_index_csv(self):
  111. result = self.app.post('/', data={'q': 'test', 'format': 'csv'})
  112. self.assertEqual(result.status_code, 308)
  113. def test_search_csv(self):
  114. result = self.app.post('/search', data={'q': 'test', 'format': 'csv'})
  115. self.assertEqual(
  116. b'title,url,content,host,engine,score,type\r\n'
  117. b'First Test,http://first.test.xyz,first test content,first.test.xyz,startpage,,result\r\n' # noqa
  118. b'Second Test,http://second.test.xyz,second test content,second.test.xyz,youtube,,result\r\n', # noqa
  119. result.data
  120. )
  121. def test_index_rss(self):
  122. result = self.app.post('/', data={'q': 'test', 'format': 'rss'})
  123. self.assertEqual(result.status_code, 308)
  124. def test_search_rss(self):
  125. result = self.app.post('/search', data={'q': 'test', 'format': 'rss'})
  126. self.assertIn(
  127. b'<description>Search results for "test" - searx</description>',
  128. result.data
  129. )
  130. self.assertIn(
  131. b'<opensearch:totalResults>3</opensearch:totalResults>',
  132. result.data
  133. )
  134. self.assertIn(
  135. b'<title>First Test</title>',
  136. result.data
  137. )
  138. self.assertIn(
  139. b'<link>http://first.test.xyz</link>',
  140. result.data
  141. )
  142. self.assertIn(
  143. b'<description>first test content</description>',
  144. result.data
  145. )
  146. def test_about(self):
  147. result = self.app.get('/about')
  148. self.assertEqual(result.status_code, 200)
  149. self.assertIn(b'<h1>About <a href="/">searx</a></h1>', result.data)
  150. def test_preferences(self):
  151. result = self.app.get('/preferences')
  152. self.assertEqual(result.status_code, 200)
  153. self.assertIn(
  154. b'<form method="post" action="/preferences" id="search_form">',
  155. result.data
  156. )
  157. self.assertIn(
  158. b'<label class="col-sm-3 col-md-2" for="categories">Default categories</label>',
  159. result.data
  160. )
  161. self.assertIn(
  162. b'<label class="col-sm-3 col-md-2" for="locale">Interface language</label>',
  163. result.data
  164. )
  165. def test_browser_locale(self):
  166. result = self.app.get('/preferences', headers={'Accept-Language': 'zh-tw;q=0.8'})
  167. self.assertEqual(result.status_code, 200)
  168. self.assertIn(
  169. b'<option value="zh_TW" selected="selected">',
  170. result.data,
  171. 'Interface locale ignored browser preference.'
  172. )
  173. self.assertIn(
  174. b'<option value="zh-TW" selected="selected">',
  175. result.data,
  176. 'Search language ignored browser preference.'
  177. )
  178. def test_stats(self):
  179. result = self.app.get('/stats')
  180. self.assertEqual(result.status_code, 200)
  181. self.assertIn(b'<h1>Engine stats</h1>', result.data)
  182. def test_robots_txt(self):
  183. result = self.app.get('/robots.txt')
  184. self.assertEqual(result.status_code, 200)
  185. self.assertIn(b'Allow: /', result.data)
  186. def test_opensearch_xml(self):
  187. result = self.app.get('/opensearch.xml')
  188. self.assertEqual(result.status_code, 200)
  189. self.assertIn(b'<Description>a privacy-respecting, hackable metasearch engine</Description>', result.data)
  190. def test_favicon(self):
  191. result = self.app.get('/favicon.ico')
  192. self.assertEqual(result.status_code, 200)
  193. def test_config(self):
  194. result = self.app.get('/config')
  195. self.assertEqual(result.status_code, 200)
  196. json_result = result.get_json()
  197. self.assertTrue(json_result)