test_yahoo.py 6.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. # -*- coding: utf-8 -*-
  2. from collections import defaultdict
  3. import mock
  4. from searx.engines import yahoo
  5. from searx.testing import SearxTestCase
  6. class TestYahooEngine(SearxTestCase):
  7. def test_parse_url(self):
  8. test_url = 'http://r.search.yahoo.com/_ylt=A0LEb9JUSKcAEGRXNyoA;_ylu=X3oDMTEzZm1qazYwBHNlYwNzcgRwb3MDMQRjb' +\
  9. '2xvA2Jm2dGlkA1NNRTcwM18x/RV=2/RE=1423106085/RO=10/RU=https%3a%2f%2fthis.is.the.url%2f/RK=0/RS=' +\
  10. 'dtcJsfP4mEeBOjnVfUQ-'
  11. url = yahoo.parse_url(test_url)
  12. self.assertEqual('https://this.is.the.url/', url)
  13. test_url = 'http://r.search.yahoo.com/_ylt=A0LElb9JUSKcAEGRXNyoA;_ylu=X3oDMTEzZm1qazYwBHNlYwNzcgRwb3MDMQRjb' +\
  14. '2xvA2Jm2dGlkA1NNRTcwM18x/RV=2/RE=1423106085/RO=10/RU=https%3a%2f%2fthis.is.the.url%2f/RS=' +\
  15. 'dtcJsfP4mEeBOjnVfUQ-'
  16. url = yahoo.parse_url(test_url)
  17. self.assertEqual('https://this.is.the.url/', url)
  18. test_url = 'https://this.is.the.url/'
  19. url = yahoo.parse_url(test_url)
  20. self.assertEqual('https://this.is.the.url/', url)
  21. def test_request(self):
  22. query = 'test_query'
  23. dicto = defaultdict(dict)
  24. dicto['pageno'] = 1
  25. dicto['language'] = 'fr_FR'
  26. params = yahoo.request(query, dicto)
  27. self.assertIn('url', params)
  28. self.assertIn(query, params['url'])
  29. self.assertIn('search.yahoo.com', params['url'])
  30. self.assertIn('fr', params['url'])
  31. self.assertIn('cookies', params)
  32. self.assertIn('sB', params['cookies'])
  33. self.assertIn('fr', params['cookies']['sB'])
  34. dicto['language'] = 'all'
  35. params = yahoo.request(query, dicto)
  36. self.assertIn('cookies', params)
  37. self.assertIn('sB', params['cookies'])
  38. self.assertIn('en', params['cookies']['sB'])
  39. self.assertIn('en', params['url'])
  40. def test_response(self):
  41. self.assertRaises(AttributeError, yahoo.response, None)
  42. self.assertRaises(AttributeError, yahoo.response, [])
  43. self.assertRaises(AttributeError, yahoo.response, '')
  44. self.assertRaises(AttributeError, yahoo.response, '[]')
  45. response = mock.Mock(text='<html></html>')
  46. self.assertEqual(yahoo.response(response), [])
  47. html = """
  48. <ol class="reg mb-15 searchCenterMiddle">
  49. <li class="first">
  50. <div class="dd algo fst Sr">
  51. <div class="compTitle">
  52. <h3 class="title"><a class=" td-u" href="http://r.search.yahoo.com/_ylt=A0LEb9JUSKcAEGRXNyoA;
  53. _ylu=X3oDMTEzZm1qazYwBHNlYwNzcgRwb3MDMQRjb2xvA2Jm2dGlkA1NNRTcwM18x/RV=2/RE=1423106085/RO=10
  54. /RU=https%3a%2f%2fthis.is.the.url%2f/RK=0/RS=dtcJsfP4mEeBOjnVfUQ-"
  55. target="_blank" data-bid="54e712e13671c">
  56. <b><b>This is the title</b></b></a>
  57. </h3>
  58. </div>
  59. <div class="compText aAbs">
  60. <p class="lh-18"><b><b>This is the </b>content</b>
  61. </p>
  62. </div>
  63. </div>
  64. </li>
  65. <li>
  66. <div class="dd algo lst Sr">
  67. <div class="compTitle">
  68. <h3 class="title"><a class=" td-u" href="http://r.search.yahoo.com/_ylt=AwrBT7zgEudUW.wAe2ZXNyoA;
  69. _ylu=X3oDMTBybGY3bmpvBGNvbG8DYmYxBHBvcwMyBHZ0aWQDBHNlYwNzcg--/RV=2\/RE=1424458593/RO=10
  70. /RU=https%3a%2f%2fthis.is.the.second.url%2f/RK=0/RS=jIctjj_cBH1Efj88GCgHKp3__Qk-"
  71. target="_blank" data-bid="54e712e136926">
  72. This is the second <b><b>title</b></b></a>
  73. </h3>
  74. </div>
  75. <div class="compText aAbs">
  76. <p class="lh-18">This is the second content</p>
  77. </div>
  78. </div>
  79. </li>
  80. </ol>
  81. <div class="dd assist fst lst AlsoTry" data-bid="54e712e138d04">
  82. <div class="compTitle mb-4 h-17">
  83. <h3 class="title">Also Try</h3> </div>
  84. <table class="compTable m-0 ac-1st td-u fz-ms">
  85. <tbody>
  86. <tr>
  87. <td class="w-50p pr-28"><a href="https://search.yahoo.com/"><B>This is the </B>suggestion<B></B></a>
  88. </td>
  89. </tr>
  90. </table>
  91. </div>
  92. """
  93. response = mock.Mock(text=html)
  94. results = yahoo.response(response)
  95. print results
  96. self.assertEqual(type(results), list)
  97. self.assertEqual(len(results), 3)
  98. self.assertEqual(results[0]['title'], 'This is the title')
  99. self.assertEqual(results[0]['url'], 'https://this.is.the.url/')
  100. self.assertEqual(results[0]['content'], 'This is the content')
  101. self.assertEqual(results[1]['title'], 'This is the second title')
  102. self.assertEqual(results[1]['url'], 'https://this.is.the.second.url/')
  103. self.assertEqual(results[1]['content'], 'This is the second content')
  104. self.assertEqual(results[2]['suggestion'], 'This is the suggestion')
  105. html = """
  106. <ol class="reg mb-15 searchCenterMiddle">
  107. <li class="first">
  108. <div class="dd algo fst Sr">
  109. <div class="compTitle">
  110. <h3 class="title"><a class=" td-u" href="http://r.search.yahoo.com/_ylt=A0LEb9JUSKcAEGRXNyoA;
  111. _ylu=X3oDMTEzZm1qazYwBHNlYwNzcgRwb3MDMQRjb2xvA2Jm2dGlkA1NNRTcwM18x/RV=2/RE=1423106085/RO=10
  112. /RU=https%3a%2f%2fthis.is.the.url%2f/RK=0/RS=dtcJsfP4mEeBOjnVfUQ-"
  113. target="_blank" data-bid="54e712e13671c">
  114. <b><b>This is the title</b></b></a>
  115. </h3>
  116. </div>
  117. <div class="compText aAbs">
  118. <p class="lh-18"><b><b>This is the </b>content</b>
  119. </p>
  120. </div>
  121. </div>
  122. </li>
  123. </ol>
  124. """
  125. response = mock.Mock(text=html)
  126. results = yahoo.response(response)
  127. self.assertEqual(type(results), list)
  128. self.assertEqual(len(results), 1)
  129. self.assertEqual(results[0]['title'], 'This is the title')
  130. self.assertEqual(results[0]['url'], 'https://this.is.the.url/')
  131. self.assertEqual(results[0]['content'], 'This is the content')
  132. html = """
  133. <li class="b_algo" u="0|5109|4755453613245655|UAGjXgIrPH5yh-o5oNHRx_3Zta87f_QO">
  134. </li>
  135. """
  136. response = mock.Mock(text=html)
  137. results = yahoo.response(response)
  138. self.assertEqual(type(results), list)
  139. self.assertEqual(len(results), 0)