mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-24 12:15:40 +01:00
5f087f0efa
The tests are still failing, but not from ImportError anymore.
51 lines
1.4 KiB
Python
51 lines
1.4 KiB
Python
#!/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
|
|
|
|
|
|
class VideoRetriever(object):
|
|
def __init__(self, proto, bitrate):
|
|
self.proto = proto
|
|
self.bitrate = bitrate
|
|
self.name = proto
|
|
|
|
def __repr__(self):
|
|
return '%s(%d)' % (self.proto.upper(), self.bitrate)
|
|
|
|
|
|
class PrioStreamsTest(unittest.TestCase):
|
|
def _gen_proto_case(self, ordered, unordered, expected=None):
|
|
streams = [VideoRetriever(x, 100) for x in unordered]
|
|
|
|
kwargs = {}
|
|
if expected is None:
|
|
expected = [str(VideoRetriever(x, 100)) for x in ordered]
|
|
|
|
return self.assertEqual(
|
|
[str(x) for x in protocol_prio(streams, ordered, **kwargs)],
|
|
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=[],
|
|
)
|