File: test_ustvnow.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 (16 lines) | stat: -rw-r--r-- 759 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import unittest

from streamlink.plugins.ustvnow import USTVNow


class TestPluginUSTVNow(unittest.TestCase):
    def test_can_handle_url(self):
        self.assertTrue(USTVNow.can_handle_url("http://watch.ustvnow.com"))
        self.assertTrue(USTVNow.can_handle_url("https://watch.ustvnow.com/"))
        self.assertTrue(USTVNow.can_handle_url("http://watch.ustvnow.com/watch"))
        self.assertTrue(USTVNow.can_handle_url("https://watch.ustvnow.com/watch"))
        self.assertTrue(USTVNow.can_handle_url("https://watch.ustvnow.com/watch/syfy"))
        self.assertTrue(USTVNow.can_handle_url("https://watch.ustvnow.com/guide/foxnews"))

    def test_can_not_handle_url(self):
        self.assertFalse(USTVNow.can_handle_url("http://www.tvplayer.com"))