[videott] Improve _VALID_URL and add test
authorSergey M․ <dstftw@gmail.com>
Sat, 24 Jan 2015 10:11:40 +0000 (16:11 +0600)
committerSergey M․ <dstftw@gmail.com>
Sat, 24 Jan 2015 10:11:40 +0000 (16:11 +0600)
youtube_dl/extractor/videott.py

index 6f8084140f30d41f4b7c7e8ab7e6af2c97dbd89b..ececc7ee0118932716ca9bdb06779cf94e6dc0ec 100644 (file)
@@ -13,9 +13,9 @@ from ..utils import (
 class VideoTtIE(InfoExtractor):
     ID_NAME = 'video.tt'
     IE_DESC = 'video.tt - Your True Tube'
-    _VALID_URL = r'http://(?:www\.)?video\.tt/(?:video\/|embed\/|watch_video\.php\?v=)(?P<id>[\da-zA-Z]{9})'
+    _VALID_URL = r'http://(?:www\.)?video\.tt/(?:(?:video|embed)/|watch_video\.php\?v=)(?P<id>[\da-zA-Z]{9})'
 
-    _TEST = {
+    _TESTS = [{
         'url': 'http://www.video.tt/watch_video.php?v=amd5YujV8',
         'md5': 'b13aa9e2f267effb5d1094443dff65ba',
         'info_dict': {
@@ -26,7 +26,10 @@ class VideoTtIE(InfoExtractor):
             'upload_date': '20130827',
             'uploader': 'joseph313',
         }
-    }
+    }, {
+        'url': 'http://video.tt/embed/amd5YujV8',
+        'only_matching': True,
+    }]
 
     def _real_extract(self, url):
         mobj = re.match(self._VALID_URL, url)