Fix test
This commit is contained in:
parent
1006c6dae3
commit
755e342071
@ -23,8 +23,9 @@ class TestApi(unittest.TestCase):
|
|||||||
|
|
||||||
def test_programs(self):
|
def test_programs(self):
|
||||||
for channel in ['vier', 'vijf', 'zes']:
|
for channel in ['vier', 'vijf', 'zes']:
|
||||||
channels = self._api.get_programs(channel)
|
programs = self._api.get_programs(channel)
|
||||||
self.assertIsInstance(channels, list)
|
self.assertIsInstance(programs, list)
|
||||||
|
self.assertIsInstance(programs[0], Program)
|
||||||
|
|
||||||
def test_episodes(self):
|
def test_episodes(self):
|
||||||
for channel, program in [('vier', 'auwch'), ('vijf', 'zo-man-zo-vrouw')]:
|
for channel, program in [('vier', 'auwch'), ('vijf', 'zo-man-zo-vrouw')]:
|
||||||
@ -34,14 +35,15 @@ class TestApi(unittest.TestCase):
|
|||||||
self.assertIsInstance(program.episodes, list)
|
self.assertIsInstance(program.episodes, list)
|
||||||
self.assertIsInstance(program.episodes[0], Episode)
|
self.assertIsInstance(program.episodes[0], Episode)
|
||||||
|
|
||||||
program_by_uuid = self._api.get_program_by_uuid(program.uuid)
|
|
||||||
self.assertIsInstance(program_by_uuid, Program)
|
|
||||||
|
|
||||||
@unittest.skipUnless(kodiutils.get_setting('username') and kodiutils.get_setting('password'), 'Skipping since we have no credentials.')
|
@unittest.skipUnless(kodiutils.get_setting('username') and kodiutils.get_setting('password'), 'Skipping since we have no credentials.')
|
||||||
def test_get_stream(self):
|
def test_get_stream(self):
|
||||||
program = self._api.get_program('vier', 'auwch')
|
program = self._api.get_program('vier', 'auwch')
|
||||||
episode = program.episodes[0]
|
self.assertIsInstance(program, Program)
|
||||||
|
|
||||||
|
program_by_uuid = self._api.get_program_by_uuid(program.uuid)
|
||||||
|
self.assertIsInstance(program_by_uuid, Program)
|
||||||
|
|
||||||
|
episode = program.episodes[0]
|
||||||
video = self._api.get_stream_by_uuid(episode.uuid)
|
video = self._api.get_stream_by_uuid(episode.uuid)
|
||||||
self.assertTrue(video)
|
self.assertTrue(video)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user