test subtitles

This commit is contained in:
Filippo Valsorda 2012-12-17 16:23:55 +01:00
parent 5910e210f4
commit 5e5ddcfbcf
2 changed files with 65 additions and 1 deletions

View file

@ -3,6 +3,7 @@
import sys
import unittest
import socket
import json
# Allow direct execution
import os
@ -11,6 +12,10 @@ sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
from youtube_dl.InfoExtractors import YoutubeUserIE,YoutubePlaylistIE
from youtube_dl.utils import *
PARAMETERS_FILE = os.path.join(os.path.dirname(os.path.abspath(__file__)), "parameters.json")
with io.open(PARAMETERS_FILE, encoding='utf-8') as pf:
parameters = json.load(pf)
# General configuration (from __init__, not very elegant...)
jar = compat_cookiejar.CookieJar()
cookie_processor = compat_urllib_request.HTTPCookieProcessor(jar)
@ -22,7 +27,7 @@ socket.setdefaulttimeout(300) # 5 minutes should be enough (famous last words)
class FakeDownloader(object):
def __init__(self):
self.result = []
self.params = {}
self.params = parameters
def to_screen(self, s):
print(s)
def trouble(self, s):