1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
import unittest
from streamlink.plugins.trt import TRT
class TestPluginTRT(unittest.TestCase):
def test_can_handle_url(self):
should_match = [
'http://www.trt.net.tr/anasayfa/canli.aspx?y=tv&k=trt1',
'https://www.trt.net.tr/anasayfa/canli.aspx?y=tv&k=trtworld',
]
for url in should_match:
self.assertTrue(TRT.can_handle_url(url))
def test_can_handle_url_negative(self):
should_not_match = [
'https://example.com/index.html',
'https://trt.net.tr/anasayfa/canli.aspx?y=tv&k=trtworld',
]
for url in should_not_match:
self.assertFalse(TRT.can_handle_url(url))
|