2012-12-11 16:45:46 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import sys
|
|
|
|
import unittest
|
2012-12-17 16:23:55 +01:00
|
|
|
import json
|
2012-12-11 16:45:46 +01:00
|
|
|
|
|
|
|
# Allow direct execution
|
|
|
|
import os
|
|
|
|
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
|
2013-06-23 22:42:59 +02:00
|
|
|
from youtube_dl.extractor import YoutubeUserIE, YoutubePlaylistIE, YoutubeIE, YoutubeChannelIE
|
2012-12-11 16:45:46 +01:00
|
|
|
from youtube_dl.utils import *
|
2013-06-23 20:41:17 +02:00
|
|
|
from youtube_dl import YoutubeDL
|
2012-12-11 16:45:46 +01:00
|
|
|
|
2012-12-17 16:23:55 +01:00
|
|
|
PARAMETERS_FILE = os.path.join(os.path.dirname(os.path.abspath(__file__)), "parameters.json")
|
|
|
|
with io.open(PARAMETERS_FILE, encoding='utf-8') as pf:
|
|
|
|
parameters = json.load(pf)
|
|
|
|
|
2012-12-11 16:45:46 +01:00
|
|
|
# General configuration (from __init__, not very elegant...)
|
|
|
|
jar = compat_cookiejar.CookieJar()
|
|
|
|
cookie_processor = compat_urllib_request.HTTPCookieProcessor(jar)
|
|
|
|
proxy_handler = compat_urllib_request.ProxyHandler()
|
|
|
|
opener = compat_urllib_request.build_opener(proxy_handler, cookie_processor, YoutubeDLHandler())
|
|
|
|
compat_urllib_request.install_opener(opener)
|
|
|
|
|
2013-06-23 20:41:17 +02:00
|
|
|
class FakeYDL(YoutubeDL):
|
2012-12-11 16:45:46 +01:00
|
|
|
def __init__(self):
|
|
|
|
self.result = []
|
2012-12-17 16:23:55 +01:00
|
|
|
self.params = parameters
|
2012-12-11 16:45:46 +01:00
|
|
|
def to_screen(self, s):
|
|
|
|
print(s)
|
2013-04-30 18:48:45 +02:00
|
|
|
def trouble(self, s, tb=None):
|
2012-12-11 16:45:46 +01:00
|
|
|
raise Exception(s)
|
2013-03-05 11:58:01 +01:00
|
|
|
def extract_info(self, url):
|
|
|
|
self.result.append(url)
|
|
|
|
return url
|
2012-12-11 16:45:46 +01:00
|
|
|
|
|
|
|
class TestYoutubeLists(unittest.TestCase):
|
2013-03-05 20:55:48 +01:00
|
|
|
def assertIsPlaylist(self,info):
|
|
|
|
"""Make sure the info has '_type' set to 'playlist'"""
|
|
|
|
self.assertEqual(info['_type'], 'playlist')
|
|
|
|
|
2012-12-11 16:45:46 +01:00
|
|
|
def test_youtube_playlist(self):
|
2013-06-23 20:41:17 +02:00
|
|
|
dl = FakeYDL()
|
2013-02-26 20:03:19 +01:00
|
|
|
ie = YoutubePlaylistIE(dl)
|
2013-03-05 20:55:48 +01:00
|
|
|
result = ie.extract('https://www.youtube.com/playlist?list=PLwiyx1dc3P2JR9N8gQaQN_BCvlSlap7re')[0]
|
|
|
|
self.assertIsPlaylist(result)
|
2013-04-20 18:57:05 +02:00
|
|
|
self.assertEqual(result['title'], 'ytdl test PL')
|
2013-03-05 20:55:48 +01:00
|
|
|
ytie_results = [YoutubeIE()._extract_id(url['url']) for url in result['entries']]
|
2013-02-26 20:07:38 +01:00
|
|
|
self.assertEqual(ytie_results, [ 'bV9L5Ht9LgY', 'FXxLjLQi3Fg', 'tU3Bgo5qJZE'])
|
2012-12-11 16:45:46 +01:00
|
|
|
|
2013-02-26 20:07:38 +01:00
|
|
|
def test_issue_673(self):
|
2013-06-23 20:41:17 +02:00
|
|
|
dl = FakeYDL()
|
2013-02-26 20:03:19 +01:00
|
|
|
ie = YoutubePlaylistIE(dl)
|
2013-03-05 20:55:48 +01:00
|
|
|
result = ie.extract('PLBB231211A4F62143')[0]
|
2013-06-15 11:20:22 +02:00
|
|
|
self.assertTrue(len(result['entries']) > 25)
|
2013-02-26 19:02:31 +01:00
|
|
|
|
2012-12-11 16:45:46 +01:00
|
|
|
def test_youtube_playlist_long(self):
|
2013-06-23 20:41:17 +02:00
|
|
|
dl = FakeYDL()
|
2013-02-26 20:03:19 +01:00
|
|
|
ie = YoutubePlaylistIE(dl)
|
2013-03-05 20:55:48 +01:00
|
|
|
result = ie.extract('https://www.youtube.com/playlist?list=UUBABnxM4Ar9ten8Mdjj1j0Q')[0]
|
|
|
|
self.assertIsPlaylist(result)
|
|
|
|
self.assertTrue(len(result['entries']) >= 799)
|
2012-12-11 16:45:46 +01:00
|
|
|
|
2013-02-26 10:39:26 +01:00
|
|
|
def test_youtube_playlist_with_deleted(self):
|
2013-02-26 19:02:31 +01:00
|
|
|
#651
|
2013-06-23 20:41:17 +02:00
|
|
|
dl = FakeYDL()
|
2013-02-26 20:03:19 +01:00
|
|
|
ie = YoutubePlaylistIE(dl)
|
2013-03-05 20:55:48 +01:00
|
|
|
result = ie.extract('https://www.youtube.com/playlist?list=PLwP_SiAcdui0KVebT0mU9Apz359a4ubsC')[0]
|
|
|
|
ytie_results = [YoutubeIE()._extract_id(url['url']) for url in result['entries']]
|
2013-02-26 20:07:38 +01:00
|
|
|
self.assertFalse('pElCt5oNDuI' in ytie_results)
|
|
|
|
self.assertFalse('KdPEApIVdWM' in ytie_results)
|
2013-04-27 10:41:52 +02:00
|
|
|
|
|
|
|
def test_youtube_playlist_empty(self):
|
2013-06-23 20:41:17 +02:00
|
|
|
dl = FakeYDL()
|
2013-04-27 10:41:52 +02:00
|
|
|
ie = YoutubePlaylistIE(dl)
|
|
|
|
result = ie.extract('https://www.youtube.com/playlist?list=PLtPgu7CB4gbZDA7i_euNxn75ISqxwZPYx')[0]
|
|
|
|
self.assertIsPlaylist(result)
|
|
|
|
self.assertEqual(len(result['entries']), 0)
|
2013-02-26 10:39:26 +01:00
|
|
|
|
2012-12-11 16:45:46 +01:00
|
|
|
def test_youtube_course(self):
|
2013-06-23 20:41:17 +02:00
|
|
|
dl = FakeYDL()
|
2013-02-26 20:03:19 +01:00
|
|
|
ie = YoutubePlaylistIE(dl)
|
2012-12-11 16:45:46 +01:00
|
|
|
# TODO find a > 100 (paginating?) videos course
|
2013-03-05 20:55:48 +01:00
|
|
|
result = ie.extract('https://www.youtube.com/course?list=ECUl4u3cNGP61MdtwGTqZA0MreSaDybji8')[0]
|
|
|
|
entries = result['entries']
|
|
|
|
self.assertEqual(YoutubeIE()._extract_id(entries[0]['url']), 'j9WZyLZCBzs')
|
|
|
|
self.assertEqual(len(entries), 25)
|
|
|
|
self.assertEqual(YoutubeIE()._extract_id(entries[-1]['url']), 'rYefUsYuEp0')
|
2012-12-11 16:45:46 +01:00
|
|
|
|
|
|
|
def test_youtube_channel(self):
|
2013-06-23 20:41:17 +02:00
|
|
|
dl = FakeYDL()
|
2013-04-20 00:06:28 +02:00
|
|
|
ie = YoutubeChannelIE(dl)
|
|
|
|
#test paginated channel
|
|
|
|
result = ie.extract('https://www.youtube.com/channel/UCKfVa3S1e4PHvxWcwyMMg8w')[0]
|
|
|
|
self.assertTrue(len(result['entries']) > 90)
|
|
|
|
#test autogenerated channel
|
|
|
|
result = ie.extract('https://www.youtube.com/channel/HCtnHdj3df7iM/videos')[0]
|
2013-04-28 15:50:29 +02:00
|
|
|
self.assertTrue(len(result['entries']) >= 18)
|
2012-12-11 16:45:46 +01:00
|
|
|
|
|
|
|
def test_youtube_user(self):
|
2013-06-23 20:41:17 +02:00
|
|
|
dl = FakeYDL()
|
2013-02-26 20:03:19 +01:00
|
|
|
ie = YoutubeUserIE(dl)
|
2013-03-05 20:55:48 +01:00
|
|
|
result = ie.extract('https://www.youtube.com/user/TheLinuxFoundation')[0]
|
|
|
|
self.assertTrue(len(result['entries']) >= 320)
|
2012-12-11 16:45:46 +01:00
|
|
|
|
2013-06-19 12:51:26 +02:00
|
|
|
def test_youtube_safe_search(self):
|
2013-06-23 20:41:17 +02:00
|
|
|
dl = FakeYDL()
|
2013-06-19 12:51:26 +02:00
|
|
|
ie = YoutubePlaylistIE(dl)
|
|
|
|
result = ie.extract('PLtPgu7CB4gbY9oDN3drwC3cMbJggS7dKl')[0]
|
|
|
|
self.assertEqual(len(result['entries']), 2)
|
|
|
|
|
2012-12-11 16:45:46 +01:00
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|