mirror of
https://github.com/searxng/searxng.git
synced 2024-11-15 22:51:04 +00:00
Google images' unit test
This commit is contained in:
parent
8ea749d6ec
commit
d5b8005ee1
3 changed files with 112 additions and 3 deletions
|
@ -18,7 +18,7 @@ paging = True
|
||||||
|
|
||||||
# search-url
|
# search-url
|
||||||
url = 'https://ajax.googleapis.com/'
|
url = 'https://ajax.googleapis.com/'
|
||||||
search_url = url + 'ajax/services/search/images?v=1.0&start={offset}&rsz=large&safe=off&filter=off&{query}' # noqa
|
search_url = url + 'ajax/services/search/images?v=1.0&start={offset}&rsz=large&safe=off&filter=off&{query}'
|
||||||
|
|
||||||
|
|
||||||
# do search-request
|
# do search-request
|
||||||
|
@ -45,14 +45,14 @@ def response(resp):
|
||||||
for result in search_res['responseData']['results']:
|
for result in search_res['responseData']['results']:
|
||||||
href = result['originalContextUrl']
|
href = result['originalContextUrl']
|
||||||
title = result['title']
|
title = result['title']
|
||||||
if not result['url']:
|
if 'url' not in result:
|
||||||
continue
|
continue
|
||||||
thumbnail_src = result['tbUrl']
|
thumbnail_src = result['tbUrl']
|
||||||
|
|
||||||
# append result
|
# append result
|
||||||
results.append({'url': href,
|
results.append({'url': href,
|
||||||
'title': title,
|
'title': title,
|
||||||
'content': '',
|
'content': result['content'],
|
||||||
'thumbnail_src': thumbnail_src,
|
'thumbnail_src': thumbnail_src,
|
||||||
'img_src': unquote(result['url']),
|
'img_src': unquote(result['url']),
|
||||||
'template': 'images.html'})
|
'template': 'images.html'})
|
||||||
|
|
108
searx/tests/engines/test_google_images.py
Normal file
108
searx/tests/engines/test_google_images.py
Normal file
|
@ -0,0 +1,108 @@
|
||||||
|
from collections import defaultdict
|
||||||
|
import mock
|
||||||
|
from searx.engines import google_images
|
||||||
|
from searx.testing import SearxTestCase
|
||||||
|
|
||||||
|
|
||||||
|
class TestGoogleImagesEngine(SearxTestCase):
|
||||||
|
|
||||||
|
def test_request(self):
|
||||||
|
query = 'test_query'
|
||||||
|
dicto = defaultdict(dict)
|
||||||
|
dicto['pageno'] = 1
|
||||||
|
params = google_images.request(query, dicto)
|
||||||
|
self.assertTrue('url' in params)
|
||||||
|
self.assertTrue(query in params['url'])
|
||||||
|
self.assertTrue('googleapis.com' in params['url'])
|
||||||
|
|
||||||
|
def test_response(self):
|
||||||
|
self.assertRaises(AttributeError, google_images.response, None)
|
||||||
|
self.assertRaises(AttributeError, google_images.response, [])
|
||||||
|
self.assertRaises(AttributeError, google_images.response, '')
|
||||||
|
self.assertRaises(AttributeError, google_images.response, '[]')
|
||||||
|
|
||||||
|
response = mock.Mock(text='{}')
|
||||||
|
self.assertEqual(google_images.response(response), [])
|
||||||
|
|
||||||
|
response = mock.Mock(text='{"data": []}')
|
||||||
|
self.assertEqual(google_images.response(response), [])
|
||||||
|
|
||||||
|
json = """
|
||||||
|
{
|
||||||
|
"responseData": {
|
||||||
|
"results": [
|
||||||
|
{
|
||||||
|
"GsearchResultClass": "GimageSearch",
|
||||||
|
"width": "400",
|
||||||
|
"height": "400",
|
||||||
|
"imageId": "ANd9GcQbYb9FJuAbG_hT4i8FeC0O0x-P--EHdzgRIF9ao97nHLl7C2mREn6qTQ",
|
||||||
|
"tbWidth": "124",
|
||||||
|
"tbHeight": "124",
|
||||||
|
"unescapedUrl": "http://unescaped.url.jpg",
|
||||||
|
"url": "http://image.url.jpg",
|
||||||
|
"visibleUrl": "insolitebuzz.fr",
|
||||||
|
"title": "This is the title",
|
||||||
|
"titleNoFormatting": "Petit test sympa qui rend fou tout le monde ! A faire",
|
||||||
|
"originalContextUrl": "http://this.is.the.url",
|
||||||
|
"content": "<b>test</b>",
|
||||||
|
"contentNoFormatting": "test",
|
||||||
|
"tbUrl": "http://thumbnail.url"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"responseDetails": null,
|
||||||
|
"responseStatus": 200
|
||||||
|
}
|
||||||
|
"""
|
||||||
|
response = mock.Mock(text=json)
|
||||||
|
results = google_images.response(response)
|
||||||
|
self.assertEqual(type(results), list)
|
||||||
|
self.assertEqual(len(results), 1)
|
||||||
|
self.assertEqual(results[0]['title'], 'This is the title')
|
||||||
|
self.assertEqual(results[0]['url'], 'http://this.is.the.url')
|
||||||
|
self.assertEqual(results[0]['thumbnail_src'], 'http://thumbnail.url')
|
||||||
|
self.assertEqual(results[0]['img_src'], 'http://image.url.jpg')
|
||||||
|
self.assertEqual(results[0]['content'], '<b>test</b>')
|
||||||
|
|
||||||
|
json = """
|
||||||
|
{
|
||||||
|
"responseData": {
|
||||||
|
"results": [
|
||||||
|
{
|
||||||
|
"GsearchResultClass": "GimageSearch",
|
||||||
|
"width": "400",
|
||||||
|
"height": "400",
|
||||||
|
"imageId": "ANd9GcQbYb9FJuAbG_hT4i8FeC0O0x-P--EHdzgRIF9ao97nHLl7C2mREn6qTQ",
|
||||||
|
"tbWidth": "124",
|
||||||
|
"tbHeight": "124",
|
||||||
|
"unescapedUrl": "http://unescaped.url.jpg",
|
||||||
|
"visibleUrl": "insolitebuzz.fr",
|
||||||
|
"title": "This is the title",
|
||||||
|
"titleNoFormatting": "Petit test sympa qui rend fou tout le monde ! A faire",
|
||||||
|
"originalContextUrl": "http://this.is.the.url",
|
||||||
|
"content": "<b>test</b>",
|
||||||
|
"contentNoFormatting": "test",
|
||||||
|
"tbUrl": "http://thumbnail.url"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"responseDetails": null,
|
||||||
|
"responseStatus": 200
|
||||||
|
}
|
||||||
|
"""
|
||||||
|
response = mock.Mock(text=json)
|
||||||
|
results = google_images.response(response)
|
||||||
|
self.assertEqual(type(results), list)
|
||||||
|
self.assertEqual(len(results), 0)
|
||||||
|
|
||||||
|
json = """
|
||||||
|
{
|
||||||
|
"responseData": {},
|
||||||
|
"responseDetails": null,
|
||||||
|
"responseStatus": 200
|
||||||
|
}
|
||||||
|
"""
|
||||||
|
response = mock.Mock(text=json)
|
||||||
|
results = google_images.response(response)
|
||||||
|
self.assertEqual(type(results), list)
|
||||||
|
self.assertEqual(len(results), 0)
|
|
@ -9,6 +9,7 @@ from searx.tests.engines.test_digg import * # noqa
|
||||||
from searx.tests.engines.test_dummy import * # noqa
|
from searx.tests.engines.test_dummy import * # noqa
|
||||||
from searx.tests.engines.test_flickr import * # noqa
|
from searx.tests.engines.test_flickr import * # noqa
|
||||||
from searx.tests.engines.test_github import * # noqa
|
from searx.tests.engines.test_github import * # noqa
|
||||||
|
from searx.tests.engines.test_google_images import * # noqa
|
||||||
from searx.tests.engines.test_kickass import * # noqa
|
from searx.tests.engines.test_kickass import * # noqa
|
||||||
from searx.tests.engines.test_mixcloud import * # noqa
|
from searx.tests.engines.test_mixcloud import * # noqa
|
||||||
from searx.tests.engines.test_searchcode_code import * # noqa
|
from searx.tests.engines.test_searchcode_code import * # noqa
|
||||||
|
|
Loading…
Reference in a new issue