]>
Raphaƫl G. Git Repositories - youtubedl/blob - test/test_all_urls.py
6 # Allow direct execution
8 sys
.path
.append(os
.path
.dirname(os
.path
.dirname(os
.path
.abspath(__file__
))))
10 from youtube_dl
.InfoExtractors
import YoutubeIE
, YoutubePlaylistIE
, YoutubeChannelIE
12 class TestAllURLsMatching(unittest
.TestCase
):
13 def test_youtube_playlist_matching(self
):
14 self
.assertTrue(YoutubePlaylistIE
.suitable(u
'ECUl4u3cNGP61MdtwGTqZA0MreSaDybji8'))
15 self
.assertTrue(YoutubePlaylistIE
.suitable(u
'UUBABnxM4Ar9ten8Mdjj1j0Q')) #585
16 self
.assertTrue(YoutubePlaylistIE
.suitable(u
'PL63F0C78739B09958'))
17 self
.assertTrue(YoutubePlaylistIE
.suitable(u
'https://www.youtube.com/playlist?list=UUBABnxM4Ar9ten8Mdjj1j0Q'))
18 self
.assertTrue(YoutubePlaylistIE
.suitable(u
'https://www.youtube.com/course?list=ECUl4u3cNGP61MdtwGTqZA0MreSaDybji8'))
19 self
.assertTrue(YoutubePlaylistIE
.suitable(u
'https://www.youtube.com/playlist?list=PLwP_SiAcdui0KVebT0mU9Apz359a4ubsC'))
20 self
.assertTrue(YoutubePlaylistIE
.suitable(u
'https://www.youtube.com/watch?v=AV6J6_AeFEQ&playnext=1&list=PL4023E734DA416012')) #668
21 self
.assertFalse(YoutubePlaylistIE
.suitable(u
'PLtS2H6bU1M'))
23 def test_youtube_matching(self
):
24 self
.assertTrue(YoutubeIE
.suitable(u
'PLtS2H6bU1M'))
25 self
.assertFalse(YoutubeIE
.suitable(u
'https://www.youtube.com/watch?v=AV6J6_AeFEQ&playnext=1&list=PL4023E734DA416012')) #668
27 def test_youtube_channel_matching(self
):
28 self
.assertTrue(YoutubeChannelIE
.suitable('https://www.youtube.com/channel/HCtnHdj3df7iM'))
29 self
.assertTrue(YoutubeChannelIE
.suitable('https://www.youtube.com/channel/HCtnHdj3df7iM?feature=gb_ch_rec'))
30 self
.assertTrue(YoutubeChannelIE
.suitable('https://www.youtube.com/channel/HCtnHdj3df7iM/videos'))
32 def test_youtube_extract(self
):
33 self
.assertEqual(YoutubeIE()._extract
_id
('http://www.youtube.com/watch?&v=BaW_jenozKc'), 'BaW_jenozKc')
34 self
.assertEqual(YoutubeIE()._extract
_id
('https://www.youtube.com/watch?&v=BaW_jenozKc'), 'BaW_jenozKc')
35 self
.assertEqual(YoutubeIE()._extract
_id
('https://www.youtube.com/watch?feature=player_embedded&v=BaW_jenozKc'), 'BaW_jenozKc')
37 if __name__
== '__main__':