mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-09 22:39:32 +01:00
[test/test_http] Update tests
After switching to HTML5 extraction helpers in generic.py, the result info_dict is always a playlist.
This commit is contained in:
parent
cea364f70c
commit
6f20b65e72
@ -87,7 +87,7 @@ def test_unicode_path_redirection(self):
|
||||
|
||||
ydl = YoutubeDL({'logger': FakeLogger()})
|
||||
r = ydl.extract_info('http://localhost:%d/302' % self.port)
|
||||
self.assertEqual(r['url'], 'http://localhost:%d/vid.mp4' % self.port)
|
||||
self.assertEqual(r['entries'][0]['url'], 'http://localhost:%d/vid.mp4' % self.port)
|
||||
|
||||
|
||||
class TestHTTPS(unittest.TestCase):
|
||||
@ -111,7 +111,7 @@ def test_nocheckcertificate(self):
|
||||
|
||||
ydl = YoutubeDL({'logger': FakeLogger(), 'nocheckcertificate': True})
|
||||
r = ydl.extract_info('https://localhost:%d/video.html' % self.port)
|
||||
self.assertEqual(r['url'], 'https://localhost:%d/vid.mp4' % self.port)
|
||||
self.assertEqual(r['entries'][0]['url'], 'https://localhost:%d/vid.mp4' % self.port)
|
||||
|
||||
|
||||
def _build_proxy_handler(name):
|
||||
|
Loading…
Reference in New Issue
Block a user