| 
									
										
										
										
											2012-12-04 10:59:38 +01:00
										 |  |  | #!/usr/bin/env python | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-08 18:37:33 +01:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 02:00:53 +02:00
										 |  |  | # Allow direct execution | 
					
						
							|  |  |  | import os | 
					
						
							| 
									
										
										
										
											2012-12-04 10:59:38 +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__)))) | 
					
						
							| 
									
										
										
										
											2012-12-04 10:59:38 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 02:00:53 +02:00
										 |  |  | from test.helper import get_testcases | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from youtube_dl.extractor import ( | 
					
						
							| 
									
										
										
										
											2013-12-16 21:10:06 +01:00
										 |  |  |     FacebookIE, | 
					
						
							| 
									
										
										
										
											2013-10-15 02:00:53 +02:00
										 |  |  |     gen_extractors, | 
					
						
							|  |  |  |     JustinTVIE, | 
					
						
							| 
									
										
										
										
											2014-02-08 18:37:33 +01:00
										 |  |  |     PBSIE, | 
					
						
							| 
									
										
										
										
											2013-10-15 02:00:53 +02:00
										 |  |  |     YoutubeIE, | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-04 10:59:38 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-27 05:31:36 +01:00
										 |  |  | class TestAllURLsMatching(unittest.TestCase): | 
					
						
							| 
									
										
										
										
											2013-09-05 22:38:23 +02:00
										 |  |  |     def setUp(self): | 
					
						
							|  |  |  |         self.ies = gen_extractors() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def matching_ies(self, url): | 
					
						
							|  |  |  |         return [ie.IE_NAME for ie in self.ies if ie.suitable(url) and ie.IE_NAME != 'generic'] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def assertMatch(self, url, ie_list): | 
					
						
							|  |  |  |         self.assertEqual(self.matching_ies(url), ie_list) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-27 05:31:36 +01:00
										 |  |  |     def test_youtube_playlist_matching(self): | 
					
						
							| 
									
										
										
										
											2013-09-06 16:24:24 +02:00
										 |  |  |         assertPlaylist = lambda url: self.assertMatch(url, ['youtube:playlist']) | 
					
						
							| 
									
										
										
										
											2014-02-08 18:37:33 +01:00
										 |  |  |         assertPlaylist('ECUl4u3cNGP61MdtwGTqZA0MreSaDybji8') | 
					
						
							|  |  |  |         assertPlaylist('UUBABnxM4Ar9ten8Mdjj1j0Q') #585 | 
					
						
							|  |  |  |         assertPlaylist('PL63F0C78739B09958') | 
					
						
							|  |  |  |         assertPlaylist('https://www.youtube.com/playlist?list=UUBABnxM4Ar9ten8Mdjj1j0Q') | 
					
						
							|  |  |  |         assertPlaylist('https://www.youtube.com/course?list=ECUl4u3cNGP61MdtwGTqZA0MreSaDybji8') | 
					
						
							|  |  |  |         assertPlaylist('https://www.youtube.com/playlist?list=PLwP_SiAcdui0KVebT0mU9Apz359a4ubsC') | 
					
						
							|  |  |  |         assertPlaylist('https://www.youtube.com/watch?v=AV6J6_AeFEQ&playnext=1&list=PL4023E734DA416012') #668 | 
					
						
							|  |  |  |         self.assertFalse('youtube:playlist' in self.matching_ies('PLtS2H6bU1M')) | 
					
						
							| 
									
										
										
										
											2014-02-06 19:46:26 +01:00
										 |  |  |         # Top tracks | 
					
						
							|  |  |  |         assertPlaylist('https://www.youtube.com/playlist?list=MCUS.20142101') | 
					
						
							| 
									
										
										
										
											2012-12-04 10:59:38 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def test_youtube_matching(self): | 
					
						
							| 
									
										
										
										
											2014-02-08 18:37:33 +01:00
										 |  |  |         self.assertTrue(YoutubeIE.suitable('PLtS2H6bU1M')) | 
					
						
							|  |  |  |         self.assertFalse(YoutubeIE.suitable('https://www.youtube.com/watch?v=AV6J6_AeFEQ&playnext=1&list=PL4023E734DA416012')) #668 | 
					
						
							| 
									
										
										
										
											2013-09-05 22:38:23 +02:00
										 |  |  |         self.assertMatch('http://youtu.be/BaW_jenozKc', ['youtube']) | 
					
						
							|  |  |  |         self.assertMatch('http://www.youtube.com/v/BaW_jenozKc', ['youtube']) | 
					
						
							| 
									
										
										
										
											2013-09-15 12:14:59 +02:00
										 |  |  |         self.assertMatch('https://youtube.googleapis.com/v/BaW_jenozKc', ['youtube']) | 
					
						
							| 
									
										
										
										
											2012-12-04 10:59:38 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-19 18:06:28 -04:00
										 |  |  |     def test_youtube_channel_matching(self): | 
					
						
							| 
									
										
										
										
											2013-09-06 16:24:24 +02:00
										 |  |  |         assertChannel = lambda url: self.assertMatch(url, ['youtube:channel']) | 
					
						
							|  |  |  |         assertChannel('https://www.youtube.com/channel/HCtnHdj3df7iM') | 
					
						
							|  |  |  |         assertChannel('https://www.youtube.com/channel/HCtnHdj3df7iM?feature=gb_ch_rec') | 
					
						
							|  |  |  |         assertChannel('https://www.youtube.com/channel/HCtnHdj3df7iM/videos') | 
					
						
							| 
									
										
										
										
											2013-04-19 18:06:28 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-05 22:38:23 +02:00
										 |  |  |     def test_youtube_user_matching(self): | 
					
						
							|  |  |  |         self.assertMatch('www.youtube.com/NASAgovVideo/videos', ['youtube:user']) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-06 14:38:41 +02:00
										 |  |  |     def test_youtube_feeds(self): | 
					
						
							|  |  |  |         self.assertMatch('https://www.youtube.com/feed/watch_later', ['youtube:watch_later']) | 
					
						
							|  |  |  |         self.assertMatch('https://www.youtube.com/feed/subscriptions', ['youtube:subscriptions']) | 
					
						
							|  |  |  |         self.assertMatch('https://www.youtube.com/feed/recommended', ['youtube:recommended']) | 
					
						
							|  |  |  |         self.assertMatch('https://www.youtube.com/my_favorites', ['youtube:favorites']) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-06 16:24:24 +02:00
										 |  |  |     def test_youtube_show_matching(self): | 
					
						
							|  |  |  |         self.assertMatch('http://www.youtube.com/show/airdisasters', ['youtube:show']) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-17 14:56:21 +01:00
										 |  |  |     def test_youtube_truncated(self): | 
					
						
							|  |  |  |         self.assertMatch('http://www.youtube.com/watch?', ['youtube:truncated_url']) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-04 03:32:28 +01:00
										 |  |  |     def test_youtube_search_matching(self): | 
					
						
							|  |  |  |         self.assertMatch('http://www.youtube.com/results?search_query=making+mustard', ['youtube:search_url']) | 
					
						
							|  |  |  |         self.assertMatch('https://www.youtube.com/results?baz=bar&search_query=youtube-dl+test+video&filters=video&lclk=video', ['youtube:search_url']) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-04 13:06:49 +02:00
										 |  |  |     def test_justin_tv_channelid_matching(self): | 
					
						
							|  |  |  |         self.assertTrue(JustinTVIE.suitable(u"justin.tv/vanillatv")) | 
					
						
							|  |  |  |         self.assertTrue(JustinTVIE.suitable(u"twitch.tv/vanillatv")) | 
					
						
							|  |  |  |         self.assertTrue(JustinTVIE.suitable(u"www.justin.tv/vanillatv")) | 
					
						
							|  |  |  |         self.assertTrue(JustinTVIE.suitable(u"www.twitch.tv/vanillatv")) | 
					
						
							|  |  |  |         self.assertTrue(JustinTVIE.suitable(u"http://www.justin.tv/vanillatv")) | 
					
						
							|  |  |  |         self.assertTrue(JustinTVIE.suitable(u"http://www.twitch.tv/vanillatv")) | 
					
						
							|  |  |  |         self.assertTrue(JustinTVIE.suitable(u"http://www.justin.tv/vanillatv/")) | 
					
						
							|  |  |  |         self.assertTrue(JustinTVIE.suitable(u"http://www.twitch.tv/vanillatv/")) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_justintv_videoid_matching(self): | 
					
						
							|  |  |  |         self.assertTrue(JustinTVIE.suitable(u"http://www.twitch.tv/vanillatv/b/328087483")) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def test_justin_tv_chapterid_matching(self): | 
					
						
							|  |  |  |         self.assertTrue(JustinTVIE.suitable(u"http://www.twitch.tv/tsm_theoddone/c/2349361")) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-27 05:31:36 +01:00
										 |  |  |     def test_youtube_extract(self): | 
					
						
							| 
									
										
										
										
											2014-02-08 19:20:11 +01:00
										 |  |  |         assertExtractId = lambda url, id: self.assertEqual(YoutubeIE.extract_id(url), id) | 
					
						
							| 
									
										
										
										
											2013-09-09 10:33:12 +02:00
										 |  |  |         assertExtractId('http://www.youtube.com/watch?&v=BaW_jenozKc', 'BaW_jenozKc') | 
					
						
							|  |  |  |         assertExtractId('https://www.youtube.com/watch?&v=BaW_jenozKc', 'BaW_jenozKc') | 
					
						
							|  |  |  |         assertExtractId('https://www.youtube.com/watch?feature=player_embedded&v=BaW_jenozKc', 'BaW_jenozKc') | 
					
						
							|  |  |  |         assertExtractId('https://www.youtube.com/watch_popup?v=BaW_jenozKc', 'BaW_jenozKc') | 
					
						
							|  |  |  |         assertExtractId('http://www.youtube.com/watch?v=BaW_jenozKcsharePLED17F32AD9753930', 'BaW_jenozKc') | 
					
						
							|  |  |  |         assertExtractId('BaW_jenozKc', 'BaW_jenozKc') | 
					
						
							| 
									
										
										
										
											2012-12-27 05:31:36 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-16 21:10:06 +01:00
										 |  |  |     def test_facebook_matching(self): | 
					
						
							| 
									
										
										
										
											2014-02-08 18:37:33 +01:00
										 |  |  |         self.assertTrue(FacebookIE.suitable('https://www.facebook.com/Shiniknoh#!/photo.php?v=10153317450565268')) | 
					
						
							| 
									
										
										
										
											2013-12-16 21:10:06 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-27 21:21:54 +02:00
										 |  |  |     def test_no_duplicates(self): | 
					
						
							|  |  |  |         ies = gen_extractors() | 
					
						
							|  |  |  |         for tc in get_testcases(): | 
					
						
							|  |  |  |             url = tc['url'] | 
					
						
							|  |  |  |             for ie in ies: | 
					
						
							| 
									
										
										
										
											2013-12-16 21:10:06 +01:00
										 |  |  |                 if type(ie).__name__ in ('GenericIE', tc['name'] + 'IE'): | 
					
						
							| 
									
										
										
										
											2013-06-27 21:21:54 +02:00
										 |  |  |                     self.assertTrue(ie.suitable(url), '%s should match URL %r' % (type(ie).__name__, url)) | 
					
						
							|  |  |  |                 else: | 
					
						
							|  |  |  |                     self.assertFalse(ie.suitable(url), '%s should not match URL %r' % (type(ie).__name__, url)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-07 17:13:26 +02:00
										 |  |  |     def test_keywords(self): | 
					
						
							| 
									
										
										
										
											2013-09-05 22:38:23 +02:00
										 |  |  |         self.assertMatch(':ytsubs', ['youtube:subscriptions']) | 
					
						
							|  |  |  |         self.assertMatch(':ytsubscriptions', ['youtube:subscriptions']) | 
					
						
							| 
									
										
										
										
											2013-11-24 14:33:50 +01:00
										 |  |  |         self.assertMatch(':ythistory', ['youtube:history']) | 
					
						
							| 
									
										
										
										
											2013-11-24 22:13:20 +01:00
										 |  |  |         self.assertMatch(':thedailyshow', ['ComedyCentralShows']) | 
					
						
							|  |  |  |         self.assertMatch(':tds', ['ComedyCentralShows']) | 
					
						
							|  |  |  |         self.assertMatch(':colbertreport', ['ComedyCentralShows']) | 
					
						
							|  |  |  |         self.assertMatch(':cr', ['ComedyCentralShows']) | 
					
						
							| 
									
										
										
										
											2013-07-07 17:13:26 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-01 22:36:18 +01:00
										 |  |  |     def test_vimeo_matching(self): | 
					
						
							|  |  |  |         self.assertMatch('http://vimeo.com/channels/tributes', ['vimeo:channel']) | 
					
						
							|  |  |  |         self.assertMatch('http://vimeo.com/user7108434', ['vimeo:user']) | 
					
						
							| 
									
										
										
										
											2014-01-07 07:13:42 +01:00
										 |  |  |         self.assertMatch('http://vimeo.com/user7108434/videos', ['vimeo:user']) | 
					
						
							|  |  |  |         self.assertMatch('https://vimeo.com/user21297594/review/75524534/3c257a1b5d', ['vimeo:review']) | 
					
						
							| 
									
										
										
										
											2013-12-01 22:36:18 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-09 19:57:00 +01:00
										 |  |  |     # https://github.com/rg3/youtube-dl/issues/1930 | 
					
						
							|  |  |  |     def test_soundcloud_not_matching_sets(self): | 
					
						
							|  |  |  |         self.assertMatch('http://soundcloud.com/floex/sets/gone-ep', ['soundcloud:set']) | 
					
						
							| 
									
										
										
										
											2013-06-27 21:21:54 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-28 03:37:23 +01:00
										 |  |  |     def test_tumblr(self): | 
					
						
							|  |  |  |         self.assertMatch('http://tatianamaslanydaily.tumblr.com/post/54196191430/orphan-black-dvd-extra-behind-the-scenes', ['Tumblr']) | 
					
						
							|  |  |  |         self.assertMatch('http://tatianamaslanydaily.tumblr.com/post/54196191430', ['Tumblr']) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-08 18:37:33 +01:00
										 |  |  |     def test_pbs(self): | 
					
						
							|  |  |  |         # https://github.com/rg3/youtube-dl/issues/2350 | 
					
						
							|  |  |  |         self.assertMatch('http://video.pbs.org/viralplayer/2365173446/', ['PBS']) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-04 10:59:38 +01:00
										 |  |  | if __name__ == '__main__': | 
					
						
							|  |  |  |     unittest.main() |