2021-06-03 05:43:42 -04:00
|
|
|
#!/usr/bin/env python3
|
2014-11-26 14:01:20 -05:00
|
|
|
from __future__ import unicode_literals
|
2012-12-11 10:45:46 -05:00
|
|
|
|
2013-10-14 20:00:53 -04:00
|
|
|
# Allow direct execution
|
|
|
|
import os
|
2012-12-11 10:45:46 -05:00
|
|
|
import sys
|
|
|
|
import unittest
|
2013-10-14 20:00:53 -04:00
|
|
|
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
|
2013-11-24 21:47:32 -05:00
|
|
|
from test.helper import FakeYDL
|
2012-12-11 10:45:46 -05:00
|
|
|
|
|
|
|
|
2021-02-24 13:45:56 -05:00
|
|
|
from yt_dlp.extractor import (
|
2013-10-14 20:00:53 -04:00
|
|
|
YoutubePlaylistIE,
|
2021-02-19 15:44:36 -05:00
|
|
|
YoutubeTabIE,
|
2013-10-14 20:00:53 -04:00
|
|
|
YoutubeIE,
|
|
|
|
)
|
2012-12-11 10:45:46 -05:00
|
|
|
|
|
|
|
|
|
|
|
class TestYoutubeLists(unittest.TestCase):
|
2013-10-14 20:00:53 -04:00
|
|
|
def assertIsPlaylist(self, info):
|
2013-03-05 14:55:48 -05:00
|
|
|
"""Make sure the info has '_type' set to 'playlist'"""
|
|
|
|
self.assertEqual(info['_type'], 'playlist')
|
|
|
|
|
2013-09-30 18:01:17 -04: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 13:20:11 -05:00
|
|
|
self.assertEqual(YoutubeIE().extract_id(result['url']), 'FXxLjLQi3Fg')
|
2014-11-23 14:41:03 -05:00
|
|
|
|
2012-12-11 10:45:46 -05:00
|
|
|
def test_youtube_course(self):
|
2013-06-23 14:41:17 -04:00
|
|
|
dl = FakeYDL()
|
2013-02-26 14:03:19 -05:00
|
|
|
ie = YoutubePlaylistIE(dl)
|
2012-12-11 10:45:46 -05:00
|
|
|
# TODO find a > 100 (paginating?) videos course
|
2013-11-13 10:21:24 -05:00
|
|
|
result = ie.extract('https://www.youtube.com/course?list=ECUl4u3cNGP61MdtwGTqZA0MreSaDybji8')
|
2016-01-31 06:49:54 -05:00
|
|
|
entries = list(result['entries'])
|
2014-02-08 13:20:11 -05:00
|
|
|
self.assertEqual(YoutubeIE().extract_id(entries[0]['url']), 'j9WZyLZCBzs')
|
2013-03-05 14:55:48 -05:00
|
|
|
self.assertEqual(len(entries), 25)
|
2014-02-08 13:20:11 -05:00
|
|
|
self.assertEqual(YoutubeIE().extract_id(entries[-1]['url']), 'rYefUsYuEp0')
|
2012-12-11 10:45:46 -05:00
|
|
|
|
2013-11-26 15:35:03 -05:00
|
|
|
def test_youtube_mix(self):
|
|
|
|
dl = FakeYDL()
|
|
|
|
ie = YoutubePlaylistIE(dl)
|
2014-06-07 07:43:27 -04:00
|
|
|
result = ie.extract('https://www.youtube.com/watch?v=W01L70IGBgE&index=2&list=RDOQpdSVF_k_w')
|
2013-11-26 15:35:03 -05:00
|
|
|
entries = result['entries']
|
2016-04-17 11:07:57 -04:00
|
|
|
self.assertTrue(len(entries) >= 50)
|
2013-11-26 15:35:03 -05:00
|
|
|
original_video = entries[0]
|
2014-06-07 07:43:27 -04:00
|
|
|
self.assertEqual(original_video['id'], 'OQpdSVF_k_w')
|
2013-11-26 15:35:03 -05:00
|
|
|
|
2014-02-06 13:46:26 -05:00
|
|
|
def test_youtube_toptracks(self):
|
2014-02-25 08:11:01 -05:00
|
|
|
print('Skipping: The playlist page gives error 500')
|
|
|
|
return
|
2014-02-06 13:46:26 -05:00
|
|
|
dl = FakeYDL()
|
|
|
|
ie = YoutubePlaylistIE(dl)
|
|
|
|
result = ie.extract('https://www.youtube.com/playlist?list=MCUS')
|
|
|
|
entries = result['entries']
|
|
|
|
self.assertEqual(len(entries), 100)
|
|
|
|
|
2021-02-19 15:44:36 -05:00
|
|
|
def test_youtube_flat_playlist_extraction(self):
|
2015-10-17 14:27:06 -04:00
|
|
|
dl = FakeYDL()
|
|
|
|
dl.params['extract_flat'] = True
|
2021-02-19 15:44:36 -05:00
|
|
|
ie = YoutubeTabIE(dl)
|
|
|
|
result = ie.extract('https://www.youtube.com/playlist?list=PL4lCao7KL_QFVb7Iudeipvc2BCavECqzc')
|
2015-10-17 14:27:06 -04:00
|
|
|
self.assertIsPlaylist(result)
|
2021-02-19 15:44:36 -05:00
|
|
|
entries = list(result['entries'])
|
|
|
|
self.assertTrue(len(entries) == 1)
|
|
|
|
video = entries[0]
|
|
|
|
self.assertEqual(video['_type'], 'url_transparent')
|
|
|
|
self.assertEqual(video['ie_key'], 'Youtube')
|
|
|
|
self.assertEqual(video['id'], 'BaW_jenozKc')
|
|
|
|
self.assertEqual(video['url'], 'BaW_jenozKc')
|
|
|
|
self.assertEqual(video['title'], 'youtube-dl test video "\'/\\ä↭𝕐')
|
|
|
|
self.assertEqual(video['duration'], 10)
|
|
|
|
self.assertEqual(video['uploader'], 'Philipp Hagemeister')
|
2015-10-17 14:27:06 -04:00
|
|
|
|
2016-11-17 06:42:56 -05:00
|
|
|
|
2012-12-11 10:45:46 -05:00
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|