| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231 | 
							- from collections import defaultdict
 
- import mock
 
- from datetime import datetime
 
- from searx.engines import genius
 
- from searx.testing import SearxTestCase
 
- class TestGeniusEngine(SearxTestCase):
 
-     def test_request(self):
 
-         query = 'test_query'
 
-         dicto = defaultdict(dict)
 
-         dicto['pageno'] = 1
 
-         params = genius.request(query, dicto)
 
-         self.assertTrue('url' in params)
 
-         self.assertTrue(query in params['url'])
 
-         self.assertTrue('genius.com' in params['url'])
 
-     def test_response(self):
 
-         json_empty = """
 
-         {
 
-         "meta": {
 
-             "status": 200
 
-         },
 
-         "response": {
 
-             "sections": [
 
-             {
 
-                 "type": "top_hit",
 
-                 "hits": []
 
-             },
 
-             {
 
-                 "type": "song",
 
-                 "hits": []
 
-             },
 
-             {
 
-                 "type": "lyric",
 
-                 "hits": []
 
-             },
 
-             {
 
-                 "type": "artist",
 
-                 "hits": []
 
-             },
 
-             {
 
-                 "type": "album",
 
-                 "hits": []
 
-             },
 
-             {
 
-                 "type": "tag",
 
-                 "hits": []
 
-             },
 
-             {
 
-                 "type": "video",
 
-                 "hits": []
 
-             },
 
-             {
 
-                 "type": "article",
 
-                 "hits": []
 
-             },
 
-             {
 
-                 "type": "user",
 
-                 "hits": []
 
-             }
 
-             ]
 
-         }
 
-         }
 
-         """
 
-         resp = mock.Mock(text=json_empty)
 
-         self.assertEqual(genius.response(resp), [])
 
-         json = """
 
-         {
 
-         "meta": {
 
-             "status": 200
 
-         },
 
-         "response": {
 
-             "sections": [
 
-             {
 
-                 "type": "lyric",
 
-                 "hits": [
 
-                 {
 
-                     "highlights": [
 
-                     {
 
-                         "property": "lyrics",
 
-                         "value": "Sample lyrics",
 
-                         "snippet": true,
 
-                         "ranges": []
 
-                     }
 
-                     ],
 
-                     "index": "lyric",
 
-                     "type": "song",
 
-                     "result": {
 
-                     "_type": "song",
 
-                     "annotation_count": 45,
 
-                     "api_path": "/songs/52916",
 
-                     "full_title": "J't'emmerde by MC Jean Gab'1",
 
-                     "header_image_thumbnail_url": "https://images.genius.com/xxx.300x300x1.jpg",
 
-                     "header_image_url": "https://images.genius.com/ef9f736a86df3c3b1772f3fb7fbdb21c.1000x1000x1.jpg",
 
-                     "id": 52916,
 
-                     "instrumental": false,
 
-                     "lyrics_owner_id": 15586,
 
-                     "lyrics_state": "complete",
 
-                     "lyrics_updated_at": 1498744545,
 
-                     "path": "/Mc-jean-gab1-jtemmerde-lyrics",
 
-                     "pyongs_count": 4,
 
-                     "song_art_image_thumbnail_url": "https://images.genius.com/xxx.300x300x1.jpg",
 
-                     "stats": {
 
-                         "hot": false,
 
-                         "unreviewed_annotations": 0,
 
-                         "pageviews": 62490
 
-                     },
 
-                     "title": "J't'emmerde",
 
-                     "title_with_featured": "J't'emmerde",
 
-                     "updated_by_human_at": 1498744546,
 
-                     "url": "https://genius.com/Mc-jean-gab1-jtemmerde-lyrics",
 
-                     "primary_artist": {
 
-                         "_type": "artist",
 
-                         "api_path": "/artists/12691",
 
-                         "header_image_url": "https://images.genius.com/c7847662a58f8c2b0f02a6e217d60907.960x657x1.jpg",
 
-                         "id": 12691,
 
-                         "image_url": "https://s3.amazonaws.com/rapgenius/Mc-jean-gab1.jpg",
 
-                         "index_character": "m",
 
-                         "is_meme_verified": false,
 
-                         "is_verified": false,
 
-                         "name": "MC Jean Gab'1",
 
-                         "slug": "Mc-jean-gab1",
 
-                         "url": "https://genius.com/artists/Mc-jean-gab1"
 
-                     }
 
-                     }
 
-                 }
 
-                 ]
 
-             },
 
-             {
 
-                 "type": "artist",
 
-                 "hits": [
 
-                 {
 
-                     "highlights": [],
 
-                     "index": "artist",
 
-                     "type": "artist",
 
-                     "result": {
 
-                     "_type": "artist",
 
-                     "api_path": "/artists/191580",
 
-                     "header_image_url": "https://assets.genius.com/images/default_avatar_300.png?1503090542",
 
-                     "id": 191580,
 
-                     "image_url": "https://assets.genius.com/images/default_avatar_300.png?1503090542",
 
-                     "index_character": "a",
 
-                     "is_meme_verified": false,
 
-                     "is_verified": false,
 
-                     "name": "ASDF Guy",
 
-                     "slug": "Asdf-guy",
 
-                     "url": "https://genius.com/artists/Asdf-guy"
 
-                     }
 
-                 }
 
-                 ]
 
-             },
 
-             {
 
-                 "type": "album",
 
-                 "hits": [
 
-                 {
 
-                     "highlights": [],
 
-                     "index": "album",
 
-                     "type": "album",
 
-                     "result": {
 
-                     "_type": "album",
 
-                     "api_path": "/albums/132332",
 
-                     "cover_art_thumbnail_url": "https://images.genius.com/xxx.300x300x1.jpg",
 
-                     "cover_art_url": "https://images.genius.com/xxx.600x600x1.jpg",
 
-                     "full_title": "ASD by A Skylit Drive",
 
-                     "id": 132332,
 
-                     "name": "ASD",
 
-                     "name_with_artist": "ASD (artist: A Skylit Drive)",
 
-                     "release_date_components": {
 
-                         "year": 2015,
 
-                         "month": null,
 
-                         "day": null
 
-                     },
 
-                     "url": "https://genius.com/albums/A-skylit-drive/Asd",
 
-                     "artist": {
 
-                         "_type": "artist",
 
-                         "api_path": "/artists/48712",
 
-                         "header_image_url": "https://images.genius.com/814c1551293172c56306d0e310c6aa89.620x400x1.jpg",
 
-                         "id": 48712,
 
-                         "image_url": "https://images.genius.com/814c1551293172c56306d0e310c6aa89.620x400x1.jpg",
 
-                         "index_character": "s",
 
-                         "is_meme_verified": false,
 
-                         "is_verified": false,
 
-                         "name": "A Skylit Drive",
 
-                         "slug": "A-skylit-drive",
 
-                         "url": "https://genius.com/artists/A-skylit-drive"
 
-                     }
 
-                     }
 
-                 }
 
-                 ]
 
-             }
 
-             ]
 
-         }
 
-         }
 
-         """
 
