2013-07-14 09:24:18 -06:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2013-10-17 16:27:51 -06:00
|
|
|
# Allow direct execution
|
|
|
|
import os
|
2013-07-14 09:24:18 -06:00
|
|
|
import sys
|
|
|
|
import unittest
|
2013-10-17 16:27:51 -06:00
|
|
|
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
2013-07-14 09:24:18 -06:00
|
|
|
|
2013-10-17 16:27:51 -06:00
|
|
|
from test.helper import FakeYDL
|
2013-07-14 09:24:18 -06:00
|
|
|
|
|
|
|
|
|
|
|
class YDL(FakeYDL):
|
|
|
|
def __init__(self):
|
|
|
|
super(YDL, self).__init__()
|
|
|
|
self.downloaded_info_dicts = []
|
2013-10-17 16:27:51 -06:00
|
|
|
|
2013-07-14 09:24:18 -06:00
|
|
|
def process_info(self, info_dict):
|
|
|
|
self.downloaded_info_dicts.append(info_dict)
|
|
|
|
|
2013-10-17 16:27:51 -06:00
|
|
|
|
2013-07-14 09:24:18 -06:00
|
|
|
class TestFormatSelection(unittest.TestCase):
|
|
|
|
def test_prefer_free_formats(self):
|
|
|
|
# Same resolution => download webm
|
|
|
|
ydl = YDL()
|
|
|
|
ydl.params['prefer_free_formats'] = True
|
2013-10-17 16:27:51 -06:00
|
|
|
formats = [
|
|
|
|
{u'ext': u'webm', u'height': 460},
|
|
|
|
{u'ext': u'mp4', u'height': 460},
|
|
|
|
]
|
2013-07-14 09:24:18 -06:00
|
|
|
info_dict = {u'formats': formats, u'extractor': u'test'}
|
|
|
|
ydl.process_ie_result(info_dict)
|
|
|
|
downloaded = ydl.downloaded_info_dicts[0]
|
|
|
|
self.assertEqual(downloaded[u'ext'], u'webm')
|
|
|
|
|
|
|
|
# Different resolution => download best quality (mp4)
|
|
|
|
ydl = YDL()
|
|
|
|
ydl.params['prefer_free_formats'] = True
|
2013-10-17 16:27:51 -06:00
|
|
|
formats = [
|
|
|
|
{u'ext': u'webm', u'height': 720},
|
|
|
|
{u'ext': u'mp4', u'height': 1080},
|
|
|
|
]
|
2013-07-14 09:24:18 -06:00
|
|
|
info_dict[u'formats'] = formats
|
|
|
|
ydl.process_ie_result(info_dict)
|
|
|
|
downloaded = ydl.downloaded_info_dicts[0]
|
|
|
|
self.assertEqual(downloaded[u'ext'], u'mp4')
|
|
|
|
|
|
|
|
# No prefer_free_formats => keep original formats order
|
|
|
|
ydl = YDL()
|
|
|
|
ydl.params['prefer_free_formats'] = False
|
2013-10-17 16:27:51 -06:00
|
|
|
formats = [
|
|
|
|
{u'ext': u'webm', u'height': 720},
|
|
|
|
{u'ext': u'flv', u'height': 720},
|
|
|
|
]
|
2013-07-14 09:24:18 -06:00
|
|
|
info_dict[u'formats'] = formats
|
|
|
|
ydl.process_ie_result(info_dict)
|
|
|
|
downloaded = ydl.downloaded_info_dicts[0]
|
|
|
|
self.assertEqual(downloaded[u'ext'], u'flv')
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|