2021-06-03 09:43:42 +00:00
|
|
|
#!/usr/bin/env python3
|
2022-06-24 11:06:16 +00:00
|
|
|
|
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
|
2022-04-11 22:32:57 +00:00
|
|
|
|
2013-10-15 00:00:53 +00:00
|
|
|
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
|
2012-12-11 15:45:46 +00:00
|
|
|
|
2022-06-24 11:06:16 +00:00
|
|
|
from test.helper import FakeYDL, is_download_test
|
2022-04-11 22:32:57 +00:00
|
|
|
from yt_dlp.extractor import YoutubeIE, YoutubeTabIE
|
2022-11-09 08:58:44 +00:00
|
|
|
from yt_dlp.utils import ExtractorError
|
2012-12-11 15:45:46 +00:00
|
|
|
|
|
|
|
|
2021-07-23 14:48:15 +00:00
|
|
|
@is_download_test
|
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
|
2021-11-19 01:00:25 +00:00
|
|
|
ie = YoutubeTabIE(dl)
|
2022-02-03 15:51:42 +00:00
|
|
|
result = ie.extract('https://www.youtube.com/watch?v=OmJ-4B-mS-Y&list=PLydZ2Hrp_gPRJViZjLFKaBMgCQOYEEkyp&index=2')
|
2013-09-30 22:01:17 +00:00
|
|
|
self.assertEqual(result['_type'], 'url')
|
2022-02-03 15:51:42 +00:00
|
|
|
self.assertEqual(result['ie_key'], YoutubeIE.ie_key())
|
|
|
|
self.assertEqual(YoutubeIE.extract_id(result['url']), 'OmJ-4B-mS-Y')
|
2012-12-11 15:45:46 +00:00
|
|
|
|
2013-11-26 20:35:03 +00:00
|
|
|
def test_youtube_mix(self):
|
|
|
|
dl = FakeYDL()
|
2021-11-19 01:00:25 +00:00
|
|
|
ie = YoutubeTabIE(dl)
|
|
|
|
result = ie.extract('https://www.youtube.com/watch?v=tyITL_exICo&list=RDCLAK5uy_kLWIr9gv1XLlPbaDS965-Db4TrBoUTxQ8')
|
|
|
|
entries = list(result['entries'])
|
2016-04-17 15:07:57 +00:00
|
|
|
self.assertTrue(len(entries) >= 50)
|
2013-11-26 20:35:03 +00:00
|
|
|
original_video = entries[0]
|
2021-11-19 01:00:25 +00:00
|
|
|
self.assertEqual(original_video['id'], 'tyITL_exICo')
|
2013-11-26 20:35:03 +00:00
|
|
|
|
2021-02-19 20:44:36 +00:00
|
|
|
def test_youtube_flat_playlist_extraction(self):
|
2015-10-17 18:27:06 +00:00
|
|
|
dl = FakeYDL()
|
|
|
|
dl.params['extract_flat'] = True
|
2021-02-19 20:44:36 +00:00
|
|
|
ie = YoutubeTabIE(dl)
|
|
|
|
result = ie.extract('https://www.youtube.com/playlist?list=PL4lCao7KL_QFVb7Iudeipvc2BCavECqzc')
|
2015-10-17 18:27:06 +00:00
|
|
|
self.assertIsPlaylist(result)
|
2021-02-19 20:44:36 +00:00
|
|
|
entries = list(result['entries'])
|
|
|
|
self.assertTrue(len(entries) == 1)
|
|
|
|
video = entries[0]
|
2021-11-19 01:00:25 +00:00
|
|
|
self.assertEqual(video['_type'], 'url')
|
2021-02-19 20:44:36 +00:00
|
|
|
self.assertEqual(video['ie_key'], 'Youtube')
|
|
|
|
self.assertEqual(video['id'], 'BaW_jenozKc')
|
2021-11-19 01:00:25 +00:00
|
|
|
self.assertEqual(video['url'], 'https://www.youtube.com/watch?v=BaW_jenozKc')
|
2021-02-19 20:44:36 +00:00
|
|
|
self.assertEqual(video['title'], 'youtube-dl test video "\'/\\ä↭𝕐')
|
|
|
|
self.assertEqual(video['duration'], 10)
|
|
|
|
self.assertEqual(video['uploader'], 'Philipp Hagemeister')
|
2015-10-17 18:27:06 +00:00
|
|
|
|
2022-11-09 08:58:44 +00:00
|
|
|
def test_youtube_channel_no_uploads(self):
|
|
|
|
dl = FakeYDL()
|
|
|
|
dl.params['extract_flat'] = True
|
|
|
|
ie = YoutubeTabIE(dl)
|
|
|
|
# no uploads
|
|
|
|
with self.assertRaisesRegex(ExtractorError, r'no uploads'):
|
|
|
|
ie.extract('https://www.youtube.com/channel/UC2yXPzFejc422buOIzn_0CA')
|
|
|
|
|
|
|
|
# no uploads and no UCID given
|
|
|
|
with self.assertRaisesRegex(ExtractorError, r'no uploads'):
|
|
|
|
ie.extract('https://www.youtube.com/news')
|
|
|
|
|
2016-11-17 11:42:56 +00:00
|
|
|
|
2012-12-11 15:45:46 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|