2017-10-28 19:18:34 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# vim:fenc=utf-8
|
|
|
|
#
|
|
|
|
# This file is part of Supysonic.
|
|
|
|
# Supysonic is a Python implementation of the Subsonic server API.
|
|
|
|
#
|
|
|
|
# Copyright (C) 2017 Alban 'spl0k' Féron
|
|
|
|
#
|
|
|
|
# Distributed under terms of the GNU AGPLv3 license.
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
|
|
|
|
from .test_response_helper import suite as rh_suite
|
2017-10-29 15:08:00 +00:00
|
|
|
from .test_api_setup import ApiSetupTestCase
|
2017-11-01 19:55:35 +00:00
|
|
|
from .test_system import SystemTestCase
|
|
|
|
from .test_user import UserTestCase
|
2017-11-03 22:15:48 +00:00
|
|
|
from .test_chat import ChatTestCase
|
|
|
|
from .test_search import SearchTestCase
|
2017-11-08 22:21:52 +00:00
|
|
|
from .test_playlist import PlaylistTestCase
|
2017-11-10 23:13:18 +00:00
|
|
|
from .test_browse import BrowseTestCase
|
|
|
|
from .test_album_songs import AlbumSongsTestCase
|
2017-11-14 22:19:54 +00:00
|
|
|
from .test_annotation import AnnotationTestCase
|
2017-11-17 18:56:14 +00:00
|
|
|
from .test_media import MediaTestCase
|
2017-12-07 22:33:32 +00:00
|
|
|
from .test_transcoding import TranscodingTestCase
|
2017-10-28 19:18:34 +00:00
|
|
|
|
|
|
|
def suite():
|
|
|
|
suite = unittest.TestSuite()
|
|
|
|
|
|
|
|
suite.addTest(rh_suite())
|
2017-10-29 15:08:00 +00:00
|
|
|
suite.addTest(unittest.makeSuite(ApiSetupTestCase))
|
2017-11-01 19:55:35 +00:00
|
|
|
suite.addTest(unittest.makeSuite(SystemTestCase))
|
|
|
|
suite.addTest(unittest.makeSuite(UserTestCase))
|
2017-11-03 22:15:48 +00:00
|
|
|
suite.addTest(unittest.makeSuite(ChatTestCase))
|
|
|
|
suite.addTest(unittest.makeSuite(SearchTestCase))
|
2017-11-08 22:21:52 +00:00
|
|
|
suite.addTest(unittest.makeSuite(PlaylistTestCase))
|
2017-11-10 23:13:18 +00:00
|
|
|
suite.addTest(unittest.makeSuite(BrowseTestCase))
|
|
|
|
suite.addTest(unittest.makeSuite(AlbumSongsTestCase))
|
2017-11-14 22:19:54 +00:00
|
|
|
suite.addTest(unittest.makeSuite(AnnotationTestCase))
|
2017-11-17 18:56:14 +00:00
|
|
|
suite.addTest(unittest.makeSuite(MediaTestCase))
|
2017-12-07 22:33:32 +00:00
|
|
|
suite.addTest(unittest.makeSuite(TranscodingTestCase))
|
2017-10-28 19:18:34 +00:00
|
|
|
|
|
|
|
return suite
|
|
|
|
|