test_yahoo.py 5.6 KB

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['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. </div>
  69. <div class="compText aAbs">
  70. <p class="lh-18">This is the second content</p>
  71. </div>
  72. </div>
  73. </li>
  74. </ol>
  75. <div class="dd assist fst lst AlsoTry" data-bid="54e712e138d04">
  76. <div class="compTitle mb-4 h-17">
  77. <h3 class="title">Also Try</h3> </div>
  78. <table class="compTable m-0 ac-1st td-u fz-ms">
  79. <tbody>
  80. <tr>
  81. <td class="w-50p pr-28"><a href="https://search.yahoo.com/"><B>This is the </B>suggestion<B></B></a>
  82. </td>
  83. </tr>
  84. </table>
  85. </div>
  86. """
  87. response = mock.Mock(text=html)
  88. results = yahoo.response(response)
  89. self.assertEqual(type(results), list)
  90. self.assertEqual(len(results), 2)
  91. self.assertEqual(results[0]['title'], 'This is the title')
  92. self.assertEqual(results[0]['url'], 'https://this.is.the.url/')
  93. self.assertEqual(results[0]['content'], 'This is the content')
  94. self.assertEqual(results[1]['suggestion'], 'This is the suggestion')
  95. html = """
  96. <ol class="reg mb-15 searchCenterMiddle">
  97. <li class="first">
  98. <div class="dd algo fst Sr">
  99. <div class="compTitle">
  100. <h3 class="title"><a class=" td-u" href="http://r.search.yahoo.com/_ylt=A0LEb9JUSKcAEGRXNyoA;
  101. _ylu=X3oDMTEzZm1qazYwBHNlYwNzcgRwb3MDMQRjb2xvA2Jm2dGlkA1NNRTcwM18x/RV=2/RE=1423106085/RO=10
  102. /RU=https%3a%2f%2fthis.is.the.url%2f/RK=0/RS=dtcJsfP4mEeBOjnVfUQ-"
  103. target="_blank" data-bid="54e712e13671c">
  104. <b><b>This is the title</b></b></a>
  105. </h3>
  106. </div>
  107. <div class="compText aAbs">
  108. <p class="lh-18"><b><b>This is the </b>content</b>
  109. </p>
  110. </div>
  111. </div>
  112. </li>
  113. </ol>
  114. """
  115. response = mock.Mock(text=html)
  116. results = yahoo.response(response)
  117. self.assertEqual(type(results), list)
  118. self.assertEqual(len(results), 1)
  119. self.assertEqual(results[0]['title'], 'This is the title')
  120. self.assertEqual(results[0]['url'], 'https://this.is.the.url/')
  121. self.assertEqual(results[0]['content'], 'This is the content')
  122. html = """
  123. <li class="b_algo" u="0|5109|4755453613245655|UAGjXgIrPH5yh-o5oNHRx_3Zta87f_QO">
  124. </li>
  125. """
  126. response = mock.Mock(text=html)
  127. results = yahoo.response(response)
  128. self.assertEqual(type(results), list)
  129. self.assertEqual(len(results), 0)