]> Raphaƫl G. Git Repositories - youtubedl/blob - test/test_youtube_lists.py
Merge tag 'upstream/2013.08.29'
[youtubedl] / test / test_youtube_lists.py
1 #!/usr/bin/env python
2
3 import sys
4 import unittest
5 import json
6
7 # Allow direct execution
8 import os
9 sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
10
11 from youtube_dl.extractor import YoutubeUserIE, YoutubePlaylistIE, YoutubeIE, YoutubeChannelIE, YoutubeShowIE
12 from youtube_dl.utils import *
13
14 from helper import FakeYDL
15
16 class TestYoutubeLists(unittest.TestCase):
17 def assertIsPlaylist(self,info):
18 """Make sure the info has '_type' set to 'playlist'"""
19 self.assertEqual(info['_type'], 'playlist')
20
21 def test_youtube_playlist(self):
22 dl = FakeYDL()
23 ie = YoutubePlaylistIE(dl)
24 result = ie.extract('https://www.youtube.com/playlist?list=PLwiyx1dc3P2JR9N8gQaQN_BCvlSlap7re')[0]
25 self.assertIsPlaylist(result)
26 self.assertEqual(result['title'], 'ytdl test PL')
27 ytie_results = [YoutubeIE()._extract_id(url['url']) for url in result['entries']]
28 self.assertEqual(ytie_results, [ 'bV9L5Ht9LgY', 'FXxLjLQi3Fg', 'tU3Bgo5qJZE'])
29
30 def test_issue_673(self):
31 dl = FakeYDL()
32 ie = YoutubePlaylistIE(dl)
33 result = ie.extract('PLBB231211A4F62143')[0]
34 self.assertTrue(len(result['entries']) > 25)
35
36 def test_youtube_playlist_long(self):
37 dl = FakeYDL()
38 ie = YoutubePlaylistIE(dl)
39 result = ie.extract('https://www.youtube.com/playlist?list=UUBABnxM4Ar9ten8Mdjj1j0Q')[0]
40 self.assertIsPlaylist(result)
41 self.assertTrue(len(result['entries']) >= 799)
42
43 def test_youtube_playlist_with_deleted(self):
44 #651
45 dl = FakeYDL()
46 ie = YoutubePlaylistIE(dl)
47 result = ie.extract('https://www.youtube.com/playlist?list=PLwP_SiAcdui0KVebT0mU9Apz359a4ubsC')[0]
48 ytie_results = [YoutubeIE()._extract_id(url['url']) for url in result['entries']]
49 self.assertFalse('pElCt5oNDuI' in ytie_results)
50 self.assertFalse('KdPEApIVdWM' in ytie_results)
51
52 def test_youtube_playlist_empty(self):
53 dl = FakeYDL()
54 ie = YoutubePlaylistIE(dl)
55 result = ie.extract('https://www.youtube.com/playlist?list=PLtPgu7CB4gbZDA7i_euNxn75ISqxwZPYx')[0]
56 self.assertIsPlaylist(result)
57 self.assertEqual(len(result['entries']), 0)
58
59 def test_youtube_course(self):
60 dl = FakeYDL()
61 ie = YoutubePlaylistIE(dl)
62 # TODO find a > 100 (paginating?) videos course
63 result = ie.extract('https://www.youtube.com/course?list=ECUl4u3cNGP61MdtwGTqZA0MreSaDybji8')[0]
64 entries = result['entries']
65 self.assertEqual(YoutubeIE()._extract_id(entries[0]['url']), 'j9WZyLZCBzs')
66 self.assertEqual(len(entries), 25)
67 self.assertEqual(YoutubeIE()._extract_id(entries[-1]['url']), 'rYefUsYuEp0')
68
69 def test_youtube_channel(self):
70 dl = FakeYDL()
71 ie = YoutubeChannelIE(dl)
72 #test paginated channel
73 result = ie.extract('https://www.youtube.com/channel/UCKfVa3S1e4PHvxWcwyMMg8w')[0]
74 self.assertTrue(len(result['entries']) > 90)
75 #test autogenerated channel
76 result = ie.extract('https://www.youtube.com/channel/HCtnHdj3df7iM/videos')[0]
77 self.assertTrue(len(result['entries']) >= 18)
78
79 def test_youtube_user(self):
80 dl = FakeYDL()
81 ie = YoutubeUserIE(dl)
82 result = ie.extract('https://www.youtube.com/user/TheLinuxFoundation')[0]
83 self.assertTrue(len(result['entries']) >= 320)
84
85 def test_youtube_safe_search(self):
86 dl = FakeYDL()
87 ie = YoutubePlaylistIE(dl)
88 result = ie.extract('PLtPgu7CB4gbY9oDN3drwC3cMbJggS7dKl')[0]
89 self.assertEqual(len(result['entries']), 2)
90
91 def test_youtube_show(self):
92 dl = FakeYDL()
93 ie = YoutubeShowIE(dl)
94 result = ie.extract('http://www.youtube.com/show/airdisasters')
95 self.assertTrue(len(result) >= 4)
96
97 if __name__ == '__main__':
98 unittest.main()