You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

135 lines
6.7 KiB

10 years ago
10 years ago
10 years ago
  1. #!/usr/bin/env python
  2. from __future__ import unicode_literals
  3. # Allow direct execution
  4. import os
  5. import sys
  6. import unittest
  7. sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
  8. from test.helper import gettestcases
  9. from youtube_dl.extractor import (
  10. FacebookIE,
  11. gen_extractors,
  12. YoutubeIE,
  13. )
  14. class TestAllURLsMatching(unittest.TestCase):
  15. def setUp(self):
  16. self.ies = gen_extractors()
  17. def matching_ies(self, url):
  18. return [ie.IE_NAME for ie in self.ies if ie.suitable(url) and ie.IE_NAME != 'generic']
  19. def assertMatch(self, url, ie_list):
  20. self.assertEqual(self.matching_ies(url), ie_list)
  21. def test_youtube_playlist_matching(self):
  22. assertPlaylist = lambda url: self.assertMatch(url, ['youtube:playlist'])
  23. assertPlaylist('ECUl4u3cNGP61MdtwGTqZA0MreSaDybji8')
  24. assertPlaylist('UUBABnxM4Ar9ten8Mdjj1j0Q') # 585
  25. assertPlaylist('PL63F0C78739B09958')
  26. assertPlaylist('https://www.youtube.com/playlist?list=UUBABnxM4Ar9ten8Mdjj1j0Q')
  27. assertPlaylist('https://www.youtube.com/course?list=ECUl4u3cNGP61MdtwGTqZA0MreSaDybji8')
  28. assertPlaylist('https://www.youtube.com/playlist?list=PLwP_SiAcdui0KVebT0mU9Apz359a4ubsC')
  29. assertPlaylist('https://www.youtube.com/watch?v=AV6J6_AeFEQ&playnext=1&list=PL4023E734DA416012') # 668
  30. self.assertFalse('youtube:playlist' in self.matching_ies('PLtS2H6bU1M'))
  31. # Top tracks
  32. assertPlaylist('https://www.youtube.com/playlist?list=MCUS.20142101')
  33. def test_youtube_matching(self):
  34. self.assertTrue(YoutubeIE.suitable('PLtS2H6bU1M'))
  35. self.assertFalse(YoutubeIE.suitable('https://www.youtube.com/watch?v=AV6J6_AeFEQ&playnext=1&list=PL4023E734DA416012')) # 668
  36. self.assertMatch('http://youtu.be/BaW_jenozKc', ['youtube'])
  37. self.assertMatch('http://www.youtube.com/v/BaW_jenozKc', ['youtube'])
  38. self.assertMatch('https://youtube.googleapis.com/v/BaW_jenozKc', ['youtube'])
  39. self.assertMatch('http://www.cleanvideosearch.com/media/action/yt/watch?videoId=8v_4O44sfjM', ['youtube'])
  40. def test_youtube_channel_matching(self):
  41. assertChannel = lambda url: self.assertMatch(url, ['youtube:channel'])
  42. assertChannel('https://www.youtube.com/channel/HCtnHdj3df7iM')
  43. assertChannel('https://www.youtube.com/channel/HCtnHdj3df7iM?feature=gb_ch_rec')
  44. assertChannel('https://www.youtube.com/channel/HCtnHdj3df7iM/videos')
  45. def test_youtube_user_matching(self):
  46. self.assertMatch('www.youtube.com/NASAgovVideo/videos', ['youtube:user'])
  47. def test_youtube_feeds(self):
  48. self.assertMatch('https://www.youtube.com/feed/watch_later', ['youtube:watch_later'])
  49. self.assertMatch('https://www.youtube.com/feed/subscriptions', ['youtube:subscriptions'])
  50. self.assertMatch('https://www.youtube.com/feed/recommended', ['youtube:recommended'])
  51. self.assertMatch('https://www.youtube.com/my_favorites', ['youtube:favorites'])
  52. def test_youtube_show_matching(self):
  53. self.assertMatch('http://www.youtube.com/show/airdisasters', ['youtube:show'])
  54. def test_youtube_search_matching(self):
  55. self.assertMatch('http://www.youtube.com/results?search_query=making+mustard', ['youtube:search_url'])
  56. self.assertMatch('https://www.youtube.com/results?baz=bar&search_query=youtube-dl+test+video&filters=video&lclk=video', ['youtube:search_url'])
  57. def test_youtube_extract(self):
  58. assertExtractId = lambda url, id: self.assertEqual(YoutubeIE.extract_id(url), id)
  59. assertExtractId('http://www.youtube.com/watch?&v=BaW_jenozKc', 'BaW_jenozKc')
  60. assertExtractId('https://www.youtube.com/watch?&v=BaW_jenozKc', 'BaW_jenozKc')
  61. assertExtractId('https://www.youtube.com/watch?feature=player_embedded&v=BaW_jenozKc', 'BaW_jenozKc')
  62. assertExtractId('https://www.youtube.com/watch_popup?v=BaW_jenozKc', 'BaW_jenozKc')
  63. assertExtractId('http://www.youtube.com/watch?v=BaW_jenozKcsharePLED17F32AD9753930', 'BaW_jenozKc')
  64. assertExtractId('BaW_jenozKc', 'BaW_jenozKc')
  65. def test_facebook_matching(self):
  66. self.assertTrue(FacebookIE.suitable('https://www.facebook.com/Shiniknoh#!/photo.php?v=10153317450565268'))
  67. self.assertTrue(FacebookIE.suitable('https://www.facebook.com/cindyweather?fref=ts#!/photo.php?v=10152183998945793'))
  68. def test_no_duplicates(self):
  69. ies = gen_extractors()
  70. for tc in gettestcases(include_onlymatching=True):
  71. url = tc['url']
  72. for ie in ies:
  73. if type(ie).__name__ in ('GenericIE', tc['name'] + 'IE'):
  74. self.assertTrue(ie.suitable(url), '%s should match URL %r' % (type(ie).__name__, url))
  75. else:
  76. self.assertFalse(
  77. ie.suitable(url),
  78. '%s should not match URL %r . That URL belongs to %s.' % (type(ie).__name__, url, tc['name']))
  79. def test_keywords(self):
  80. self.assertMatch(':ytsubs', ['youtube:subscriptions'])
  81. self.assertMatch(':ytsubscriptions', ['youtube:subscriptions'])
  82. self.assertMatch(':ythistory', ['youtube:history'])
  83. self.assertMatch(':thedailyshow', ['ComedyCentralShows'])
  84. self.assertMatch(':tds', ['ComedyCentralShows'])
  85. def test_vimeo_matching(self):
  86. self.assertMatch('http://vimeo.com/channels/tributes', ['vimeo:channel'])
  87. self.assertMatch('http://vimeo.com/channels/31259', ['vimeo:channel'])
  88. self.assertMatch('http://vimeo.com/channels/31259/53576664', ['vimeo'])
  89. self.assertMatch('http://vimeo.com/user7108434', ['vimeo:user'])
  90. self.assertMatch('http://vimeo.com/user7108434/videos', ['vimeo:user'])
  91. self.assertMatch('https://vimeo.com/user21297594/review/75524534/3c257a1b5d', ['vimeo:review'])
  92. # https://github.com/rg3/youtube-dl/issues/1930
  93. def test_soundcloud_not_matching_sets(self):
  94. self.assertMatch('http://soundcloud.com/floex/sets/gone-ep', ['soundcloud:set'])
  95. def test_tumblr(self):
  96. self.assertMatch('http://tatianamaslanydaily.tumblr.com/post/54196191430/orphan-black-dvd-extra-behind-the-scenes', ['Tumblr'])
  97. self.assertMatch('http://tatianamaslanydaily.tumblr.com/post/54196191430', ['Tumblr'])
  98. def test_pbs(self):
  99. # https://github.com/rg3/youtube-dl/issues/2350
  100. self.assertMatch('http://video.pbs.org/viralplayer/2365173446/', ['PBS'])
  101. self.assertMatch('http://video.pbs.org/widget/partnerplayer/980042464/', ['PBS'])
  102. def test_yahoo_https(self):
  103. # https://github.com/rg3/youtube-dl/issues/2701
  104. self.assertMatch(
  105. 'https://screen.yahoo.com/smartwatches-latest-wearable-gadgets-163745379-cbs.html',
  106. ['Yahoo'])
  107. if __name__ == '__main__':
  108. unittest.main()