diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2012-12-20 13:11:52 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2012-12-20 13:11:52 +0100 |
commit | 3cc687d486c5fc4710b6fdec4340b7635cec91c9 (patch) | |
tree | 4e52dae3cd780ca38cb73ec6171a8af9d83f46ac /test/test_write_info_json.py | |
parent | cdb30764458d2ff8a0572b874519c25f0ebaa06f (diff) |
test write_info_json
Diffstat (limited to 'test/test_write_info_json.py')
-rw-r--r-- | test/test_write_info_json.py | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/test/test_write_info_json.py b/test/test_write_info_json.py new file mode 100644 index 000000000..e59fee91c --- /dev/null +++ b/test/test_write_info_json.py @@ -0,0 +1,55 @@ +#!/usr/bin/env python + +import os +import socket +import sys +import unittest + +# Allow direct execution +sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) + +import youtube_dl.FileDownloader +import youtube_dl.InfoExtractors +from youtube_dl.utils import * + +PARAMETERS_FILE = os.path.join(os.path.dirname(os.path.abspath(__file__)), "parameters.json") + +# General configuration (from __init__, not very elegant...) +jar = compat_cookiejar.CookieJar() +cookie_processor = compat_urllib_request.HTTPCookieProcessor(jar) +proxy_handler = compat_urllib_request.ProxyHandler() +opener = compat_urllib_request.build_opener(proxy_handler, cookie_processor, YoutubeDLHandler()) +compat_urllib_request.install_opener(opener) +socket.setdefaulttimeout(300) # 5 minutes should be enough (famous last words) + +class FileDownloader(youtube_dl.FileDownloader): + def __init__(self, *args, **kwargs): + youtube_dl.FileDownloader.__init__(self, *args, **kwargs) + self.to_stderr = self.to_screen + +with io.open(PARAMETERS_FILE, encoding='utf-8') as pf: + params = json.load(pf) +params['writeinfojson'] = True +params['skip_download'] = True + +TEST_ID = 'BaW_jenozKc' +INFO_JSON_FILE = TEST_ID + '.mp4.info.json' + +class TestInfoJSON(unittest.TestCase): + def setUp(self): + # Clear old files + self.tearDown() + + def test_info_json(self): + ie = youtube_dl.InfoExtractors.YoutubeIE() + fd = FileDownloader(params) + fd.add_info_extractor(ie) + fd.download([TEST_ID]) + self.assertTrue(os.path.exists(INFO_JSON_FILE)) + + def tearDown(self): + if os.path.exists(INFO_JSON_FILE): + os.remove(INFO_JSON_FILE) + +if __name__ == '__main__': + unittest.main() |