diff options
| author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-05-20 19:04:50 +0800 | 
|---|---|---|
| committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-05-20 19:04:50 +0800 | 
| commit | 31a70191e730a2a963c8b2e4d19921cad573ad8a (patch) | |
| tree | 58230244390d4ad8dc74ec1a4509c07b80a6b3f2 | |
| parent | ad96b4c8f56ba9873c62a2ce9916253f9b8a49ee (diff) | |
[cbc] Add the test case from #5156
| -rw-r--r-- | youtube_dl/extractor/cbc.py | 17 | 
1 files changed, 15 insertions, 2 deletions
diff --git a/youtube_dl/extractor/cbc.py b/youtube_dl/extractor/cbc.py index daf237ca8..22d5e72d5 100644 --- a/youtube_dl/extractor/cbc.py +++ b/youtube_dl/extractor/cbc.py @@ -91,7 +91,7 @@ class CBCIE(InfoExtractor):  class CBCPlayerIE(InfoExtractor):      _VALID_URL = r'(?:cbcplayer:|https?://(?:www\.)?cbc\.ca/(?:player/play/|i/caffeine/syndicate/\?mediaId=))(?P<id>\d+)' -    _TEST = { +    _TESTS = [{          'url': 'http://www.cbc.ca/player/play/2683190193',          'info_dict': {              'id': '2683190193', @@ -102,7 +102,20 @@ class CBCPlayerIE(InfoExtractor):              'upload_date': '20160210',              'uploader': 'CBCC-NEW',          }, -    } +    }, { +        # Redirected from http://www.cbc.ca/player/AudioMobile/All%20in%20a%20Weekend%20Montreal/ID/2657632011/ +        'url': 'http://www.cbc.ca/player/play/2657631896', +        'md5': 'e5e708c34ae6fca156aafe17c43e8b75', +        'info_dict': { +            'id': '2657631896', +            'ext': 'mp3', +            'title': 'CBC Montreal is organizing its first ever community hackathon!', +            'description': 'The modern technology we tend to depend on so heavily, is never without it\'s share of hiccups and headaches. Next weekend - CBC Montreal will be getting members of the public for its first Hackathon.', +            'timestamp': 1425704400, +            'upload_date': '20150307', +            'uploader': 'CBCC-NEW', +        }, +    }]      def _real_extract(self, url):          video_id = self._match_id(url)  | 
