about summary refs log tree commit diff
path: root/test/test_youtube_lists.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_youtube_lists.py
parent5a8d13199cd6bd73d7ace023a528c02e12fd2954 (diff)
downloadyoutube-dl-fb6c319904b2bd626af534d3d8fb0726b91081c6.tar.gz
youtube-dl-fb6c319904b2bd626af534d3d8fb0726b91081c6.tar.xz
youtube-dl-fb6c319904b2bd626af534d3d8fb0726b91081c6.zip
Add tests for YoutubeChannelIE
- tests for identifying channel urls
- test retrieval of paginated channel
- test retrieval of autogenerated channel
Diffstat (limited to 'test/test_youtube_lists.py')
-rw-r--r--test/test_youtube_lists.py12
1 files changed, 9 insertions, 3 deletions
diff --git a/test/test_youtube_lists.py b/test/test_youtube_lists.py
index 9e91484f8..c5b22a5c4 100644
--- a/test/test_youtube_lists.py
+++ b/test/test_youtube_lists.py
@@ -8,7 +8,7 @@ import json
 import os
 sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
 
-from youtube_dl.InfoExtractors import YoutubeUserIE, YoutubePlaylistIE, YoutubeIE
+from youtube_dl.InfoExtractors import YoutubeUserIE, YoutubePlaylistIE, YoutubeIE, YoutubeChannelIE
 from youtube_dl.utils import *
 from youtube_dl.FileDownloader import FileDownloader
 
@@ -81,8 +81,14 @@ class TestYoutubeLists(unittest.TestCase):
         self.assertEqual(YoutubeIE()._extract_id(entries[-1]['url']), 'rYefUsYuEp0')
 
     def test_youtube_channel(self):
-        # I give up, please find a channel that does paginate and test this like test_youtube_playlist_long
-        pass # TODO
+        dl = FakeDownloader()
+        ie = YoutubeChannelIE(dl)
+        #test paginated channel
+        result = ie.extract('https://www.youtube.com/channel/UCKfVa3S1e4PHvxWcwyMMg8w')[0]
+        self.assertTrue(len(result['entries']) > 90)
+        #test autogenerated channel
+        result = ie.extract('https://www.youtube.com/channel/HCtnHdj3df7iM/videos')[0]
+        self.assertTrue(len(result['entries']) > 20)
 
     def test_youtube_user(self):
         dl = FakeDownloader()