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