| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 | 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)
 |