summaryrefslogtreecommitdiff
path: root/searx/tests/engines/test_qwant_social.py
diff options
context:
space:
mode:
authorCqoicebordel <Cqoicebordel@users.noreply.github.com>2015-06-01 00:00:32 +0200
committerCqoicebordel <Cqoicebordel@users.noreply.github.com>2015-06-01 00:00:32 +0200
commit884eeb8541e0a4cf3d65c2a17e1c2f788cab7fb1 (patch)
treea3179b4a58b34bde03e2a140c5511567008af3a9 /searx/tests/engines/test_qwant_social.py
parentf965c978222cf48e8dd4b7dd6c9a28ccca9bc62f (diff)
downloadsearxng-884eeb8541e0a4cf3d65c2a17e1c2f788cab7fb1.tar.gz
searxng-884eeb8541e0a4cf3d65c2a17e1c2f788cab7fb1.zip
New Qwant engines
- Web - Images - News - Social media
Diffstat (limited to 'searx/tests/engines/test_qwant_social.py')
-rw-r--r--searx/tests/engines/test_qwant_social.py140
1 files changed, 140 insertions, 0 deletions
diff --git a/searx/tests/engines/test_qwant_social.py b/searx/tests/engines/test_qwant_social.py
new file mode 100644
index 000000000..6e87e9898
--- /dev/null
+++ b/searx/tests/engines/test_qwant_social.py
@@ -0,0 +1,140 @@
+from collections import defaultdict
+import mock
+from searx.engines import qwant_social
+from searx.testing import SearxTestCase
+
+
+class TestQwantSocialEngine(SearxTestCase):
+
+ def test_request(self):
+ query = 'test_query'
+ dicto = defaultdict(dict)
+ dicto['pageno'] = 0
+ dicto['language'] = 'fr_FR'
+ params = qwant_social.request(query, dicto)
+ self.assertIn('url', params)
+ self.assertIn(query, params['url'])
+ self.assertIn('qwant.com', params['url'])
+ self.assertIn('fr_fr', params['url'])
+
+ dicto['language'] = 'all'
+ params = qwant_social.request(query, dicto)
+ self.assertFalse('fr' in params['url'])
+
+ def test_response(self):
+ self.assertRaises(AttributeError, qwant_social.response, None)
+ self.assertRaises(AttributeError, qwant_social.response, [])
+ self.assertRaises(AttributeError, qwant_social.response, '')
+ self.assertRaises(AttributeError, qwant_social.response, '[]')
+
+ response = mock.Mock(text='{}')
+ self.assertEqual(qwant_social.response(response), [])
+
+ response = mock.Mock(text='{"data": {}}')
+ self.assertEqual(qwant_social.response(response), [])
+
+ json = """
+ {
+ "status": "success",
+ "data": {
+ "query": {
+ "locale": "en_us",
+ "query": "Test",
+ "offset": 10
+ },
+ "result": {
+ "items": [
+ {
+ "_id": "dc0b3f24c93684c7d7f1b0a4c2d9f1b0",
+ "__index": 32,
+ "title": "Title",
+ "img": "img",
+ "desc": "Description",
+ "date": 1432643480,
+ "type": "twitter",
+ "card": "XXX",
+ "post": "603176590856556545",
+ "url": "http://www.url.xyz",
+ "userUrl": "https://twitter.com/XXX"
+ }
+ ],
+ "filters": []
+ },
+ "cache": {
+ "key": "e66aa864c00147a0e3a16ff7a5efafde",
+ "created": 1433092754,
+ "expiration": 259200,
+ "status": "miss",
+ "age": 0
+ }
+ }
+ }
+ """
+ response = mock.Mock(text=json)
+ results = qwant_social.response(response)
+ self.assertEqual(type(results), list)
+ self.assertEqual(len(results), 1)
+ self.assertEqual(results[0]['title'], 'Title')
+ self.assertEqual(results[0]['url'], 'http://www.url.xyz')
+ self.assertEqual(results[0]['content'], 'Description')
+
+ json = """
+ {
+ "status": "success",
+ "data": {
+ "query": {
+ "locale": "en_us",
+ "query": "Test",
+ "offset": 10
+ },
+ "result": {
+ "filters": []
+ },
+ "cache": {
+ "key": "e66aa864c00147a0e3a16ff7a5efafde",
+ "created": 1433092754,
+ "expiration": 259200,
+ "status": "miss",
+ "age": 0
+ }
+ }
+ }
+ """
+ response = mock.Mock(text=json)
+ results = qwant_social.response(response)
+ self.assertEqual(type(results), list)
+ self.assertEqual(len(results), 0)
+
+ json = """
+ {
+ "status": "success",
+ "data": {
+ "query": {
+ "locale": "en_us",
+ "query": "Test",
+ "offset": 10
+ },
+ "cache": {
+ "key": "e66aa864c00147a0e3a16ff7a5efafde",
+ "created": 1433092754,
+ "expiration": 259200,
+ "status": "miss",
+ "age": 0
+ }
+ }
+ }
+ """
+ response = mock.Mock(text=json)
+ results = qwant_social.response(response)
+ self.assertEqual(type(results), list)
+ self.assertEqual(len(results), 0)
+
+ json = """
+ {
+ "status": "success"
+ }
+ """
+ response = mock.Mock(text=json)
+ results = qwant_social.response(response)
+ self.assertEqual(type(results), list)
+ self.assertEqual(len(results), 0)