-         resp = mock.Mock(text=json)
 
-         results = genius.response(resp)
 
-         self.assertEqual(len(results), 3)
 
-         self.assertEqual(type(results), list)
 
-         # check lyric parsing
 
-         r = results[0]
 
-         self.assertEqual(r['url'], 'https://genius.com/Mc-jean-gab1-jtemmerde-lyrics')
 
-         self.assertEqual(r['title'], "J't'emmerde by MC Jean Gab'1")
 
-         self.assertEqual(r['content'], "Sample lyrics")
 
-         self.assertEqual(r['template'], 'videos.html')
 
-         self.assertEqual(r['thumbnail'], 'https://images.genius.com/xxx.300x300x1.jpg')
 
-         created = datetime.fromtimestamp(1498744545)
 
-         self.assertEqual(r['publishedDate'], created)
 
-         # check artist parsing
 
-         r = results[1]
 
-         self.assertEqual(r['url'], 'https://genius.com/artists/Asdf-guy')
 
-         self.assertEqual(r['title'], "ASDF Guy")
 
-         self.assertEqual(r['content'], None)
 
-         self.assertEqual(r['template'], 'videos.html')
 
-         self.assertEqual(r['thumbnail'], 'https://assets.genius.com/images/default_avatar_300.png?1503090542')
 
-         # check album parsing
 
-         r = results[2]
 
-         self.assertEqual(r['url'], 'https://genius.com/albums/A-skylit-drive/Asd')
 
-         self.assertEqual(r['title'], "ASD by A Skylit Drive")
 
-         self.assertEqual(r['content'], "Released: 2015")
 
-         self.assertEqual(r['template'], 'videos.html')
 
-         self.assertEqual(r['thumbnail'], 'https://images.genius.com/xxx.600x600x1.jpg')
 
 
  |