123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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['time_range'] = ''
  26. dicto['language'] = 'fr_FR'
  27. params = yahoo.request(query, dicto)
  28. self.assertIn('url', params)
  29. self.assertIn(query, params['url'])
  30. self.assertIn('search.yahoo.com', params['url'])
  31. self.assertIn('fr', params['url'])
  32. self.assertIn('cookies', params)
  33. self.assertIn('sB', params['cookies'])
  34. self.assertIn('fr', params['cookies']['sB'])
  35. dicto['language'] = 'all'
  36. params = yahoo.request(query, dicto)
  37. self.assertIn('cookies', params)
  38. self.assertIn('sB', params['cookies'])
  39. self.assertIn('en', params['cookies']['sB'])
  40. self.assertIn('en', params['url'])
  41. def test_response(self):
  42. self.assertRaises(AttributeError, yahoo.response, None)
  43. self.assertRaises(AttributeError, yahoo.response, [])
  44. self.assertRaises(AttributeError, yahoo.response, '')
  45. self.assertRaises(AttributeError, yahoo.response, '[]')
  46. response = mock.Mock(text='<html></html>')
  47. self.assertEqual(yahoo.response(response), [])
  48. html = """
  49. <ol class="reg mb-15 searchCenterMiddle">
  50. <li class="first">
  51. <div class="dd algo fst Sr">
  52. <div class="compTitle">
  53. <h3 class="title"><a class=" td-u" href="http://r.search.yahoo.com/_ylt=A0LEb9JUSKcAEGRXNyoA;
  54. _ylu=X3oDMTEzZm1qazYwBHNlYwNzcgRwb3MDMQRjb2xvA2Jm2dGlkA1NNRTcwM18x/RV=2/RE=1423106085/RO=10
  55. /RU=https%3a%2f%2fthis.is.the.url%2f/RK=0/RS=dtcJsfP4mEeBOjnVfUQ-"
  56. target="_blank" data-bid="54e712e13671c">
  57. <b><b>This is the title</b></b></a>
  58. </h3>
  59. </div>
  60. <div class="compText aAbs">
  61. <p class="lh-18"><b><b>This is the </b>content</b>
  62. </p>
  63. </div>
  64. </div>
  65. </li>
  66. <li>
  67. <div class="dd algo lst Sr">
  68. <div class="compTitle">
  69. </div>
  70. <div class="compText aAbs">
  71. <p class="lh-18">This is the second content</p>
  72. </div>
  73. </div>
  74. </li>
  75. </ol>
  76. <div class="dd assist fst lst AlsoTry" data-bid="54e712e138d04">
  77. <div class="compTitle mb-4 h-17">
  78. <h3 class="title">Also Try</h3> </div>
  79. <table class="compTable m-0 ac-1st td-u fz-ms">
  80. <tbody>
  81. <tr>
  82. <td class="w-50p pr-28"><a href="https://search.yahoo.com/"><B>This is the </B>suggestion<B></B></a>
  83. </td>
  84. </tr>
  85. </table>
  86. </div>
  87. """
  88. response = mock.Mock(text=html)
  89. results = yahoo.response(response)
  90. self.assertEqual(type(results), list)
  91. self.assertEqual(len(results), 2)
  92. self.assertEqual(results[0]['title'], 'This is the title')
  93. self.assertEqual(results[0]['url'], 'https://this.is.the.url/')
  94. self.assertEqual(results[0]['content'], 'This is the content')
  95. self.assertEqual(results[1]['suggestion'], 'This is the suggestion')
  96. html = """
  97. <ol class="reg mb-15 searchCenterMiddle">
  98. <li class="first">
  99. <div class="dd algo fst Sr">
  100. <div class="compTitle">
  101. <h3 class="title"><a class=" td-u" href="http://r.search.yahoo.com/_ylt=A0LEb9JUSKcAEGRXNyoA;
  102. _ylu=X3oDMTEzZm1qazYwBHNlYwNzcgRwb3MDMQRjb2xvA2Jm2dGlkA1NNRTcwM18x/RV=2/RE=1423106085/RO=10
  103. /RU=https%3a%2f%2fthis.is.the.url%2f/RK=0/RS=dtcJsfP4mEeBOjnVfUQ-"
  104. target="_blank" data-bid="54e712e13671c">
  105. <b><b>This is the title</b></b></a>
  106. </h3>
  107. </div>
  108. <div class="compText aAbs">
  109. <p class="lh-18"><b><b>This is the </b>content</b>
  110. </p>
  111. </div>
  112. </div>
  113. </li>
  114. </ol>
  115. """
  116. response = mock.Mock(text=html)
  117. results = yahoo.response(response)
  118. self.assertEqual(type(results), list)
  119. self.assertEqual(len(results), 1)
  120. self.assertEqual(results[0]['title'], 'This is the title')
  121. self.assertEqual(results[0]['url'], 'https://this.is.the.url/')
  122. self.assertEqual(results[0]['content'], 'This is the content')
  123. html = """
  124. <li class="b_algo" u="0|5109|4755453613245655|UAGjXgIrPH5yh-o5oNHRx_3Zta87f_QO">
  125. </li>
  126. """
  127. response = mock.Mock(text=html)
  128. results = yahoo.response(response)
  129. self.assertEqual(type(results), list)
  130. self.assertEqual(len(results), 0)