1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
|
"""Tests for the 'spotify' plugin"""
import _common
import responses
from _common import unittest
from beets import config
from beets.library import Item
from beetsplug import spotify
from helper import TestHelper
import urlparse
class ArgumentsMock(object):
def __init__(self, mode, show_failures):
self.mode = mode
self.show_failures = show_failures
self.verbose = True
def _params(url):
"""Get the query parameters from a URL."""
return urlparse.parse_qs(urlparse.urlparse(url).query)
class SpotifyPluginTest(_common.TestCase, TestHelper):
def setUp(self):
config.clear()
self.setup_beets()
self.spotify = spotify.SpotifyPlugin()
opts = ArgumentsMock("list", False)
self.spotify.parse_opts(opts)
def tearDown(self):
self.teardown_beets()
def test_args(self):
opts = ArgumentsMock("fail", True)
self.assertEqual(False, self.spotify.parse_opts(opts))
opts = ArgumentsMock("list", False)
self.assertEqual(True, self.spotify.parse_opts(opts))
def test_empty_query(self):
self.assertEqual(None, self.spotify.query_spotify(self.lib, "1=2"))
@responses.activate
def test_missing_request(self):
response_body = str(
'{'
'"tracks" : {'
'"href" : "https://api.spotify.com/v1/search?query=duifhjslkef'
'+album%3Alkajsdflakjsd+artist%3A&offset=0&limit=20&type=track",'
'"items" : [ ],'
'"limit" : 20,'
'"next" : null,'
'"offset" : 0,'
'"previous" : null,'
'"total" : 0'
'}'
'}'
)
responses.add(responses.GET, 'https://api.spotify.com/v1/search',
body=response_body, status=200,
content_type='application/json')
item = Item(
mb_trackid='01234',
album='lkajsdflakjsd',
albumartist='ujydfsuihse',
title='duifhjslkef',
length=10
)
item.add(self.lib)
self.assertEquals([], self.spotify.query_spotify(self.lib, ""))
params = _params(responses.calls[0].request.url)
self.assertEquals(
params['q'],
['duifhjslkef album:lkajsdflakjsd artist:ujydfsuihse'],
)
self.assertEquals(params['type'], ['track'])
@responses.activate
def test_track_request(self):
response_body = str(
'{'
'"tracks" : {'
'"href" : "https://api.spotify.com/v1/search?query=Happy+album%3A'
'Despicable+Me+2+artist%3APharrell+Williams&offset=0&limit=20'
'&type=track",'
'"items" : [ {'
'"album" : {'
'"album_type" : "compilation",'
'"available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG",'
'"BO", "BR", "CA", "CH", "CL", "CO",'
'"CR", "CY", "CZ", "DE", "DK", "DO",'
'"EC", "EE", "ES", "FI", "FR", "GB",'
'"GR", "GT", "HK", "HN", "HU", "IE",'
'"IS", "IT", "LI", "LT", "LU", "LV",'
'"MC", "MT", "MX", "MY", "NI", "NL",'
'"NO", "NZ", "PA", "PE", "PH", "PL",'
'"PT", "PY", "RO", "SE", "SG", "SI",'
'"SK", "SV", "TR", "TW", "US", "UY" ],'
'"external_urls" : {'
'"spotify" : "https://open.spotify.com/album/'
'5l3zEmMrOhOzG8d8s83GOL"'
'},'
'"href" : "https://api.spotify.com/v1/albums/'
'5l3zEmMrOhOzG8d8s83GOL",'
'"id" : "5l3zEmMrOhOzG8d8s83GOL",'
'"images" : [ {'
'"height" : 640,'
'"url" : "https://i.scdn.co/image/cb7905340c132365bb'
'aee3f17498f062858382e8",'
'"width" : 640'
'}, {'
'"height" : 300,'
'"url" : "https://i.scdn.co/image/af369120f0b20099'
'd6784ab31c88256113f10ffb",'
'"width" : 300'
'}, {'
'"height" : 64,'
'"url" : "https://i.scdn.co/image/'
'9dad385ddf2e7db0bef20cec1fcbdb08689d9ae8",'
'"width" : 64'
'} ],'
'"name" : "Despicable Me 2 (Original Motion Picture Soundtrack)",'
'"type" : "album",'
'"uri" : "spotify:album:5l3zEmMrOhOzG8d8s83GOL"'
'},'
'"artists" : [ {'
'"external_urls" : {'
'"spotify" : "https://open.spotify.com/artist/'
'2RdwBSPQiwcmiDo9kixcl8"'
'},'
'"href" : "https://api.spotify.com/v1/artists/'
'2RdwBSPQiwcmiDo9kixcl8",'
'"id" : "2RdwBSPQiwcmiDo9kixcl8",'
'"name" : "Pharrell Williams",'
'"type" : "artist",'
'"uri" : "spotify:artist:2RdwBSPQiwcmiDo9kixcl8"'
'} ],'
'"available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO",'
'"BR", "CA", "CH", "CL", "CO", "CR", "CY",'
'"CZ", "DE", "DK", "DO", "EC", "EE", "ES",'
'"FI", "FR", "GB", "GR", "GT", "HK", "HN",'
'"HU", "IE", "IS", "IT", "LI", "LT", "LU",'
'"LV", "MC", "MT", "MX", "MY", "NI", "NL",'
'"NO", "NZ", "PA", "PE", "PH", "PL", "PT",'
'"PY", "RO", "SE", "SG", "SI", "SK", "SV",'
'"TR", "TW", "US", "UY" ],'
'"disc_number" : 1,'
'"duration_ms" : 233305,'
'"explicit" : false,'
'"external_ids" : {'
'"isrc" : "USQ4E1300686"'
'},'
'"external_urls" : {'
'"spotify" : "https://open.spotify.com/track/'
'6NPVjNh8Jhru9xOmyQigds"'
'},'
'"href" : "https://api.spotify.com/v1/tracks/'
'6NPVjNh8Jhru9xOmyQigds",'
'"id" : "6NPVjNh8Jhru9xOmyQigds",'
'"name" : "Happy",'
'"popularity" : 89,'
'"preview_url" : "https://p.scdn.co/mp3-preview/'
'6b00000be293e6b25f61c33e206a0c522b5cbc87",'
'"track_number" : 4,'
'"type" : "track",'
'"uri" : "spotify:track:6NPVjNh8Jhru9xOmyQigds"'
'} ],'
'"limit" : 20,'
'"next" : null,'
'"offset" : 0,'
'"previous" : null,'
'"total" : 1'
'}'
'}'
)
responses.add(responses.GET, 'https://api.spotify.com/v1/search',
body=response_body, status=200,
content_type='application/json')
item = Item(
mb_trackid='01234',
album='Despicable Me 2',
albumartist='Pharrell Williams',
title='Happy',
length=10
)
item.add(self.lib)
results = self.spotify.query_spotify(self.lib, "Happy")
self.assertEquals(1, len(results))
self.assertEquals("6NPVjNh8Jhru9xOmyQigds", results[0]['id'])
self.spotify.output_results(results)
params = _params(responses.calls[0].request.url)
self.assertEquals(
params['q'],
['Happy album:Despicable Me 2 artist:Pharrell Williams'],
)
self.assertEquals(params['type'], ['track'])
def suite():
return unittest.TestLoader().loadTestsFromName(__name__)
if __name__ == '__main__':
unittest.main(defaultTest='suite')
|