aboutsummaryrefslogtreecommitdiff
path: root/test/test_all_urls.py
diff options
context:
space:
mode:
authorispedals <supronitbat@xynl.at>2013-04-19 18:06:28 -0400
committerispedals <supronitbat@xynl.at>2013-04-19 18:11:05 -0400
commitfb6c319904b2bd626af534d3d8fb0726b91081c6 (patch)
treea417c134dfa100a4631b583e1d182e602c7761cd /test/test_all_urls.py
parent5a8d13199cd6bd73d7ace023a528c02e12fd2954 (diff)
downloadyoutube-dl-fb6c319904b2bd626af534d3d8fb0726b91081c6.tar.xz
Add tests for YoutubeChannelIE
- tests for identifying channel urls - test retrieval of paginated channel - test retrieval of autogenerated channel
Diffstat (limited to 'test/test_all_urls.py')
-rw-r--r--test/test_all_urls.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/test_all_urls.py b/test/test_all_urls.py
index 69717b3fc..a40360122 100644
--- a/test/test_all_urls.py
+++ b/test/test_all_urls.py
@@ -7,7 +7,7 @@ import unittest
import os
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
-from youtube_dl.InfoExtractors import YoutubeIE, YoutubePlaylistIE
+from youtube_dl.InfoExtractors import YoutubeIE, YoutubePlaylistIE, YoutubeChannelIE
class TestAllURLsMatching(unittest.TestCase):
def test_youtube_playlist_matching(self):
@@ -24,6 +24,11 @@ class TestAllURLsMatching(unittest.TestCase):
self.assertTrue(YoutubeIE.suitable(u'PLtS2H6bU1M'))
self.assertFalse(YoutubeIE.suitable(u'https://www.youtube.com/watch?v=AV6J6_AeFEQ&playnext=1&list=PL4023E734DA416012')) #668
+ def test_youtube_channel_matching(self):
+ self.assertTrue(YoutubeChannelIE.suitable('https://www.youtube.com/channel/HCtnHdj3df7iM'))
+ self.assertTrue(YoutubeChannelIE.suitable('https://www.youtube.com/channel/HCtnHdj3df7iM?feature=gb_ch_rec'))
+ self.assertTrue(YoutubeChannelIE.suitable('https://www.youtube.com/channel/HCtnHdj3df7iM/videos'))
+
def test_youtube_extract(self):
self.assertEqual(YoutubeIE()._extract_id('http://www.youtube.com/watch?&v=BaW_jenozKc'), 'BaW_jenozKc')
self.assertEqual(YoutubeIE()._extract_id('https://www.youtube.com/watch?&v=BaW_jenozKc'), 'BaW_jenozKc')