Add support for single-test tox runs
[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.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_youtube_playlist_noplaylist(self):
31         dl = FakeYDL()
32         dl.params['noplaylist'] = True
33         ie = YoutubePlaylistIE(dl)
34         result = ie.extract('https://www.youtube.com/watch?v=FXxLjLQi3Fg&list=PLwiyx1dc3P2JR9N8gQaQN_BCvlSlap7re')
35         self.assertEqual(result['_type'], 'url')
36         self.assertEqual(YoutubeIE()._extract_id(result['url']), 'FXxLjLQi3Fg')
37
38     def test_issue_673(self):
39         dl = FakeYDL()
40         ie = YoutubePlaylistIE(dl)
41         result = ie.extract('PLBB231211A4F62143')[0]
42         self.assertTrue(len(result['entries']) > 25)
43
44     def test_youtube_playlist_long(self):
45         dl = FakeYDL()
46         ie = YoutubePlaylistIE(dl)
47         result = ie.extract('https://www.youtube.com/playlist?list=UUBABnxM4Ar9ten8Mdjj1j0Q')[0]
48         self.assertIsPlaylist(result)
49         self.assertTrue(len(result['entries']) >= 799)
50
51     def test_youtube_playlist_with_deleted(self):
52         #651
53         dl = FakeYDL()
54         ie = YoutubePlaylistIE(dl)
55         result = ie.extract('https://www.youtube.com/playlist?list=PLwP_SiAcdui0KVebT0mU9Apz359a4ubsC')[0]
56         ytie_results = [YoutubeIE()._extract_id(url['url']) for url in result['entries']]
57         self.assertFalse('pElCt5oNDuI' in ytie_results)
58         self.assertFalse('KdPEApIVdWM' in ytie_results)
59         
60     def test_youtube_playlist_empty(self):
61         dl = FakeYDL()
62         ie = YoutubePlaylistIE(dl)
63         result = ie.extract('https://www.youtube.com/playlist?list=PLtPgu7CB4gbZDA7i_euNxn75ISqxwZPYx')[0]
64         self.assertIsPlaylist(result)
65         self.assertEqual(len(result['entries']), 0)
66
67     def test_youtube_course(self):
68         dl = FakeYDL()
69         ie = YoutubePlaylistIE(dl)
70         # TODO find a > 100 (paginating?) videos course
71         result = ie.extract('https://www.youtube.com/course?list=ECUl4u3cNGP61MdtwGTqZA0MreSaDybji8')[0]
72         entries = result['entries']
73         self.assertEqual(YoutubeIE()._extract_id(entries[0]['url']), 'j9WZyLZCBzs')
74         self.assertEqual(len(entries), 25)
75         self.assertEqual(YoutubeIE()._extract_id(entries[-1]['url']), 'rYefUsYuEp0')
76
77     def test_youtube_channel(self):
78         dl = FakeYDL()
79         ie = YoutubeChannelIE(dl)
80         #test paginated channel
81         result = ie.extract('https://www.youtube.com/channel/UCKfVa3S1e4PHvxWcwyMMg8w')[0]
82         self.assertTrue(len(result['entries']) > 90)
83         #test autogenerated channel
84         result = ie.extract('https://www.youtube.com/channel/HCtnHdj3df7iM/videos')[0]
85         self.assertTrue(len(result['entries']) >= 18)
86
87     def test_youtube_user(self):
88         dl = FakeYDL()
89         ie = YoutubeUserIE(dl)
90         result = ie.extract('https://www.youtube.com/user/TheLinuxFoundation')[0]
91         self.assertTrue(len(result['entries']) >= 320)
92
93     def test_youtube_safe_search(self):
94         dl = FakeYDL()
95         ie = YoutubePlaylistIE(dl)
96         result = ie.extract('PLtPgu7CB4gbY9oDN3drwC3cMbJggS7dKl')[0]
97         self.assertEqual(len(result['entries']), 2)
98
99     def test_youtube_show(self):
100         dl = FakeYDL()
101         ie = YoutubeShowIE(dl)
102         result = ie.extract('http://www.youtube.com/show/airdisasters')
103         self.assertTrue(len(result) >= 4)
104
105 if __name__ == '__main__':
106     unittest.main()