]> jfr.im git - yt-dlp.git/blame - test/test_all_urls.py
[xattr] Correct on Windows
[yt-dlp.git] / test / test_all_urls.py
CommitLineData
e387eb5a
PH
1#!/usr/bin/env python
2
44a5f171
PH
3# Allow direct execution
4import os
e387eb5a
PH
5import sys
6import unittest
44a5f171 7sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
e387eb5a 8
e387eb5a 9
44a5f171
PH
10from test.helper import get_testcases
11
12from youtube_dl.extractor import (
8c8e3eec 13 FacebookIE,
44a5f171
PH
14 gen_extractors,
15 JustinTVIE,
16 YoutubeIE,
17)
18
e387eb5a 19
3bb61659 20class TestAllURLsMatching(unittest.TestCase):
f4b05232
JMF
21 def setUp(self):
22 self.ies = gen_extractors()
23
24 def matching_ies(self, url):
25 return [ie.IE_NAME for ie in self.ies if ie.suitable(url) and ie.IE_NAME != 'generic']
26
27 def assertMatch(self, url, ie_list):
28 self.assertEqual(self.matching_ies(url), ie_list)
29
3bb61659 30 def test_youtube_playlist_matching(self):
e3ea4790
JMF
31 assertPlaylist = lambda url: self.assertMatch(url, ['youtube:playlist'])
32 assertPlaylist(u'ECUl4u3cNGP61MdtwGTqZA0MreSaDybji8')
33 assertPlaylist(u'UUBABnxM4Ar9ten8Mdjj1j0Q') #585
34 assertPlaylist(u'PL63F0C78739B09958')
35 assertPlaylist(u'https://www.youtube.com/playlist?list=UUBABnxM4Ar9ten8Mdjj1j0Q')
36 assertPlaylist(u'https://www.youtube.com/course?list=ECUl4u3cNGP61MdtwGTqZA0MreSaDybji8')
37 assertPlaylist(u'https://www.youtube.com/playlist?list=PLwP_SiAcdui0KVebT0mU9Apz359a4ubsC')
38 assertPlaylist(u'https://www.youtube.com/watch?v=AV6J6_AeFEQ&playnext=1&list=PL4023E734DA416012') #668
39 self.assertFalse('youtube:playlist' in self.matching_ies(u'PLtS2H6bU1M'))
e387eb5a
PH
40
41 def test_youtube_matching(self):
89de9eb1
FV
42 self.assertTrue(YoutubeIE.suitable(u'PLtS2H6bU1M'))
43 self.assertFalse(YoutubeIE.suitable(u'https://www.youtube.com/watch?v=AV6J6_AeFEQ&playnext=1&list=PL4023E734DA416012')) #668
f4b05232
JMF
44 self.assertMatch('http://youtu.be/BaW_jenozKc', ['youtube'])
45 self.assertMatch('http://www.youtube.com/v/BaW_jenozKc', ['youtube'])
e69ae5b9 46 self.assertMatch('https://youtube.googleapis.com/v/BaW_jenozKc', ['youtube'])
e387eb5a 47
fb6c3199 48 def test_youtube_channel_matching(self):
e3ea4790
JMF
49 assertChannel = lambda url: self.assertMatch(url, ['youtube:channel'])
50 assertChannel('https://www.youtube.com/channel/HCtnHdj3df7iM')
51 assertChannel('https://www.youtube.com/channel/HCtnHdj3df7iM?feature=gb_ch_rec')
52 assertChannel('https://www.youtube.com/channel/HCtnHdj3df7iM/videos')
fb6c3199 53
f4b05232
JMF
54 def test_youtube_user_matching(self):
55 self.assertMatch('www.youtube.com/NASAgovVideo/videos', ['youtube:user'])
56
faab1d38
JMF
57 def test_youtube_feeds(self):
58 self.assertMatch('https://www.youtube.com/feed/watch_later', ['youtube:watch_later'])
59 self.assertMatch('https://www.youtube.com/feed/subscriptions', ['youtube:subscriptions'])
60 self.assertMatch('https://www.youtube.com/feed/recommended', ['youtube:recommended'])
61 self.assertMatch('https://www.youtube.com/my_favorites', ['youtube:favorites'])
62
e3ea4790
JMF
63 def test_youtube_show_matching(self):
64 self.assertMatch('http://www.youtube.com/show/airdisasters', ['youtube:show'])
65
50b4d259
CD
66 def test_justin_tv_channelid_matching(self):
67 self.assertTrue(JustinTVIE.suitable(u"justin.tv/vanillatv"))
68 self.assertTrue(JustinTVIE.suitable(u"twitch.tv/vanillatv"))
69 self.assertTrue(JustinTVIE.suitable(u"www.justin.tv/vanillatv"))
70 self.assertTrue(JustinTVIE.suitable(u"www.twitch.tv/vanillatv"))
71 self.assertTrue(JustinTVIE.suitable(u"http://www.justin.tv/vanillatv"))
72 self.assertTrue(JustinTVIE.suitable(u"http://www.twitch.tv/vanillatv"))
73 self.assertTrue(JustinTVIE.suitable(u"http://www.justin.tv/vanillatv/"))
74 self.assertTrue(JustinTVIE.suitable(u"http://www.twitch.tv/vanillatv/"))
75
76 def test_justintv_videoid_matching(self):
77 self.assertTrue(JustinTVIE.suitable(u"http://www.twitch.tv/vanillatv/b/328087483"))
78
79 def test_justin_tv_chapterid_matching(self):
80 self.assertTrue(JustinTVIE.suitable(u"http://www.twitch.tv/tsm_theoddone/c/2349361"))
81
3bb61659 82 def test_youtube_extract(self):
8963d9c2
JMF
83 assertExtractId = lambda url, id: self.assertEqual(YoutubeIE()._extract_id(url), id)
84 assertExtractId('http://www.youtube.com/watch?&v=BaW_jenozKc', 'BaW_jenozKc')
85 assertExtractId('https://www.youtube.com/watch?&v=BaW_jenozKc', 'BaW_jenozKc')
86 assertExtractId('https://www.youtube.com/watch?feature=player_embedded&v=BaW_jenozKc', 'BaW_jenozKc')
87 assertExtractId('https://www.youtube.com/watch_popup?v=BaW_jenozKc', 'BaW_jenozKc')
88 assertExtractId('http://www.youtube.com/watch?v=BaW_jenozKcsharePLED17F32AD9753930', 'BaW_jenozKc')
89 assertExtractId('BaW_jenozKc', 'BaW_jenozKc')
3bb61659 90
8c8e3eec
PH
91 def test_facebook_matching(self):
92 self.assertTrue(FacebookIE.suitable(u'https://www.facebook.com/Shiniknoh#!/photo.php?v=10153317450565268'))
93
a924876f
PH
94 def test_no_duplicates(self):
95 ies = gen_extractors()
96 for tc in get_testcases():
97 url = tc['url']
98 for ie in ies:
8c8e3eec 99 if type(ie).__name__ in ('GenericIE', tc['name'] + 'IE'):
a924876f
PH
100 self.assertTrue(ie.suitable(url), '%s should match URL %r' % (type(ie).__name__, url))
101 else:
102 self.assertFalse(ie.suitable(url), '%s should not match URL %r' % (type(ie).__name__, url))
103
897f36d1 104 def test_keywords(self):
f4b05232
JMF
105 self.assertMatch(':ytsubs', ['youtube:subscriptions'])
106 self.assertMatch(':ytsubscriptions', ['youtube:subscriptions'])
f459d170 107 self.assertMatch(':ythistory', ['youtube:history'])
16e05584
JMF
108 self.assertMatch(':thedailyshow', ['ComedyCentralShows'])
109 self.assertMatch(':tds', ['ComedyCentralShows'])
110 self.assertMatch(':colbertreport', ['ComedyCentralShows'])
111 self.assertMatch(':cr', ['ComedyCentralShows'])
897f36d1 112
55a10eab
JMF
113 def test_vimeo_matching(self):
114 self.assertMatch('http://vimeo.com/channels/tributes', ['vimeo:channel'])
115 self.assertMatch('http://vimeo.com/user7108434', ['vimeo:user'])
116
4ff50ef8
PH
117 # https://github.com/rg3/youtube-dl/issues/1930
118 def test_soundcloud_not_matching_sets(self):
119 self.assertMatch('http://soundcloud.com/floex/sets/gone-ep', ['soundcloud:set'])
a924876f 120
e387eb5a
PH
121if __name__ == '__main__':
122 unittest.main()