diff options
| author | Sergey M <dstftw@gmail.com> | 2014-09-25 20:57:18 +0700 | 
|---|---|---|
| committer | Sergey M <dstftw@gmail.com> | 2014-09-25 20:57:18 +0700 | 
| commit | 9a0d98bb401a809eaed68623a8534b3874d079e8 (patch) | |
| tree | 0421634389f148aecaf632cebd40bbca7532f5db | |
| parent | fbd3162e4918a2e1321ebdcec47ac84a8b121fbe (diff) | |
[vube] Update tests
| -rw-r--r-- | youtube_dl/extractor/vube.py | 27 | 
1 files changed, 24 insertions, 3 deletions
| diff --git a/youtube_dl/extractor/vube.py b/youtube_dl/extractor/vube.py index bcca4897a..1b2f731e9 100644 --- a/youtube_dl/extractor/vube.py +++ b/youtube_dl/extractor/vube.py @@ -17,6 +17,24 @@ class VubeIE(InfoExtractor):      _TESTS = [          { +            'url': 'http://vube.com/trending/William+Wei/Y8NUZ69Tf7?t=s', +            'md5': 'e7aabe1f8f1aa826b9e4735e1f9cee42', +            'info_dict': { +                'id': 'Y8NUZ69Tf7', +                'ext': 'mp4', +                'title': 'Best Drummer Ever [HD]', +                'description': 'md5:2d63c4b277b85c2277761c2cf7337d71', +                'thumbnail': 're:^https?://.*\.jpg', +                'uploader': 'William', +                'timestamp': 1406876915, +                'upload_date': '20140801', +                'duration': 258.051, +                'like_count': int, +                'dislike_count': int, +                'comment_count': int, +                'categories': ['amazing', 'hd', 'best drummer ever', 'william wei', 'bucket drumming', 'street drummer', 'epic street drumming'], +            }, +        }, {              'url': 'http://vube.com/Chiara+Grispo+Video+Channel/YL2qNPkqon',              'md5': 'db7aba89d4603dadd627e9d1973946fe',              'info_dict': { @@ -33,7 +51,8 @@ class VubeIE(InfoExtractor):                  'dislike_count': int,                  'comment_count': int,                  'categories': ['pop', 'music', 'cover', 'singing', 'jessie j', 'price tag', 'chiara grispo'], -            } +            }, +            'skip': 'Removed due to DMCA',          },          {              'url': 'http://vube.com/SerainaMusic/my-7-year-old-sister-and-i-singing-alive-by-krewella/UeBhTudbfS?t=s&n=1', @@ -52,7 +71,8 @@ class VubeIE(InfoExtractor):                  'dislike_count': int,                  'comment_count': int,                  'categories': ['seraina', 'jessica', 'krewella', 'alive'], -            } +            }, +            'skip': 'Removed due to DMCA',          }, {              'url': 'http://vube.com/vote/Siren+Gene/0nmsMY5vEq?n=2&t=s',              'md5': '0584fc13b50f887127d9d1007589d27f', @@ -70,7 +90,8 @@ class VubeIE(InfoExtractor):                  'dislike_count': int,                  'comment_count': int,                  'categories': ['let it go', 'cover', 'idina menzel', 'frozen', 'singing', 'disney', 'siren gene'], -            } +            }, +            'skip': 'Removed due to DMCA',          }      ] | 
