2021-06-03 05:43:42 -04:00
|
|
|
#!/usr/bin/env python3
|
2022-06-24 07:06:16 -04: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
|
2022-04-11 18:32:57 -04:00
|
|
|
|
2013-10-14 20:00:53 -04:00
|
|
|
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
|
2012-12-11 10:45:46 -05:00
|
|
|
|
2022-06-24 07:06:16 -04:00
|
|
|
from test.helper import FakeYDL, is_download_test
|
2022-04-11 18:32:57 -04:00
|
|
|
from yt_dlp.extractor import YoutubeIE, YoutubeTabIE
|
2022-11-09 03:58:44 -05:00
|
|
|
from yt_dlp.utils import ExtractorError
|
2012-12-11 10:45:46 -05:00
|
|
|
|
|
|
|
|
2021-07-23 10:48:15 -04:00
|
|
|
@is_download_test
|
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
|
2021-11-18 20:00:25 -05:00
|
|
|
ie = YoutubeTabIE(dl)
|
2022-02-03 10:51:42 -05:00
|
|
|
result = ie.extract('https://www.youtube.com/watch?v=OmJ-4B-mS-Y&list=PLydZ2Hrp_gPRJViZjLFKaBMgCQOYEEkyp&index=2')
|
2013-09-30 18:01:17 -04:00
|
|
|
self.assertEqual(result['_type'], 'url')
|
2022-02-03 10:51:42 -05:00
|
|
|
self.assertEqual(result['ie_key'], YoutubeIE.ie_key())
|
|
|
|
self.assertEqual(YoutubeIE.extract_id(result['url']), 'OmJ-4B-mS-Y')
|
2012-12-11 10:45:46 -05:00
|
|
|
|
2013-11-26 15:35:03 -05:00
|
|
|
def test_youtube_mix(self):
|
|
|
|
dl = FakeYDL()
|
2021-11-18 20:00:25 -05: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 11:07:57 -04:00
|
|
|
self.assertTrue(len(entries) >= 50)
|
2013-11-26 15:35:03 -05:00
|
|
|
original_video = entries[0]
|
2021-11-18 20:00:25 -05:00
|
|
|
self.assertEqual(original_video['id'], 'tyITL_exICo')
|
2013-11-26 15:35:03 -05:00
|
|
|
|
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]
|
2021-11-18 20:00:25 -05:00
|
|
|
self.assertEqual(video['_type'], 'url')
|
2021-02-19 15:44:36 -05:00
|
|
|
self.assertEqual(video['ie_key'], 'Youtube')
|
|
|
|
self.assertEqual(video['id'], 'BaW_jenozKc')
|
2021-11-18 20:00:25 -05:00
|
|
|
self.assertEqual(video['url'], 'https://www.youtube.com/watch?v=BaW_jenozKc')
|
2021-02-19 15:44:36 -05:00
|
|
|
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
|
|
|
|
2022-11-09 03:58:44 -05: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 06:42:56 -05:00
|
|
|
|
2012-12-11 10:45:46 -05:00
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|