2012-12-12 00:45:46 +09:00
|
|
|
#!/usr/bin/env python
|
2021-10-28 23:55:38 +09:00
|
|
|
# -*- coding: utf-8 -*-
|
2014-11-27 04:01:20 +09:00
|
|
|
from __future__ import unicode_literals
|
2012-12-12 00:45:46 +09:00
|
|
|
|
2013-10-15 09:00:53 +09:00
|
|
|
# Allow direct execution
|
|
|
|
import os
|
2012-12-12 00:45:46 +09:00
|
|
|
import sys
|
|
|
|
import unittest
|
2013-10-15 09:00:53 +09:00
|
|
|
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
|
2013-11-25 11:47:32 +09:00
|
|
|
from test.helper import FakeYDL
|
2012-12-12 00:45:46 +09:00
|
|
|
|
2013-10-15 09:00:53 +09:00
|
|
|
from youtube_dl.extractor import (
|
2021-10-28 23:55:38 +09:00
|
|
|
YoutubeIE,
|
2013-10-15 09:00:53 +09:00
|
|
|
YoutubePlaylistIE,
|
2021-02-16 04:38:41 +09:00
|
|
|
YoutubeTabIE,
|
2013-10-15 09:00:53 +09:00
|
|
|
)
|
2012-12-12 00:45:46 +09:00
|
|
|
|
|
|
|
|
|
|
|
class TestYoutubeLists(unittest.TestCase):
|
2013-10-15 09:00:53 +09:00
|
|
|
def assertIsPlaylist(self, info):
|
2013-03-06 04:55:48 +09:00
|
|
|
"""Make sure the info has '_type' set to 'playlist'"""
|
|
|
|
self.assertEqual(info['_type'], 'playlist')
|
|
|
|
|
2013-10-01 07:01:17 +09:00
|
|
|
def test_youtube_playlist_noplaylist(self):
|
|
|
|
dl = FakeYDL()
|
|
|
|
dl.params['noplaylist'] = True
|
2021-10-28 23:55:38 +09:00
|
|
|
dl.params['format'] = 'best'
|
2013-10-01 07:01:17 +09:00
|
|
|
ie = YoutubePlaylistIE(dl)
|
|
|
|
result = ie.extract('https://www.youtube.com/watch?v=FXxLjLQi3Fg&list=PLwiyx1dc3P2JR9N8gQaQN_BCvlSlap7re')
|
|
|
|
self.assertEqual(result['_type'], 'url')
|
2021-10-28 23:55:38 +09:00
|
|
|
result = dl.extract_info(result['url'], download=False, ie_key=result.get('ie_key'), process=False)
|
2014-02-09 03:20:11 +09:00
|
|
|
self.assertEqual(YoutubeIE().extract_id(result['url']), 'FXxLjLQi3Fg')
|
2014-11-24 04:41:03 +09:00
|
|
|
|
2013-11-27 05:35:03 +09:00
|
|
|
def test_youtube_mix(self):
|
|
|
|
dl = FakeYDL()
|
2021-10-29 11:03:00 +09:00
|
|
|
dl.params['format'] = 'best'
|
|
|
|
ie = YoutubeTabIE(dl)
|
2022-02-04 13:09:23 +09:00
|
|
|
result = dl.extract_info('https://www.youtube.com/watch?v=tyITL_exICo&list=RDCLAK5uy_kLWIr9gv1XLlPbaDS965-Db4TrBoUTxQ8',
|
2021-10-29 11:03:00 +09:00
|
|
|
download=False, ie_key=ie.ie_key(), process=True)
|
|
|
|
entries = (result or {}).get('entries', [{'id': 'not_found', }])
|
2022-02-04 13:09:23 +09:00
|
|
|
self.assertTrue(len(entries) >= 25)
|
2013-11-27 05:35:03 +09:00
|
|
|
original_video = entries[0]
|
2022-02-04 13:09:23 +09:00
|
|
|
self.assertEqual(original_video['id'], 'tyITL_exICo')
|
2013-11-27 05:35:03 +09:00
|
|
|
|
2021-02-16 04:38:41 +09:00
|
|
|
def test_youtube_flat_playlist_extraction(self):
|
2015-10-18 03:27:06 +09:00
|
|
|
dl = FakeYDL()
|
|
|
|
dl.params['extract_flat'] = True
|
2021-02-16 04:38:41 +09:00
|
|
|
ie = YoutubeTabIE(dl)
|
|
|
|
result = ie.extract('https://www.youtube.com/playlist?list=PL4lCao7KL_QFVb7Iudeipvc2BCavECqzc')
|
2015-10-18 03:27:06 +09:00
|
|
|
self.assertIsPlaylist(result)
|
2021-02-16 04:38:41 +09:00
|
|
|
entries = list(result['entries'])
|
|
|
|
self.assertTrue(len(entries) == 1)
|
|
|
|
video = entries[0]
|
2021-11-01 13:44:57 +09:00
|
|
|
self.assertEqual(video['_type'], 'url')
|
2021-02-16 04:38:41 +09:00
|
|
|
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-18 03:27:06 +09:00
|
|
|
|
2016-11-17 20:42:56 +09:00
|
|
|
|
2012-12-12 00:45:46 +09:00
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|