mirror of
https://github.com/spl0k/supysonic.git
synced 2024-11-09 19:52:16 +00:00
Forgot feeding data for the lyrics test
This commit is contained in:
parent
d05f69dd26
commit
14d0c2f57f
@ -9,12 +9,46 @@
|
||||
# Distributed under terms of the GNU AGPLv3 license.
|
||||
|
||||
import flask.json
|
||||
import os.path
|
||||
import requests
|
||||
|
||||
from pony.orm import db_session
|
||||
|
||||
from supysonic.db import Folder, Artist, Album, Track
|
||||
|
||||
from .apitestbase import ApiTestBase
|
||||
|
||||
|
||||
class LyricsTestCase(ApiTestBase):
|
||||
def setUp(self):
|
||||
super(LyricsTestCase, self).setUp()
|
||||
|
||||
with db_session:
|
||||
folder = Folder(
|
||||
name="Root",
|
||||
path=os.path.abspath("tests/assets"),
|
||||
root=True,
|
||||
cover_art="cover.jpg",
|
||||
)
|
||||
self.folderid = folder.id
|
||||
|
||||
artist = Artist(name="Artist")
|
||||
album = Album(artist=artist, name="Album")
|
||||
|
||||
track = Track(
|
||||
title="23bytes",
|
||||
number=1,
|
||||
disc=1,
|
||||
artist=artist,
|
||||
album=album,
|
||||
path=os.path.abspath("tests/assets/23bytes"),
|
||||
root_folder=folder,
|
||||
folder=folder,
|
||||
duration=2,
|
||||
bitrate=320,
|
||||
last_modification=0,
|
||||
)
|
||||
|
||||
def test_get_lyrics(self):
|
||||
self._make_request("getLyrics", error=10)
|
||||
self._make_request("getLyrics", {"artist": "artist"}, error=10)
|
||||
|
Loading…
Reference in New Issue
Block a user