2017-12-10 17:41:08 +00:00
|
|
|
# This file is part of Supysonic.
|
|
|
|
# Supysonic is a Python implementation of the Subsonic server API.
|
|
|
|
#
|
2018-03-04 20:49:56 +00:00
|
|
|
# Copyright (C) 2017-2018 Alban 'spl0k' Féron
|
2017-12-10 17:41:08 +00:00
|
|
|
#
|
|
|
|
# Distributed under terms of the GNU AGPLv3 license.
|
|
|
|
|
|
|
|
import logging
|
|
|
|
import unittest
|
|
|
|
|
|
|
|
from supysonic.lastfm import LastFm
|
|
|
|
|
2019-06-29 15:25:44 +00:00
|
|
|
|
2017-12-10 17:41:08 +00:00
|
|
|
class LastFmTestCase(unittest.TestCase):
|
|
|
|
""" Designed only to have coverage on the most important method """
|
|
|
|
|
|
|
|
def test_request(self):
|
2019-06-29 15:25:44 +00:00
|
|
|
logging.getLogger("supysonic.lastfm").addHandler(logging.NullHandler())
|
|
|
|
lastfm = LastFm({"api_key": "key", "secret": "secret"}, None)
|
2017-12-10 17:41:08 +00:00
|
|
|
|
2020-11-22 15:12:14 +00:00
|
|
|
rv = lastfm._LastFm__api_request(False, method="dummy", accents="àéèùö")
|
2017-12-10 17:41:08 +00:00
|
|
|
self.assertIsInstance(rv, dict)
|
|
|
|
|
|
|
|
|
2019-06-29 15:25:44 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
unittest.main()
|