File: test_rtbf.py

package info (click to toggle)
streamlink 1.0.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,588 kB
  • sloc: python: 31,121; makefile: 141; sh: 93
file content (18 lines) | stat: -rw-r--r-- 875 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import unittest

from streamlink.plugins.rtbf import RTBF


class TestPluginRTBF(unittest.TestCase):
    def test_can_handle_url(self):
        # should match
        self.assertTrue(RTBF.can_handle_url("https://www.rtbf.be/auvio/direct_doc-shot?lid=122046#/"))
        self.assertTrue(RTBF.can_handle_url("https://www.rtbf.be/auvio/emissions/detail_dans-la-toile?id=11493"))
        self.assertTrue(RTBF.can_handle_url("http://www.rtbfradioplayer.be/radio/liveradio/purefm"))

        # shouldn't match
        self.assertFalse(RTBF.can_handle_url("http://www.rtbf.be/"))
        self.assertFalse(RTBF.can_handle_url("http://www.rtbf.be/auvio"))
        self.assertFalse(RTBF.can_handle_url("http://www.rtbfradioplayer.be/"))
        self.assertFalse(RTBF.can_handle_url("http://www.tvcatchup.com/"))
        self.assertFalse(RTBF.can_handle_url("http://www.youtube.com/"))