1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-24 12:15:40 +01:00
svtplay-dl/lib/svtplay_dl/tests/protocol_prio.py

51 lines
1.4 KiB
Python
Raw Normal View History

2016-03-13 16:52:54 +01:00
#!/usr/bin/python
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil; coding: utf-8 -*-
# ex:ts=4:sw=4:sts=4:et:fenc=utf-8
from __future__ import absolute_import
import unittest
from svtplay_dl.utils.stream import protocol_prio
2016-03-13 16:52:54 +01:00
2018-01-30 20:11:37 +01:00
class VideoRetriever(object):
2016-03-13 16:52:54 +01:00
def __init__(self, proto, bitrate):
self.proto = proto
self.bitrate = bitrate
self.name = proto
2018-01-30 20:11:37 +01:00
2016-03-13 16:52:54 +01:00
def __repr__(self):
return '%s(%d)' % (self.proto.upper(), self.bitrate)
2018-01-30 20:11:37 +01:00
2016-03-13 16:52:54 +01:00
class PrioStreamsTest(unittest.TestCase):
def _gen_proto_case(self, ordered, unordered, expected=None):
streams = [VideoRetriever(x, 100) for x in unordered]
2016-03-13 16:52:54 +01:00
kwargs = {}
if expected is None:
expected = [str(VideoRetriever(x, 100)) for x in ordered]
2016-03-13 16:52:54 +01:00
return self.assertEqual(
2016-03-30 23:09:13 +02:00
[str(x) for x in protocol_prio(streams, ordered, **kwargs)],
2016-03-13 16:52:54 +01:00
expected
)
def test_custom_order(self):
return self._gen_proto_case(
['http', 'rtmp', 'hds', 'hls'],
['rtmp', 'hds', 'hls', 'http'],
)
def test_custom_order_1(self):
return self._gen_proto_case(
['http'],
['rtmp', 'hds', 'hls', 'http'],
)
def test_proto_unavail(self):
return self._gen_proto_case(
['http', 'rtmp'],
['hds', 'hls', 'https'],
expected=[],
)