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
|
|
|
|
|
|
|
|
2014-03-17 14:30:13 +01:00
|
|
|
from test.helper import gettestcases
|
2013-10-15 02:00:53 +02:00
|
|
|
|
|
|
|
from youtube_dl.extractor import (
|
2013-12-16 21:10:06 +01:00
|
|
|
FacebookIE,
|
2013-10-15 02:00:53 +02:00
|
|
|
gen_extractors,
|
|
|
|
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')
|
2014-11-23 20:41:03 +01:00
|
|
|
assertPlaylist('UUBABnxM4Ar9ten8Mdjj1j0Q') # 585
|
2014-02-08 18:37:33 +01:00
|
|
|
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')
|
2014-11-23 20:41:03 +01:00
|
|
|
assertPlaylist('https://www.youtube.com/watch?v=AV6J6_AeFEQ&playnext=1&list=PL4023E734DA416012') # 668
|
2014-02-08 18:37:33 +01:00
|
|
|
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'))
|
2014-11-23 20:41:03 +01:00
|
|
|
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'])
|
2014-04-11 13:51:47 +02:00
|
|
|
self.assertMatch('http://www.cleanvideosearch.com/media/action/yt/watch?videoId=8v_4O44sfjM', ['youtube'])
|
2012-12-04 10:59:38 +01:00
|
|
|
|
2013-04-20 00:06:28 +02: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-20 00:06:28 +02: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):
|
2015-03-26 20:03:31 +01:00
|
|
|
self.assertMatch('https://www.youtube.com/feed/watch_later', ['youtube:watchlater'])
|
2013-09-06 14:38:41 +02:00
|
|
|
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-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'])
|
|
|
|
|
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'))
|
2014-08-10 11:55:24 +02:00
|
|
|
self.assertTrue(FacebookIE.suitable('https://www.facebook.com/cindyweather?fref=ts#!/photo.php?v=10152183998945793'))
|
2013-12-16 21:10:06 +01:00
|
|
|
|
2013-06-27 21:21:54 +02:00
|
|
|
def test_no_duplicates(self):
|
|
|
|
ies = gen_extractors()
|
2014-04-19 19:41:06 +02:00
|
|
|
for tc in gettestcases(include_onlymatching=True):
|
2013-06-27 21:21:54 +02:00
|
|
|
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:
|
2014-08-27 11:35:43 +02:00
|
|
|
self.assertFalse(
|
|
|
|
ie.suitable(url),
|
|
|
|
'%s should not match URL %r . That URL belongs to %s.' % (type(ie).__name__, url, tc['name']))
|
2013-06-27 21:21:54 +02:00
|
|
|
|
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'])
|
2015-09-21 17:28:02 +02:00
|
|
|
self.assertMatch(':ythistory', ['youtube:history'])
|
2013-11-24 22:13:20 +01:00
|
|
|
self.assertMatch(':thedailyshow', ['ComedyCentralShows'])
|
|
|
|
self.assertMatch(':tds', ['ComedyCentralShows'])
|
2013-07-07 17:13:26 +02:00
|
|
|
|
2013-12-01 22:36:18 +01:00
|
|
|
def test_vimeo_matching(self):
|
2015-03-12 19:08:16 +01:00
|
|
|
self.assertMatch('https://vimeo.com/channels/tributes', ['vimeo:channel'])
|
|
|
|
self.assertMatch('https://vimeo.com/channels/31259', ['vimeo:channel'])
|
|
|
|
self.assertMatch('https://vimeo.com/channels/31259/53576664', ['vimeo'])
|
|
|
|
self.assertMatch('https://vimeo.com/user7108434', ['vimeo:user'])
|
|
|
|
self.assertMatch('https://vimeo.com/user7108434/videos', ['vimeo:user'])
|
2014-01-07 07:13:42 +01:00
|
|
|
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'])
|
2014-03-21 00:46:32 +01:00
|
|
|
self.assertMatch('http://video.pbs.org/widget/partnerplayer/980042464/', ['PBS'])
|
2014-02-08 18:37:33 +01:00
|
|
|
|
2014-04-04 22:23:59 +02:00
|
|
|
def test_yahoo_https(self):
|
|
|
|
# https://github.com/rg3/youtube-dl/issues/2701
|
|
|
|
self.assertMatch(
|
|
|
|
'https://screen.yahoo.com/smartwatches-latest-wearable-gadgets-163745379-cbs.html',
|
|
|
|
['Yahoo'])
|
|
|
|
|
2014-04-19 19:41:06 +02:00
|
|
|
|
2012-12-04 10:59:38 +01:00
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|