mirror of
https://github.com/searxng/searxng.git
synced 2024-11-05 04:40:11 +01:00
Merge pull request #1483 from MarcAbonce/wolframalpha_api_fix
[fix] Unicode error with WolframAlpha API engine (fixes #1480)
This commit is contained in:
commit
383e3cc554
@ -65,7 +65,7 @@ def replace_pua_chars(text):
|
||||
def response(resp):
|
||||
results = []
|
||||
|
||||
search_results = etree.XML(resp.text)
|
||||
search_results = etree.XML(resp.content)
|
||||
|
||||
# return empty array if there are no results
|
||||
if search_results.xpath(failure_xpath):
|
||||
|
@ -35,7 +35,7 @@ class TestWolframAlphaAPIEngine(SearxTestCase):
|
||||
xml = '''<?xml version='1.0' encoding='UTF-8'?>
|
||||
<queryresult success='false' error='false' />
|
||||
'''
|
||||
response = mock.Mock(text=xml.encode('utf-8'))
|
||||
response = mock.Mock(content=xml.encode('utf-8'))
|
||||
self.assertEqual(wolframalpha_api.response(response), [])
|
||||
|
||||
# test basic case
|
||||
@ -83,7 +83,7 @@ class TestWolframAlphaAPIEngine(SearxTestCase):
|
||||
</pod>
|
||||
</queryresult>
|
||||
"""
|
||||
response = mock.Mock(text=xml, request=request)
|
||||
response = mock.Mock(content=xml, request=request)
|
||||
results = wolframalpha_api.response(response)
|
||||
self.assertEqual(type(results), list)
|
||||
self.assertEqual(len(results), 2)
|
||||
@ -144,7 +144,7 @@ class TestWolframAlphaAPIEngine(SearxTestCase):
|
||||
</pod>
|
||||
</queryresult>
|
||||
"""
|
||||
response = mock.Mock(text=xml, request=request)
|
||||
response = mock.Mock(content=xml, request=request)
|
||||
results = wolframalpha_api.response(response)
|
||||
self.assertEqual(type(results), list)
|
||||
self.assertEqual(len(results), 2)
|
||||
|
Loading…
Reference in New Issue
Block a user