diff options
author | Adam Tauber <asciimoo@gmail.com> | 2017-05-22 15:36:52 +0200 |
---|---|---|
committer | Adam Tauber <asciimoo@gmail.com> | 2017-05-22 15:36:52 +0200 |
commit | 8db527c1d233888b197bd2e8b2fbda8e88d0c60d (patch) | |
tree | 11e8af9028b19cb32b1d530d4c83359f99fc155f | |
parent | 259735f30901ae884f8234f1f138c28a9e59713a (diff) | |
download | searxng-8db527c1d233888b197bd2e8b2fbda8e88d0c60d.tar.gz searxng-8db527c1d233888b197bd2e8b2fbda8e88d0c60d.zip |
[fix] use raw response with etree.parsefromstring - Unicode strings with encoding declaration are not supported
-rw-r--r-- | searx/engines/bing_news.py | 2 | ||||
-rw-r--r-- | tests/unit/engines/test_bing_news.py | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/searx/engines/bing_news.py b/searx/engines/bing_news.py index 0e2975814..b999b2a39 100644 --- a/searx/engines/bing_news.py +++ b/searx/engines/bing_news.py @@ -85,7 +85,7 @@ def request(query, params): def response(resp): results = [] - rss = etree.fromstring(resp.text) + rss = etree.fromstring(resp.content) ns = rss.nsmap diff --git a/tests/unit/engines/test_bing_news.py b/tests/unit/engines/test_bing_news.py index 28ec7a3ed..1f1aeca1d 100644 --- a/tests/unit/engines/test_bing_news.py +++ b/tests/unit/engines/test_bing_news.py @@ -36,10 +36,10 @@ class TestBingNewsEngine(SearxTestCase): self.assertRaises(AttributeError, bing_news.response, '') self.assertRaises(AttributeError, bing_news.response, '[]') - response = mock.Mock(text='<html></html>') + response = mock.Mock(content='<html></html>') self.assertEqual(bing_news.response(response), []) - response = mock.Mock(text='<html></html>') + response = mock.Mock(content='<html></html>') self.assertEqual(bing_news.response(response), []) html = """<?xml version="1.0" encoding="utf-8" ?> @@ -74,7 +74,7 @@ class TestBingNewsEngine(SearxTestCase): </item> </channel> </rss>""" # noqa - response = mock.Mock(text=html.encode('utf-8')) + response = mock.Mock(content=html.encode('utf-8')) results = bing_news.response(response) self.assertEqual(type(results), list) self.assertEqual(len(results), 2) @@ -113,7 +113,7 @@ class TestBingNewsEngine(SearxTestCase): </item> </channel> </rss>""" # noqa - response = mock.Mock(text=html.encode('utf-8')) + response = mock.Mock(content=html.encode('utf-8')) results = bing_news.response(response) self.assertEqual(type(results), list) self.assertEqual(len(results), 1) @@ -136,11 +136,11 @@ class TestBingNewsEngine(SearxTestCase): </channel> </rss>""" # noqa - response = mock.Mock(text=html.encode('utf-8')) + response = mock.Mock(content=html.encode('utf-8')) results = bing_news.response(response) self.assertEqual(type(results), list) self.assertEqual(len(results), 0) html = """<?xml version="1.0" encoding="utf-8" ?>gabarge""" - response = mock.Mock(text=html.encode('utf-8')) + response = mock.Mock(content=html.encode('utf-8')) self.assertRaises(lxml.etree.XMLSyntaxError, bing_news.response, response) |