2012-12-11 15:45:46 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2013-10-15 00:00:53 +00:00
|
|
|
# Allow direct execution
|
|
|
|
import os
|
2012-12-11 15:45:46 +00:00
|
|
|
import sys
|
|
|
|
import unittest
|
2013-10-15 00:00:53 +00:00
|
|
|
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
|
2013-11-25 02:47:32 +00:00
|
|
|
from test.helper import FakeYDL
|
2012-12-11 15:45:46 +00:00
|
|
|
|
|
|
|
|
2013-10-15 00:00:53 +00:00
|
|
|
from youtube_dl.extractor import (
|
|
|
|
YoutubePlaylistIE,
|
|
|
|
YoutubeIE,
|
|
|
|
YoutubeChannelIE,
|
|
|
|
YoutubeShowIE,
|
2013-11-30 13:56:51 +00:00
|
|
|
YoutubeTopListIE,
|
2014-03-04 02:32:28 +00:00
|
|
|
YoutubeSearchURLIE,
|
2013-10-15 00:00:53 +00:00
|
|
|
)
|
2012-12-11 15:45:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
class TestYoutubeLists(unittest.TestCase):
|
2013-10-15 00:00:53 +00:00
|
|
|
def assertIsPlaylist(self, info):
|
2013-03-05 19:55:48 +00:00
|
|
|
"""Make sure the info has '_type' set to 'playlist'"""
|
|
|
|
self.assertEqual(info['_type'], 'playlist')
|
|
|
|
|
2013-09-30 22:01:17 +00:00
|
|
|
def test_youtube_playlist_noplaylist(self):
|
|
|
|
dl = FakeYDL()
|
|
|
|
dl.params['noplaylist'] = True
|
|
|
|
ie = YoutubePlaylistIE(dl)
|
|
|
|
result = ie.extract('https://www.youtube.com/watch?v=FXxLjLQi3Fg&list=PLwiyx1dc3P2JR9N8gQaQN_BCvlSlap7re')
|
|
|
|
self.assertEqual(result['_type'], 'url')
|
2014-02-08 18:20:11 +00:00
|
|
|
self.assertEqual(YoutubeIE().extract_id(result['url']), 'FXxLjLQi3Fg')
|
2014-09-13 05:31:48 +00:00
|
|
|
|
2012-12-11 15:45:46 +00:00
|
|
|
def test_youtube_course(self):
|
2013-06-23 18:41:17 +00:00
|
|
|
dl = FakeYDL()
|
2013-02-26 19:03:19 +00:00
|
|
|
ie = YoutubePlaylistIE(dl)
|
2012-12-11 15:45:46 +00:00
|
|
|
# TODO find a > 100 (paginating?) videos course
|
2013-11-13 15:21:24 +00:00
|
|
|
result = ie.extract('https://www.youtube.com/course?list=ECUl4u3cNGP61MdtwGTqZA0MreSaDybji8')
|
2013-03-05 19:55:48 +00:00
|
|
|
entries = result['entries']
|
2014-02-08 18:20:11 +00:00
|
|
|
self.assertEqual(YoutubeIE().extract_id(entries[0]['url']), 'j9WZyLZCBzs')
|
2013-03-05 19:55:48 +00:00
|
|
|
self.assertEqual(len(entries), 25)
|
2014-02-08 18:20:11 +00:00
|
|
|
self.assertEqual(YoutubeIE().extract_id(entries[-1]['url']), 'rYefUsYuEp0')
|
2012-12-11 15:45:46 +00:00
|
|
|
|
2013-11-26 20:35:03 +00:00
|
|
|
def test_youtube_mix(self):
|
|
|
|
dl = FakeYDL()
|
|
|
|
ie = YoutubePlaylistIE(dl)
|
2014-06-07 11:43:27 +00:00
|
|
|
result = ie.extract('https://www.youtube.com/watch?v=W01L70IGBgE&index=2&list=RDOQpdSVF_k_w')
|
2013-11-26 20:35:03 +00:00
|
|
|
entries = result['entries']
|
|
|
|
self.assertTrue(len(entries) >= 20)
|
|
|
|
original_video = entries[0]
|
2014-06-07 11:43:27 +00:00
|
|
|
self.assertEqual(original_video['id'], 'OQpdSVF_k_w')
|
2013-11-26 20:35:03 +00:00
|
|
|
|
2014-02-06 18:46:26 +00:00
|
|
|
def test_youtube_toptracks(self):
|
2014-02-25 13:11:01 +00:00
|
|
|
print('Skipping: The playlist page gives error 500')
|
|
|
|
return
|
2014-02-06 18:46:26 +00:00
|
|
|
dl = FakeYDL()
|
|
|
|
ie = YoutubePlaylistIE(dl)
|
|
|
|
result = ie.extract('https://www.youtube.com/playlist?list=MCUS')
|
|
|
|
entries = result['entries']
|
|
|
|
self.assertEqual(len(entries), 100)
|
|
|
|
|
2012-12-11 15:45:46 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|