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.

124 lines
6.1 KiB

  1. #!/usr/bin/env python
  2. # Allow direct execution
  3. import os
  4. import sys
  5. import unittest
  6. sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
  7. from test.helper import get_testcases
  8. from youtube_dl.extractor import (
  9. FacebookIE,
  10. gen_extractors,
  11. JustinTVIE,
  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(u'ECUl4u3cNGP61MdtwGTqZA0MreSaDybji8')
  24. assertPlaylist(u'UUBABnxM4Ar9ten8Mdjj1j0Q') #585
  25. assertPlaylist(u'PL63F0C78739B09958')
  26. assertPlaylist(u'https://www.youtube.com/playlist?list=UUBABnxM4Ar9ten8Mdjj1j0Q')
  27. assertPlaylist(u'https://www.youtube.com/course?list=ECUl4u3cNGP61MdtwGTqZA0MreSaDybji8')
  28. assertPlaylist(u'https://www.youtube.com/playlist?list=PLwP_SiAcdui0KVebT0mU9Apz359a4ubsC')
  29. assertPlaylist(u'https://www.youtube.com/watch?v=AV6J6_AeFEQ&playnext=1&list=PL4023E734DA416012') #668
  30. self.assertFalse('youtube:playlist' in self.matching_ies(u'PLtS2H6bU1M'))
  31. def test_youtube_matching(self):
  32. self.assertTrue(YoutubeIE.suitable(u'PLtS2H6bU1M'))
  33. self.assertFalse(YoutubeIE.suitable(u'https://www.youtube.com/watch?v=AV6J6_AeFEQ&playnext=1&list=PL4023E734DA416012')) #668
  34. self.assertMatch('http://youtu.be/BaW_jenozKc', ['youtube'])
  35. self.assertMatch('http://www.youtube.com/v/BaW_jenozKc', ['youtube'])
  36. self.assertMatch('https://youtube.googleapis.com/v/BaW_jenozKc', ['youtube'])
  37. def test_youtube_channel_matching(self):
  38. assertChannel = lambda url: self.assertMatch(url, ['youtube:channel'])
  39. assertChannel('https://www.youtube.com/channel/HCtnHdj3df7iM')
  40. assertChannel('https://www.youtube.com/channel/HCtnHdj3df7iM?feature=gb_ch_rec')
  41. assertChannel('https://www.youtube.com/channel/HCtnHdj3df7iM/videos')
  42. def test_youtube_user_matching(self):
  43. self.assertMatch('www.youtube.com/NASAgovVideo/videos', ['youtube:user'])
  44. def test_youtube_feeds(self):
  45. self.assertMatch('https://www.youtube.com/feed/watch_later', ['youtube:watch_later'])
  46. self.assertMatch('https://www.youtube.com/feed/subscriptions', ['youtube:subscriptions'])
  47. self.assertMatch('https://www.youtube.com/feed/recommended', ['youtube:recommended'])
  48. self.assertMatch('https://www.youtube.com/my_favorites', ['youtube:favorites'])
  49. def test_youtube_show_matching(self):
  50. self.assertMatch('http://www.youtube.com/show/airdisasters', ['youtube:show'])
  51. def test_justin_tv_channelid_matching(self):
  52. self.assertTrue(JustinTVIE.suitable(u"justin.tv/vanillatv"))
  53. self.assertTrue(JustinTVIE.suitable(u"twitch.tv/vanillatv"))
  54. self.assertTrue(JustinTVIE.suitable(u"www.justin.tv/vanillatv"))
  55. self.assertTrue(JustinTVIE.suitable(u"www.twitch.tv/vanillatv"))
  56. self.assertTrue(JustinTVIE.suitable(u"http://www.justin.tv/vanillatv"))
  57. self.assertTrue(JustinTVIE.suitable(u"http://www.twitch.tv/vanillatv"))
  58. self.assertTrue(JustinTVIE.suitable(u"http://www.justin.tv/vanillatv/"))
  59. self.assertTrue(JustinTVIE.suitable(u"http://www.twitch.tv/vanillatv/"))
  60. def test_justintv_videoid_matching(self):
  61. self.assertTrue(JustinTVIE.suitable(u"http://www.twitch.tv/vanillatv/b/328087483"))
  62. def test_justin_tv_chapterid_matching(self):
  63. self.assertTrue(JustinTVIE.suitable(u"http://www.twitch.tv/tsm_theoddone/c/2349361"))
  64. def test_youtube_extract(self):
  65. assertExtractId = lambda url, id: self.assertEqual(YoutubeIE()._extract_id(url), id)
  66. assertExtractId('http://www.youtube.com/watch?&v=BaW_jenozKc', 'BaW_jenozKc')
  67. assertExtractId('https://www.youtube.com/watch?&v=BaW_jenozKc', 'BaW_jenozKc')
  68. assertExtractId('https://www.youtube.com/watch?feature=player_embedded&v=BaW_jenozKc', 'BaW_jenozKc')
  69. assertExtractId('https://www.youtube.com/watch_popup?v=BaW_jenozKc', 'BaW_jenozKc')
  70. assertExtractId('http://www.youtube.com/watch?v=BaW_jenozKcsharePLED17F32AD9753930', 'BaW_jenozKc')
  71. assertExtractId('BaW_jenozKc', 'BaW_jenozKc')
  72. def test_facebook_matching(self):
  73. self.assertTrue(FacebookIE.suitable(u'https://www.facebook.com/Shiniknoh#!/photo.php?v=10153317450565268'))
  74. def test_no_duplicates(self):
  75. ies = gen_extractors()
  76. for tc in get_testcases():
  77. url = tc['url']
  78. for ie in ies:
  79. if type(ie).__name__ in ('GenericIE', tc['name'] + 'IE'):
  80. self.assertTrue(ie.suitable(url), '%s should match URL %r' % (type(ie).__name__, url))
  81. else:
  82. self.assertFalse(ie.suitable(url), '%s should not match URL %r' % (type(ie).__name__, url))
  83. def test_keywords(self):
  84. self.assertMatch(':ytsubs', ['youtube:subscriptions'])
  85. self.assertMatch(':ytsubscriptions', ['youtube:subscriptions'])
  86. self.assertMatch(':ythistory', ['youtube:history'])
  87. self.assertMatch(':thedailyshow', ['ComedyCentralShows'])
  88. self.assertMatch(':tds', ['ComedyCentralShows'])
  89. self.assertMatch(':colbertreport', ['ComedyCentralShows'])
  90. self.assertMatch(':cr', ['ComedyCentralShows'])
  91. def test_vimeo_matching(self):
  92. self.assertMatch('http://vimeo.com/channels/tributes', ['vimeo:channel'])
  93. self.assertMatch('http://vimeo.com/user7108434', ['vimeo:user'])
  94. self.assertMatch('http://vimeo.com/user7108434/videos', ['vimeo:user'])
  95. self.assertMatch('https://vimeo.com/user21297594/review/75524534/3c257a1b5d', ['vimeo:review'])
  96. # https://github.com/rg3/youtube-dl/issues/1930
  97. def test_soundcloud_not_matching_sets(self):
  98. self.assertMatch('http://soundcloud.com/floex/sets/gone-ep', ['soundcloud:set'])
  99. if __name__ == '__main__':
  100. unittest.main()