1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-09-19 19:01:03 +00:00

JSON: '_value_' -> 'value'

Closes #136
This commit is contained in:
spl0k 2019-01-19 15:04:56 +01:00
parent 69c43b749b
commit 3b6186ebfc
5 changed files with 13 additions and 6 deletions

View File

@ -96,7 +96,7 @@ def show_directory():
@api.route('/getGenres.view', methods = [ 'GET', 'POST' ])
def list_genres():
return request.formatter('genres', dict(
genre = [ dict(_value_ = genre) for genre in select(t.genre for t in Track if t.genre) ]
genre = [ dict(value = genre) for genre in select(t.genre for t in Track if t.genre) ]
))
@api.route('/getArtists.view', methods = [ 'GET', 'POST' ])

View File

@ -99,7 +99,7 @@ class XMLFormatter(BaseFormatter):
raise TypeError('Dictionary keys must be strings')
for name, value in dictionary.items():
if name == '_value_':
if name == 'value':
elem.text = self.__value_tostring(value)
elif isinstance(value, dict):
subelem = ElementTree.SubElement(elem, name)

View File

@ -224,7 +224,7 @@ def lyrics():
return request.formatter('lyrics', dict(
artist = track.album.artist.name,
title = track.title,
_value_ = lyrics
value = lyrics
))
try:
@ -236,7 +236,7 @@ def lyrics():
return request.formatter('lyrics', dict(
artist = root.find('cl:LyricArtist', namespaces = ns).text,
title = root.find('cl:LyricSong', namespaces = ns).text,
_value_ = root.find('cl:Lyric', namespaces = ns).text
value = root.find('cl:Lyric', namespaces = ns).text
))
except requests.exceptions.RequestException as e: # pragma: nocover
logger.warning('Error while requesting the ChartLyrics API: ' + str(e))

View File

@ -8,6 +8,7 @@
#
# Distributed under terms of the GNU AGPLv3 license.
import flask.json
import os.path
import requests
import uuid
@ -171,6 +172,12 @@ class MediaTestCase(ApiTestBase):
# ChartLyrics
rv, child = self._make_request('getLyrics', { 'artist': 'The Clash', 'title': 'London Calling' }, tag = 'lyrics')
self.assertIn('live by the river', child.text)
# ChartLyrics, JSON format
args = { 'u': 'alice', 'p': 'Alic3', 'c': 'tests', 'f': 'json', 'artist': 'The Clash', 'title': 'London Calling' }
rv = self.client.get('/rest/getLyrics.view', query_string = args)
json = flask.json.loads(rv.data)
self.assertIn('value', json['subsonic-response']['lyrics'])
self.assertIn('live by the river', json['subsonic-response']['lyrics']['value'])
# Local file
rv, child = self._make_request('getLyrics', { 'artist': 'artist', 'title': '23bytes' }, tag = 'lyrics')

View File

@ -192,7 +192,7 @@ class ResponseHelperXMLTestCase(TestBase, UnwrapperMixin.create_from(XMLFormatte
def test_nesting(self):
resp = self.process_and_extract({
'dict': {
'value': 'hey look! a string',
'somevalue': 'hey look! a string',
'list': [ 1, 2, 3 ],
'emptyList': [],
'subdict': { 'a': 'A' }
@ -210,7 +210,7 @@ class ResponseHelperXMLTestCase(TestBase, UnwrapperMixin.create_from(XMLFormatte
lists = resp.findall('./list')
self.assertIsNotNone(d)
self.assertAttributesMatchDict(d, { 'value': 'hey look! a string' })
self.assertAttributesMatchDict(d, { 'somevalue': 'hey look! a string' })
self.assertEqual(len(d.findall('./list')), 3)
self.assertEqual(len(d.findall('./emptyList')), 0)
self.assertIsNotNone(d.find('./subdict'))