| 
									
										
										
										
											2012-12-11 16:45:46 +01:00
										 |  |  | #!/usr/bin/env python | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 02:00:53 +02:00
										 |  |  | # Allow direct execution | 
					
						
							|  |  |  | import os | 
					
						
							| 
									
										
										
										
											2012-12-11 16:45:46 +01:00
										 |  |  | import sys | 
					
						
							|  |  |  | import unittest | 
					
						
							| 
									
										
										
										
											2013-10-15 02:00:53 +02:00
										 |  |  | sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-25 03:47:32 +01:00
										 |  |  | from test.helper import FakeYDL | 
					
						
							| 
									
										
										
										
											2012-12-11 16:45:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 02:00:53 +02:00
										 |  |  | from youtube_dl.extractor import ( | 
					
						
							|  |  |  |     YoutubeUserIE, | 
					
						
							|  |  |  |     YoutubePlaylistIE, | 
					
						
							|  |  |  |     YoutubeIE, | 
					
						
							|  |  |  |     YoutubeChannelIE, | 
					
						
							|  |  |  |     YoutubeShowIE, | 
					
						
							| 
									
										
										
										
											2013-11-30 14:56:51 +01:00
										 |  |  |     YoutubeTopListIE, | 
					
						
							| 
									
										
										
										
											2014-03-04 03:32:28 +01:00
										 |  |  |     YoutubeSearchURLIE, | 
					
						
							| 
									
										
										
										
											2013-10-15 02:00:53 +02:00
										 |  |  | ) | 
					
						
							| 
									
										
										
										
											2012-12-11 16:45:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class TestYoutubeLists(unittest.TestCase): | 
					
						
							| 
									
										
										
										
											2013-10-15 02:00:53 +02:00
										 |  |  |     def assertIsPlaylist(self, info): | 
					
						
							| 
									
										
										
										
											2013-03-05 20:55:48 +01:00
										 |  |  |         """Make sure the info has '_type' set to 'playlist'""" | 
					
						
							|  |  |  |         self.assertEqual(info['_type'], 'playlist') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-11 16:45:46 +01:00
										 |  |  |     def test_youtube_playlist(self): | 
					
						
							| 
									
										
										
										
											2013-06-23 20:41:17 +02:00
										 |  |  |         dl = FakeYDL() | 
					
						
							| 
									
										
										
										
											2013-02-26 20:03:19 +01:00
										 |  |  |         ie = YoutubePlaylistIE(dl) | 
					
						
							| 
									
										
										
										
											2013-11-13 16:21:24 +01:00
										 |  |  |         result = ie.extract('https://www.youtube.com/playlist?list=PLwiyx1dc3P2JR9N8gQaQN_BCvlSlap7re') | 
					
						
							| 
									
										
										
										
											2013-03-05 20:55:48 +01:00
										 |  |  |         self.assertIsPlaylist(result) | 
					
						
							| 
									
										
										
										
											2013-04-20 18:57:05 +02:00
										 |  |  |         self.assertEqual(result['title'], 'ytdl test PL') | 
					
						
							| 
									
										
										
										
											2014-02-08 19:20:11 +01:00
										 |  |  |         ytie_results = [YoutubeIE().extract_id(url['url']) for url in result['entries']] | 
					
						
							| 
									
										
										
										
											2013-02-26 20:07:38 +01:00
										 |  |  |         self.assertEqual(ytie_results, [ 'bV9L5Ht9LgY', 'FXxLjLQi3Fg', 'tU3Bgo5qJZE']) | 
					
						
							| 
									
										
										
										
											2012-12-11 16:45:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-30 18:01:17 -04:00
										 |  |  |     def test_youtube_playlist_noplaylist(self): | 
					
						
							|  |  |  |         dl = FakeYDL() | 
					
						
							|  |  |  |         dl.params['noplaylist'] = True | 
					
						
							|  |  |  |         ie = YoutubePlaylistIE(dl) | 
					
						
							|  |  |  |         result = ie.extract('https://www.youtube.com/watch?v=FXxLjLQi3Fg&list=PLwiyx1dc3P2JR9N8gQaQN_BCvlSlap7re') | 
					
						
							|  |  |  |         self.assertEqual(result['_type'], 'url') | 
					
						
							| 
									
										
										
										
											2014-02-08 19:20:11 +01:00
										 |  |  |         self.assertEqual(YoutubeIE().extract_id(result['url']), 'FXxLjLQi3Fg') | 
					
						
							| 
									
										
										
										
											2013-09-30 18:01:17 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-26 20:07:38 +01:00
										 |  |  |     def test_issue_673(self): | 
					
						
							| 
									
										
										
										
											2013-06-23 20:41:17 +02:00
										 |  |  |         dl = FakeYDL() | 
					
						
							| 
									
										
										
										
											2013-02-26 20:03:19 +01:00
										 |  |  |         ie = YoutubePlaylistIE(dl) | 
					
						
							| 
									
										
										
										
											2013-11-13 16:21:24 +01:00
										 |  |  |         result = ie.extract('PLBB231211A4F62143') | 
					
						
							| 
									
										
										
										
											2013-06-15 11:20:22 +02:00
										 |  |  |         self.assertTrue(len(result['entries']) > 25) | 
					
						
							| 
									
										
										
										
											2013-02-26 19:02:31 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-11 16:45:46 +01:00
										 |  |  |     def test_youtube_playlist_long(self): | 
					
						
							| 
									
										
										
										
											2013-06-23 20:41:17 +02:00
										 |  |  |         dl = FakeYDL() | 
					
						
							| 
									
										
										
										
											2013-02-26 20:03:19 +01:00
										 |  |  |         ie = YoutubePlaylistIE(dl) | 
					
						
							| 
									
										
										
										
											2013-11-13 16:21:24 +01:00
										 |  |  |         result = ie.extract('https://www.youtube.com/playlist?list=UUBABnxM4Ar9ten8Mdjj1j0Q') | 
					
						
							| 
									
										
										
										
											2013-03-05 20:55:48 +01:00
										 |  |  |         self.assertIsPlaylist(result) | 
					
						
							|  |  |  |         self.assertTrue(len(result['entries']) >= 799) | 
					
						
							| 
									
										
										
										
											2012-12-11 16:45:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-26 10:39:26 +01:00
										 |  |  |     def test_youtube_playlist_with_deleted(self): | 
					
						
							| 
									
										
										
										
											2013-02-26 19:02:31 +01:00
										 |  |  |         #651 | 
					
						
							| 
									
										
										
										
											2013-06-23 20:41:17 +02:00
										 |  |  |         dl = FakeYDL() | 
					
						
							| 
									
										
										
										
											2013-02-26 20:03:19 +01:00
										 |  |  |         ie = YoutubePlaylistIE(dl) | 
					
						
							| 
									
										
										
										
											2013-11-13 16:21:24 +01:00
										 |  |  |         result = ie.extract('https://www.youtube.com/playlist?list=PLwP_SiAcdui0KVebT0mU9Apz359a4ubsC') | 
					
						
							| 
									
										
										
										
											2014-02-08 19:20:11 +01:00
										 |  |  |         ytie_results = [YoutubeIE().extract_id(url['url']) for url in result['entries']] | 
					
						
							| 
									
										
										
										
											2013-02-26 20:07:38 +01:00
										 |  |  |         self.assertFalse('pElCt5oNDuI' in ytie_results) | 
					
						
							|  |  |  |         self.assertFalse('KdPEApIVdWM' in ytie_results) | 
					
						
							| 
									
										
										
										
											2013-04-27 10:41:52 +02:00
										 |  |  |          | 
					
						
							|  |  |  |     def test_youtube_playlist_empty(self): | 
					
						
							| 
									
										
										
										
											2013-06-23 20:41:17 +02:00
										 |  |  |         dl = FakeYDL() | 
					
						
							| 
									
										
										
										
											2013-04-27 10:41:52 +02:00
										 |  |  |         ie = YoutubePlaylistIE(dl) | 
					
						
							| 
									
										
										
										
											2013-11-13 16:21:24 +01:00
										 |  |  |         result = ie.extract('https://www.youtube.com/playlist?list=PLtPgu7CB4gbZDA7i_euNxn75ISqxwZPYx') | 
					
						
							| 
									
										
										
										
											2013-04-27 10:41:52 +02:00
										 |  |  |         self.assertIsPlaylist(result) | 
					
						
							|  |  |  |         self.assertEqual(len(result['entries']), 0) | 
					
						
							| 
									
										
										
										
											2013-02-26 10:39:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-11 16:45:46 +01:00
										 |  |  |     def test_youtube_course(self): | 
					
						
							| 
									
										
										
										
											2013-06-23 20:41:17 +02:00
										 |  |  |         dl = FakeYDL() | 
					
						
							| 
									
										
										
										
											2013-02-26 20:03:19 +01:00
										 |  |  |         ie = YoutubePlaylistIE(dl) | 
					
						
							| 
									
										
										
										
											2012-12-11 16:45:46 +01:00
										 |  |  |         # TODO find a > 100 (paginating?) videos course | 
					
						
							| 
									
										
										
										
											2013-11-13 16:21:24 +01:00
										 |  |  |         result = ie.extract('https://www.youtube.com/course?list=ECUl4u3cNGP61MdtwGTqZA0MreSaDybji8') | 
					
						
							| 
									
										
										
										
											2013-03-05 20:55:48 +01:00
										 |  |  |         entries = result['entries'] | 
					
						
							| 
									
										
										
										
											2014-02-08 19:20:11 +01:00
										 |  |  |         self.assertEqual(YoutubeIE().extract_id(entries[0]['url']), 'j9WZyLZCBzs') | 
					
						
							| 
									
										
										
										
											2013-03-05 20:55:48 +01:00
										 |  |  |         self.assertEqual(len(entries), 25) | 
					
						
							| 
									
										
										
										
											2014-02-08 19:20:11 +01:00
										 |  |  |         self.assertEqual(YoutubeIE().extract_id(entries[-1]['url']), 'rYefUsYuEp0') | 
					
						
							| 
									
										
										
										
											2012-12-11 16:45:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def test_youtube_channel(self): | 
					
						
							| 
									
										
										
										
											2013-06-23 20:41:17 +02:00
										 |  |  |         dl = FakeYDL() | 
					
						
							| 
									
										
										
										
											2013-04-19 18:06:28 -04:00
										 |  |  |         ie = YoutubeChannelIE(dl) | 
					
						
							|  |  |  |         #test paginated channel | 
					
						
							| 
									
										
										
										
											2013-11-22 22:46:46 +01:00
										 |  |  |         result = ie.extract('https://www.youtube.com/channel/UCKfVa3S1e4PHvxWcwyMMg8w') | 
					
						
							| 
									
										
										
										
											2013-04-19 18:06:28 -04:00
										 |  |  |         self.assertTrue(len(result['entries']) > 90) | 
					
						
							|  |  |  |         #test autogenerated channel | 
					
						
							| 
									
										
										
										
											2013-11-22 22:46:46 +01:00
										 |  |  |         result = ie.extract('https://www.youtube.com/channel/HCtnHdj3df7iM/videos') | 
					
						
							| 
									
										
										
										
											2013-04-28 15:50:29 +02:00
										 |  |  |         self.assertTrue(len(result['entries']) >= 18) | 
					
						
							| 
									
										
										
										
											2012-12-11 16:45:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def test_youtube_user(self): | 
					
						
							| 
									
										
										
										
											2013-06-23 20:41:17 +02:00
										 |  |  |         dl = FakeYDL() | 
					
						
							| 
									
										
										
										
											2013-02-26 20:03:19 +01:00
										 |  |  |         ie = YoutubeUserIE(dl) | 
					
						
							| 
									
										
										
										
											2013-11-22 22:46:46 +01:00
										 |  |  |         result = ie.extract('https://www.youtube.com/user/TheLinuxFoundation') | 
					
						
							| 
									
										
										
										
											2013-03-05 20:55:48 +01:00
										 |  |  |         self.assertTrue(len(result['entries']) >= 320) | 
					
						
							| 
									
										
										
										
											2012-12-11 16:45:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-19 12:51:26 +02:00
										 |  |  |     def test_youtube_safe_search(self): | 
					
						
							| 
									
										
										
										
											2013-06-23 20:41:17 +02:00
										 |  |  |         dl = FakeYDL() | 
					
						
							| 
									
										
										
										
											2013-06-19 12:51:26 +02:00
										 |  |  |         ie = YoutubePlaylistIE(dl) | 
					
						
							| 
									
										
										
										
											2013-11-13 16:21:24 +01:00
										 |  |  |         result = ie.extract('PLtPgu7CB4gbY9oDN3drwC3cMbJggS7dKl') | 
					
						
							| 
									
										
										
										
											2013-06-19 12:51:26 +02:00
										 |  |  |         self.assertEqual(len(result['entries']), 2) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-01 17:59:28 +02:00
										 |  |  |     def test_youtube_show(self): | 
					
						
							|  |  |  |         dl = FakeYDL() | 
					
						
							|  |  |  |         ie = YoutubeShowIE(dl) | 
					
						
							|  |  |  |         result = ie.extract('http://www.youtube.com/show/airdisasters') | 
					
						
							| 
									
										
										
										
											2013-10-15 08:22:20 +02:00
										 |  |  |         self.assertTrue(len(result) >= 3) | 
					
						
							| 
									
										
										
										
											2013-07-01 17:59:28 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-26 21:35:03 +01:00
										 |  |  |     def test_youtube_mix(self): | 
					
						
							|  |  |  |         dl = FakeYDL() | 
					
						
							|  |  |  |         ie = YoutubePlaylistIE(dl) | 
					
						
							| 
									
										
										
										
											2014-06-07 13:43:27 +02:00
										 |  |  |         result = ie.extract('https://www.youtube.com/watch?v=W01L70IGBgE&index=2&list=RDOQpdSVF_k_w') | 
					
						
							| 
									
										
										
										
											2013-11-26 21:35:03 +01:00
										 |  |  |         entries = result['entries'] | 
					
						
							|  |  |  |         self.assertTrue(len(entries) >= 20) | 
					
						
							|  |  |  |         original_video = entries[0] | 
					
						
							| 
									
										
										
										
											2014-06-07 13:43:27 +02:00
										 |  |  |         self.assertEqual(original_video['id'], 'OQpdSVF_k_w') | 
					
						
							| 
									
										
										
										
											2013-11-26 21:35:03 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-06 19:46:26 +01:00
										 |  |  |     def test_youtube_toptracks(self): | 
					
						
							| 
									
										
										
										
											2014-02-25 14:11:01 +01:00
										 |  |  |         print('Skipping: The playlist page gives error 500') | 
					
						
							|  |  |  |         return | 
					
						
							| 
									
										
										
										
											2014-02-06 19:46:26 +01:00
										 |  |  |         dl = FakeYDL() | 
					
						
							|  |  |  |         ie = YoutubePlaylistIE(dl) | 
					
						
							|  |  |  |         result = ie.extract('https://www.youtube.com/playlist?list=MCUS') | 
					
						
							|  |  |  |         entries = result['entries'] | 
					
						
							|  |  |  |         self.assertEqual(len(entries), 100) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-30 14:56:51 +01:00
										 |  |  |     def test_youtube_toplist(self): | 
					
						
							|  |  |  |         dl = FakeYDL() | 
					
						
							|  |  |  |         ie = YoutubeTopListIE(dl) | 
					
						
							| 
									
										
										
										
											2014-01-25 16:55:59 +01:00
										 |  |  |         result = ie.extract('yttoplist:music:Trending') | 
					
						
							| 
									
										
										
										
											2013-11-30 14:56:51 +01:00
										 |  |  |         entries = result['entries'] | 
					
						
							| 
									
										
										
										
											2013-12-09 04:50:48 +01:00
										 |  |  |         self.assertTrue(len(entries) >= 5) | 
					
						
							| 
									
										
										
										
											2013-11-30 14:56:51 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-04 03:32:28 +01:00
										 |  |  |     def test_youtube_search_url(self): | 
					
						
							|  |  |  |         dl = FakeYDL() | 
					
						
							|  |  |  |         ie = YoutubeSearchURLIE(dl) | 
					
						
							|  |  |  |         result = ie.extract('https://www.youtube.com/results?baz=bar&search_query=youtube-dl+test+video&filters=video&lclk=video') | 
					
						
							|  |  |  |         entries = result['entries'] | 
					
						
							|  |  |  |         self.assertIsPlaylist(result) | 
					
						
							|  |  |  |         self.assertEqual(result['title'], 'youtube-dl test video') | 
					
						
							|  |  |  |         self.assertTrue(len(entries) >= 5) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-11 16:45:46 +01:00
										 |  |  | if __name__ == '__main__': | 
					
						
							|  |  |  |     unittest.main() |