diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-01-14 22:11:33 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-01-14 22:11:33 +0600 |
commit | 986986064ec102b0d97b4ab008ae38ede6358796 (patch) | |
tree | 546b3e8b5c30c2dfbc84cd8542798f37e01c5087 /youtube_dl/extractor/orf.py | |
parent | 4654c1d01613e26d782c95b13ce60e5fdd84892a (diff) |
[orf:fm4] Add test
Diffstat (limited to 'youtube_dl/extractor/orf.py')
-rw-r--r-- | youtube_dl/extractor/orf.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/youtube_dl/extractor/orf.py b/youtube_dl/extractor/orf.py index da598e7f7..c54775d54 100644 --- a/youtube_dl/extractor/orf.py +++ b/youtube_dl/extractor/orf.py @@ -172,6 +172,20 @@ class ORFFM4IE(InfoExtractor): IE_DESC = 'radio FM4' _VALID_URL = r'http://fm4\.orf\.at/(?:7tage/?#|player/)(?P<date>[0-9]+)/(?P<show>\w+)' + _TEST = { + 'url': 'http://fm4.orf.at/player/20160110/IS/', + 'md5': '01e736e8f1cef7e13246e880a59ad298', + 'info_dict': { + 'id': '2016-01-10_2100_tl_54_7DaysSun13_11244', + 'ext': 'mp3', + 'title': 'Im Sumpf', + 'description': 'md5:384c543f866c4e422a55f66a62d669cd', + 'duration': 7173, + 'timestamp': 1452456073, + 'upload_date': '20160110', + }, + } + def _real_extract(self, url): mobj = re.match(self._VALID_URL, url) show_date = mobj.group('date') |