Add auxiliary methods to InfoExtractor to set the '_type' key and use them for some...
[youtube-dl] / 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.InfoExtractors import YoutubeUserIE, YoutubePlaylistIE, YoutubeIE
12 from youtube_dl.utils import *
13 from youtube_dl.FileDownloader import FileDownloader
14
15 PARAMETERS_FILE = os.path.join(os.path.dirname(os.path.abspath(__file__)), "parameters.json")
16 with io.open(PARAMETERS_FILE, encoding='utf-8') as pf:
17     parameters = json.load(pf)
18
19 # General configuration (from __init__, not very elegant...)
20 jar = compat_cookiejar.CookieJar()
21 cookie_processor = compat_urllib_request.HTTPCookieProcessor(jar)
22 proxy_handler = compat_urllib_request.ProxyHandler()
23 opener = compat_urllib_request.build_opener(proxy_handler, cookie_processor, YoutubeDLHandler())
24 compat_urllib_request.install_opener(opener)
25
26 class FakeDownloader(FileDownloader):
27     def __init__(self):
28         self.result = []
29         self.params = parameters
30     def to_screen(self, s):
31         print(s)
32     def trouble(self, s):
33         raise Exception(s)
34     def extract_info(self, url):
35         self.result.append(url)
36         return url
37
38 class TestYoutubeLists(unittest.TestCase):
39     def assertIsPlaylist(self,info):
40         """Make sure the info has '_type' set to 'playlist'"""
41         self.assertEqual(info['_type'], 'playlist')
42
43     def test_youtube_playlist(self):
44         dl = FakeDownloader()
45         ie = YoutubePlaylistIE(dl)
46         result = ie.extract('https://www.youtube.com/playlist?list=PLwiyx1dc3P2JR9N8gQaQN_BCvlSlap7re')[0]
47         self.assertIsPlaylist(result)
48         ytie_results = [YoutubeIE()._extract_id(url['url']) for url in result['entries']]
49         self.assertEqual(ytie_results, [ 'bV9L5Ht9LgY', 'FXxLjLQi3Fg', 'tU3Bgo5qJZE'])
50
51     def test_issue_673(self):
52         dl = FakeDownloader()
53         ie = YoutubePlaylistIE(dl)
54         result = ie.extract('PLBB231211A4F62143')[0]
55         self.assertTrue(len(result['entries']) > 40)
56
57     def test_youtube_playlist_long(self):
58         dl = FakeDownloader()
59         ie = YoutubePlaylistIE(dl)
60         result = ie.extract('https://www.youtube.com/playlist?list=UUBABnxM4Ar9ten8Mdjj1j0Q')[0]
61         self.assertIsPlaylist(result)
62         self.assertTrue(len(result['entries']) >= 799)
63
64     def test_youtube_playlist_with_deleted(self):
65         #651
66         dl = FakeDownloader()
67         ie = YoutubePlaylistIE(dl)
68         result = ie.extract('https://www.youtube.com/playlist?list=PLwP_SiAcdui0KVebT0mU9Apz359a4ubsC')[0]
69         ytie_results = [YoutubeIE()._extract_id(url['url']) for url in result['entries']]
70         self.assertFalse('pElCt5oNDuI' in ytie_results)
71         self.assertFalse('KdPEApIVdWM' in ytie_results)
72
73     def test_youtube_course(self):
74         dl = FakeDownloader()
75         ie = YoutubePlaylistIE(dl)
76         # TODO find a > 100 (paginating?) videos course
77         result = ie.extract('https://www.youtube.com/course?list=ECUl4u3cNGP61MdtwGTqZA0MreSaDybji8')[0]
78         entries = result['entries']
79         self.assertEqual(YoutubeIE()._extract_id(entries[0]['url']), 'j9WZyLZCBzs')
80         self.assertEqual(len(entries), 25)
81         self.assertEqual(YoutubeIE()._extract_id(entries[-1]['url']), 'rYefUsYuEp0')
82
83     def test_youtube_channel(self):
84         # I give up, please find a channel that does paginate and test this like test_youtube_playlist_long
85         pass # TODO
86
87     def test_youtube_user(self):
88         dl = FakeDownloader()
89         ie = YoutubeUserIE(dl)
90         result = ie.extract('https://www.youtube.com/user/TheLinuxFoundation')[0]
91         self.assertTrue(len(result['entries']) >= 320)
92
93 if __name__ == '__main__':
94     unittest.main()