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