]> jfr.im git - yt-dlp.git/blame - test/test_all_urls.py
[youtube:truncated_url] Move test to extractor
[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
PH
16 gen_extractors,
17 JustinTVIE,
bf5f6100 18 PBSIE,
44a5f171
PH
19 YoutubeIE,
20)
21
e387eb5a 22
3bb61659 23class TestAllURLsMatching(unittest.TestCase):
f4b05232
JMF
24 def setUp(self):
25 self.ies = gen_extractors()
26
27 def matching_ies(self, url):
28 return [ie.IE_NAME for ie in self.ies if ie.suitable(url) and ie.IE_NAME != 'generic']
29
30 def assertMatch(self, url, ie_list):
31 self.assertEqual(self.matching_ies(url), ie_list)
32
3bb61659 33 def test_youtube_playlist_matching(self):
e3ea4790 34 assertPlaylist = lambda url: self.assertMatch(url, ['youtube:playlist'])
bf5f6100
PH
35 assertPlaylist('ECUl4u3cNGP61MdtwGTqZA0MreSaDybji8')
36 assertPlaylist('UUBABnxM4Ar9ten8Mdjj1j0Q') #585
37 assertPlaylist('PL63F0C78739B09958')
38 assertPlaylist('https://www.youtube.com/playlist?list=UUBABnxM4Ar9ten8Mdjj1j0Q')
39 assertPlaylist('https://www.youtube.com/course?list=ECUl4u3cNGP61MdtwGTqZA0MreSaDybji8')
40 assertPlaylist('https://www.youtube.com/playlist?list=PLwP_SiAcdui0KVebT0mU9Apz359a4ubsC')
41 assertPlaylist('https://www.youtube.com/watch?v=AV6J6_AeFEQ&playnext=1&list=PL4023E734DA416012') #668
42 self.assertFalse('youtube:playlist' in self.matching_ies('PLtS2H6bU1M'))
d67cc9fa
JMF
43 # Top tracks
44 assertPlaylist('https://www.youtube.com/playlist?list=MCUS.20142101')
e387eb5a
PH
45
46 def test_youtube_matching(self):
bf5f6100
PH
47 self.assertTrue(YoutubeIE.suitable('PLtS2H6bU1M'))
48 self.assertFalse(YoutubeIE.suitable('https://www.youtube.com/watch?v=AV6J6_AeFEQ&playnext=1&list=PL4023E734DA416012')) #668
f4b05232
JMF
49 self.assertMatch('http://youtu.be/BaW_jenozKc', ['youtube'])
50 self.assertMatch('http://www.youtube.com/v/BaW_jenozKc', ['youtube'])
e69ae5b9 51 self.assertMatch('https://youtube.googleapis.com/v/BaW_jenozKc', ['youtube'])
b9c76aa1 52 self.assertMatch('http://www.cleanvideosearch.com/media/action/yt/watch?videoId=8v_4O44sfjM', ['youtube'])
e387eb5a 53
fb6c3199 54 def test_youtube_channel_matching(self):
e3ea4790
JMF
55 assertChannel = lambda url: self.assertMatch(url, ['youtube:channel'])
56 assertChannel('https://www.youtube.com/channel/HCtnHdj3df7iM')
57 assertChannel('https://www.youtube.com/channel/HCtnHdj3df7iM?feature=gb_ch_rec')
58 assertChannel('https://www.youtube.com/channel/HCtnHdj3df7iM/videos')
fb6c3199 59
f4b05232
JMF
60 def test_youtube_user_matching(self):
61 self.assertMatch('www.youtube.com/NASAgovVideo/videos', ['youtube:user'])
62
faab1d38
JMF
63 def test_youtube_feeds(self):
64 self.assertMatch('https://www.youtube.com/feed/watch_later', ['youtube:watch_later'])
65 self.assertMatch('https://www.youtube.com/feed/subscriptions', ['youtube:subscriptions'])
66 self.assertMatch('https://www.youtube.com/feed/recommended', ['youtube:recommended'])
67 self.assertMatch('https://www.youtube.com/my_favorites', ['youtube:favorites'])
68
e3ea4790
JMF
69 def test_youtube_show_matching(self):
70 self.assertMatch('http://www.youtube.com/show/airdisasters', ['youtube:show'])
71
c9ae7b95
PH
72 def test_youtube_search_matching(self):
73 self.assertMatch('http://www.youtube.com/results?search_query=making+mustard', ['youtube:search_url'])
74 self.assertMatch('https://www.youtube.com/results?baz=bar&search_query=youtube-dl+test+video&filters=video&lclk=video', ['youtube:search_url'])
75
50b4d259 76 def test_justin_tv_channelid_matching(self):
5367fe7f
PH
77 self.assertTrue(JustinTVIE.suitable('justin.tv/vanillatv'))
78 self.assertTrue(JustinTVIE.suitable('twitch.tv/vanillatv'))
79 self.assertTrue(JustinTVIE.suitable('www.justin.tv/vanillatv'))
80 self.assertTrue(JustinTVIE.suitable('www.twitch.tv/vanillatv'))
81 self.assertTrue(JustinTVIE.suitable('http://www.justin.tv/vanillatv'))
82 self.assertTrue(JustinTVIE.suitable('http://www.twitch.tv/vanillatv'))
83 self.assertTrue(JustinTVIE.suitable('http://www.justin.tv/vanillatv/'))
84 self.assertTrue(JustinTVIE.suitable('http://www.twitch.tv/vanillatv/'))
50b4d259
CD
85
86 def test_justintv_videoid_matching(self):
5367fe7f 87 self.assertTrue(JustinTVIE.suitable('http://www.twitch.tv/vanillatv/b/328087483'))
50b4d259
CD
88
89 def test_justin_tv_chapterid_matching(self):
5367fe7f 90 self.assertTrue(JustinTVIE.suitable('http://www.twitch.tv/tsm_theoddone/c/2349361'))
50b4d259 91
3bb61659 92 def test_youtube_extract(self):
97665381 93 assertExtractId = lambda url, id: self.assertEqual(YoutubeIE.extract_id(url), id)
8963d9c2
JMF
94 assertExtractId('http://www.youtube.com/watch?&v=BaW_jenozKc', 'BaW_jenozKc')
95 assertExtractId('https://www.youtube.com/watch?&v=BaW_jenozKc', 'BaW_jenozKc')
96 assertExtractId('https://www.youtube.com/watch?feature=player_embedded&v=BaW_jenozKc', 'BaW_jenozKc')
97 assertExtractId('https://www.youtube.com/watch_popup?v=BaW_jenozKc', 'BaW_jenozKc')
98 assertExtractId('http://www.youtube.com/watch?v=BaW_jenozKcsharePLED17F32AD9753930', 'BaW_jenozKc')
99 assertExtractId('BaW_jenozKc', 'BaW_jenozKc')
3bb61659 100
8c8e3eec 101 def test_facebook_matching(self):
bf5f6100 102 self.assertTrue(FacebookIE.suitable('https://www.facebook.com/Shiniknoh#!/photo.php?v=10153317450565268'))
8c8e3eec 103
a924876f
PH
104 def test_no_duplicates(self):
105 ies = gen_extractors()
52fadd5f 106 for tc in gettestcases(include_onlymatching=True):
a924876f
PH
107 url = tc['url']
108 for ie in ies:
8c8e3eec 109 if type(ie).__name__ in ('GenericIE', tc['name'] + 'IE'):
a924876f
PH
110 self.assertTrue(ie.suitable(url), '%s should match URL %r' % (type(ie).__name__, url))
111 else:
112 self.assertFalse(ie.suitable(url), '%s should not match URL %r' % (type(ie).__name__, url))
113
897f36d1 114 def test_keywords(self):
f4b05232
JMF
115 self.assertMatch(':ytsubs', ['youtube:subscriptions'])
116 self.assertMatch(':ytsubscriptions', ['youtube:subscriptions'])
f459d170 117 self.assertMatch(':ythistory', ['youtube:history'])
16e05584
JMF
118 self.assertMatch(':thedailyshow', ['ComedyCentralShows'])
119 self.assertMatch(':tds', ['ComedyCentralShows'])
120 self.assertMatch(':colbertreport', ['ComedyCentralShows'])
121 self.assertMatch(':cr', ['ComedyCentralShows'])
897f36d1 122
55a10eab
JMF
123 def test_vimeo_matching(self):
124 self.assertMatch('http://vimeo.com/channels/tributes', ['vimeo:channel'])
b1ff8722
JMF
125 self.assertMatch('http://vimeo.com/channels/31259', ['vimeo:channel'])
126 self.assertMatch('http://vimeo.com/channels/31259/53576664', ['vimeo'])
55a10eab 127 self.assertMatch('http://vimeo.com/user7108434', ['vimeo:user'])
48a20346
PH
128 self.assertMatch('http://vimeo.com/user7108434/videos', ['vimeo:user'])
129 self.assertMatch('https://vimeo.com/user21297594/review/75524534/3c257a1b5d', ['vimeo:review'])
55a10eab 130
4ff50ef8
PH
131 # https://github.com/rg3/youtube-dl/issues/1930
132 def test_soundcloud_not_matching_sets(self):
133 self.assertMatch('http://soundcloud.com/floex/sets/gone-ep', ['soundcloud:set'])
a924876f 134
456895d9
PH
135 def test_tumblr(self):
136 self.assertMatch('http://tatianamaslanydaily.tumblr.com/post/54196191430/orphan-black-dvd-extra-behind-the-scenes', ['Tumblr'])
137 self.assertMatch('http://tatianamaslanydaily.tumblr.com/post/54196191430', ['Tumblr'])
138
bf5f6100
PH
139 def test_pbs(self):
140 # https://github.com/rg3/youtube-dl/issues/2350
141 self.assertMatch('http://video.pbs.org/viralplayer/2365173446/', ['PBS'])
773c0b4b 142 self.assertMatch('http://video.pbs.org/widget/partnerplayer/980042464/', ['PBS'])
bf5f6100 143
69c01a9f 144 def test_ComedyCentralShows(self):
16f4eb72
PH
145 self.assertMatch(
146 'http://thedailyshow.cc.com/extended-interviews/xm3fnq/andrew-napolitano-extended-interview',
147 ['ComedyCentralShows'])
148 self.assertMatch(
149 'http://thecolbertreport.cc.com/videos/29w6fx/-realhumanpraise-for-fox-news',
150 ['ComedyCentralShows'])
65148662
PH
151 self.assertMatch(
152 'http://thecolbertreport.cc.com/videos/gh6urb/neil-degrasse-tyson-pt--1?xrs=eml_col_031114',
153 ['ComedyCentralShows'])
968ed2a7
PH
154 self.assertMatch(
155 'http://thedailyshow.cc.com/guests/michael-lewis/3efna8/exclusive---michael-lewis-extended-interview-pt--3',
156 ['ComedyCentralShows'])
29e3e682
PH
157 self.assertMatch(
158 'http://thedailyshow.cc.com/episodes/sy7yv0/april-8--2014---denis-leary',
159 ['ComedyCentralShows'])
160 self.assertMatch(
161 'http://thecolbertreport.cc.com/episodes/8ase07/april-8--2014---jane-goodall',
162 ['ComedyCentralShows'])
163 self.assertMatch(
164 'http://thedailyshow.cc.com/video-playlists/npde3s/the-daily-show-19088-highlights',
165 ['ComedyCentralShows'])
7753cadb
PH
166 self.assertMatch(
167 'http://thedailyshow.cc.com/special-editions/2l8fdb/special-edition---a-look-back-at-food',
168 ['ComedyCentralShows'])
69c01a9f 169
c8edf47b
PH
170 def test_yahoo_https(self):
171 # https://github.com/rg3/youtube-dl/issues/2701
172 self.assertMatch(
173 'https://screen.yahoo.com/smartwatches-latest-wearable-gadgets-163745379-cbs.html',
174 ['Yahoo'])
175
52fadd5f 176
e387eb5a
PH
177if __name__ == '__main__':
178 unittest.main()