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

from streamlink.plugins.periscope import Periscope


class TestPluginPeriscope(unittest.TestCase):
    def test_can_handle_url(self):
        should_match = [
            'https://www.periscope.tv/Pac12Networks/1BdGYRLyzMyJX',
            'https://www.periscope.tv/w/1YqKDdaoVXLKV',
            'https://www.pscp.tv/Pac12Networks/1gqGvpPlVLlxB'
        ]
        for url in should_match:
            self.assertTrue(Periscope.can_handle_url(url))

    def test_can_handle_url_negative(self):
        should_not_match = [
            'https://www.periscope.tv/',
            'https://www.pscp.tv/',
        ]
        for url in should_not_match:
            self.assertFalse(Periscope.can_handle_url(url))