File: test_reshet.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 (26 lines) | stat: -rw-r--r-- 843 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import unittest

from streamlink.plugins.reshet import Reshet


class TestPluginReshet(unittest.TestCase):
    def test_can_handle_url(self):
        should_match = [
            "https://www.reshet.tv/live",
            "http://www.reshet.tv/live",
            "http://reshet.tv/live",
            "https://reshet.tv/live",
            "http://reshet.tv/item/foo/bar123",
            "https://reshet.tv/item/foo/bar123",
            "https://www.reshet.tv/item/foo/bar123",
            "http://www.reshet.tv/item/foo/bar123",
        ]
        for url in should_match:
            self.assertTrue(Reshet.can_handle_url(url))

    def test_can_handle_url_negative(self):
        should_not_match = [
            "https://www.youtube.com",
        ]
        for url in should_not_match:
            self.assertFalse(Reshet.can_handle_url(url))