logo

searx

My custom branche(s) on searx, a meta-search engine
commit: 911ed7987cb16ed26edbf628e3657a2f2d998a36
parent: 786fe49fab670c3f8f8e14c6da55809ea675b9b2
Author: Adam Tauber <asciimoo@gmail.com>
Date:   Tue,  1 Dec 2015 15:52:20 +0100

Merge pull request #395 from gugod/master

btdigg engine: fix text mojibake.

Diffstat:

Msearx/engines/btdigg.py2+-
Msearx/tests/engines/test_btdigg.py8++++----
2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/searx/engines/btdigg.py b/searx/engines/btdigg.py @@ -38,7 +38,7 @@ def request(query, params): def response(resp): results = [] - dom = html.fromstring(resp.text) + dom = html.fromstring(resp.content) search_res = dom.xpath('//div[@id="search_res"]/table/tr') diff --git a/searx/tests/engines/test_btdigg.py b/searx/tests/engines/test_btdigg.py @@ -22,7 +22,7 @@ class TestBtdiggEngine(SearxTestCase): self.assertRaises(AttributeError, btdigg.response, '') self.assertRaises(AttributeError, btdigg.response, '[]') - response = mock.Mock(text='<html></html>') + response = mock.Mock(content='<html></html>') self.assertEqual(btdigg.response(response), []) html = """ @@ -82,7 +82,7 @@ class TestBtdiggEngine(SearxTestCase): </table> </div> """ - response = mock.Mock(text=html) + response = mock.Mock(content=html) results = btdigg.response(response) self.assertEqual(type(results), list) self.assertEqual(len(results), 1) @@ -101,7 +101,7 @@ class TestBtdiggEngine(SearxTestCase): </table> </div> """ - response = mock.Mock(text=html) + response = mock.Mock(content=html) results = btdigg.response(response) self.assertEqual(type(results), list) self.assertEqual(len(results), 0) @@ -367,7 +367,7 @@ class TestBtdiggEngine(SearxTestCase): </table> </div> """ - response = mock.Mock(text=html) + response = mock.Mock(content=html) results = btdigg.response(response) self.assertEqual(type(results), list) self.assertEqual(len(results), 5)