]> jfr.im git - yt-dlp.git/blame - test/test_all_urls.py
[cleanup] Upgrade syntax
[yt-dlp.git] / test / test_all_urls.py
CommitLineData
cc52de43 1#!/usr/bin/env python3
44a5f171
PH
2# Allow direct execution
3import os
e387eb5a
PH
4import sys
5import unittest
e3a6747d 6import collections
44a5f171 7sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
e387eb5a 8
e387eb5a 9
ff14fc49 10from test.helper import gettestcases
44a5f171 11
7a5c1cfe 12from yt_dlp.extractor import (
8c8e3eec 13 FacebookIE,
44a5f171 14 gen_extractors,
44a5f171
PH
15 YoutubeIE,
16)
17
e387eb5a 18
3bb61659 19class TestAllURLsMatching(unittest.TestCase):
f4b05232
JMF
20 def setUp(self):
21 self.ies = gen_extractors()
22
23 def matching_ies(self, url):
24 return [ie.IE_NAME for ie in self.ies if ie.suitable(url) and ie.IE_NAME != 'generic']
25
26 def assertMatch(self, url, ie_list):
27 self.assertEqual(self.matching_ies(url), ie_list)
28
3bb61659 29 def test_youtube_playlist_matching(self):
e3ea4790 30 assertPlaylist = lambda url: self.assertMatch(url, ['youtube:playlist'])
8bdd16b4 31 assertTab = lambda url: self.assertMatch(url, ['youtube:tab'])
bf5f6100 32 assertPlaylist('ECUl4u3cNGP61MdtwGTqZA0MreSaDybji8')
5f6a1245 33 assertPlaylist('UUBABnxM4Ar9ten8Mdjj1j0Q') # 585
8bdd16b4 34 assertPlaylist('PL63F0C78739B09958')
3462ffa8 35 assertTab('https://www.youtube.com/AsapSCIENCE')
36 assertTab('https://www.youtube.com/embedded')
8bdd16b4 37 assertTab('https://www.youtube.com/playlist?list=UUBABnxM4Ar9ten8Mdjj1j0Q')
8bdd16b4 38 assertTab('https://www.youtube.com/playlist?list=PLwP_SiAcdui0KVebT0mU9Apz359a4ubsC')
39 assertTab('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 41 # Top tracks
8bdd16b4 42 assertTab('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 47 self.assertMatch('http://youtu.be/BaW_jenozKc', ['youtube'])
3462ffa8 48 # self.assertMatch('http://www.youtube.com/v/BaW_jenozKc', ['youtube']) # /v/ is no longer valid
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):
8bdd16b4 53 assertChannel = lambda url: self.assertMatch(url, ['youtube:tab'])
e3ea4790
JMF
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
29f7c58a 58 def test_youtube_user_matching(self):
59 self.assertMatch('http://www.youtube.com/NASAgovVideo/videos', ['youtube:tab'])
f4b05232 60
faab1d38 61 def test_youtube_feeds(self):
3d3dddc9 62 self.assertMatch('https://www.youtube.com/feed/library', ['youtube:tab'])
63 self.assertMatch('https://www.youtube.com/feed/history', ['youtube:tab'])
64 self.assertMatch('https://www.youtube.com/feed/watch_later', ['youtube:tab'])
65 self.assertMatch('https://www.youtube.com/feed/subscriptions', ['youtube:tab'])
faab1d38 66
ebdd9275 67 def test_youtube_search_matching(self):
68 self.assertMatch('http://www.youtube.com/results?search_query=making+mustard', ['youtube:search_url'])
69 self.assertMatch('https://www.youtube.com/results?baz=bar&search_query=youtube-dl+test+video&filters=video&lclk=video', ['youtube:search_url'])
c9ae7b95 70
8c8e3eec 71 def test_facebook_matching(self):
bf5f6100 72 self.assertTrue(FacebookIE.suitable('https://www.facebook.com/Shiniknoh#!/photo.php?v=10153317450565268'))
a6da7b6b 73 self.assertTrue(FacebookIE.suitable('https://www.facebook.com/cindyweather?fref=ts#!/photo.php?v=10152183998945793'))
8c8e3eec 74
a924876f
PH
75 def test_no_duplicates(self):
76 ies = gen_extractors()
52fadd5f 77 for tc in gettestcases(include_onlymatching=True):
a924876f
PH
78 url = tc['url']
79 for ie in ies:
8c8e3eec 80 if type(ie).__name__ in ('GenericIE', tc['name'] + 'IE'):
86e5f3ed 81 self.assertTrue(ie.suitable(url), f'{type(ie).__name__} should match URL {url!r}')
a924876f 82 else:
22449fa6
PH
83 self.assertFalse(
84 ie.suitable(url),
86e5f3ed 85 f'{type(ie).__name__} should not match URL {url!r} . That URL belongs to {tc["name"]}.')
a924876f 86
897f36d1 87 def test_keywords(self):
f4b05232
JMF
88 self.assertMatch(':ytsubs', ['youtube:subscriptions'])
89 self.assertMatch(':ytsubscriptions', ['youtube:subscriptions'])
c6aa838b 90 self.assertMatch(':ythistory', ['youtube:history'])
897f36d1 91
55a10eab 92 def test_vimeo_matching(self):
3946864c
JMF
93 self.assertMatch('https://vimeo.com/channels/tributes', ['vimeo:channel'])
94 self.assertMatch('https://vimeo.com/channels/31259', ['vimeo:channel'])
95 self.assertMatch('https://vimeo.com/channels/31259/53576664', ['vimeo'])
96 self.assertMatch('https://vimeo.com/user7108434', ['vimeo:user'])
97 self.assertMatch('https://vimeo.com/user7108434/videos', ['vimeo:user'])
48a20346 98 self.assertMatch('https://vimeo.com/user21297594/review/75524534/3c257a1b5d', ['vimeo:review'])
55a10eab 99
067aa17e 100 # https://github.com/ytdl-org/youtube-dl/issues/1930
4ff50ef8
PH
101 def test_soundcloud_not_matching_sets(self):
102 self.assertMatch('http://soundcloud.com/floex/sets/gone-ep', ['soundcloud:set'])
a924876f 103
456895d9
PH
104 def test_tumblr(self):
105 self.assertMatch('http://tatianamaslanydaily.tumblr.com/post/54196191430/orphan-black-dvd-extra-behind-the-scenes', ['Tumblr'])
106 self.assertMatch('http://tatianamaslanydaily.tumblr.com/post/54196191430', ['Tumblr'])
107
bf5f6100 108 def test_pbs(self):
067aa17e 109 # https://github.com/ytdl-org/youtube-dl/issues/2350
47f48f5d
JMF
110 self.assertMatch('http://video.pbs.org/viralplayer/2365173446/', ['pbs'])
111 self.assertMatch('http://video.pbs.org/widget/partnerplayer/980042464/', ['pbs'])
bf5f6100 112
e3a6747d
MM
113 def test_no_duplicated_ie_names(self):
114 name_accu = collections.defaultdict(list)
115 for ie in self.ies:
fd7a7498
S
116 name_accu[ie.IE_NAME.lower()].append(type(ie).__name__)
117 for (ie_name, ie_list) in name_accu.items():
118 self.assertEqual(
119 len(ie_list), 1,
86e5f3ed 120 f'Multiple extractors with the same IE_NAME "{ie_name}" ({", ".join(ie_list)})')
e3a6747d 121
52fadd5f 122
e387eb5a
PH
123if __name__ == '__main__':
124 unittest.main()