Update _TESTS for MTV sites
[youtube-dl] / youtube_dl / extractor / southpark.py
1 # encoding: utf-8
2 from __future__ import unicode_literals
3
4 from .mtv import MTVServicesInfoExtractor
5
6
7 class SouthParkIE(MTVServicesInfoExtractor):
8     IE_NAME = 'southpark.cc.com'
9     _VALID_URL = r'https?://(?:www\.)?(?P<url>southpark\.cc\.com/(?:clips|full-episodes)/(?P<id>.+?)(\?|#|$))'
10
11     _FEED_URL = 'http://www.southparkstudios.com/feeds/video-player/mrss'
12
13     _TESTS = [{
14         'url': 'http://southpark.cc.com/clips/104437/bat-daded#tab=featured',
15         'info_dict': {
16             'id': 'a7bff6c2-ed00-11e0-aca6-0026b9414f30',
17             'ext': 'mp4',
18             'title': 'South Park|Bat Daded',
19             'description': 'Randy disqualifies South Park by getting into a fight with Bat Dad.',
20             'timestamp': 1112760000,
21             'upload_date': '20050406',
22         },
23     }]
24
25
26 class SouthParkEsIE(SouthParkIE):
27     IE_NAME = 'southpark.cc.com:español'
28     _VALID_URL = r'https?://(?:www\.)?(?P<url>southpark\.cc\.com/episodios-en-espanol/(?P<id>.+?)(\?|#|$))'
29     _LANG = 'es'
30
31     _TESTS = [{
32         'url': 'http://southpark.cc.com/episodios-en-espanol/s01e01-cartman-consigue-una-sonda-anal#source=351c1323-0b96-402d-a8b9-40d01b2e9bde&position=1&sort=!airdate',
33         'info_dict': {
34             'title': 'Cartman Consigue Una Sonda Anal',
35             'description': 'Cartman Consigue Una Sonda Anal',
36         },
37         'playlist_count': 4,
38     }]
39
40
41 class SouthParkDeIE(SouthParkIE):
42     IE_NAME = 'southpark.de'
43     _VALID_URL = r'https?://(?:www\.)?(?P<url>southpark\.de/(?:clips|alle-episoden)/(?P<id>.+?)(\?|#|$))'
44     _FEED_URL = 'http://www.southpark.de/feeds/video-player/mrss/'
45
46     _TESTS = [{
47         'url': 'http://www.southpark.de/clips/uygssh/the-government-wont-respect-my-privacy#tab=featured',
48         'info_dict': {
49             'id': '85487c96-b3b9-4e39-9127-ad88583d9bf2',
50             'ext': 'mp4',
51             'title': 'South Park|The Government Won\'t Respect My Privacy',
52             'description': 'Cartman explains the benefits of "Shitter" to Stan, Kyle and Craig.',
53             'timestamp': 1380160800,
54             'upload_date': '20130926',
55         },
56     }, {
57         # non-ASCII characters in initial URL
58         'url': 'http://www.southpark.de/alle-episoden/s18e09-hashtag-aufwärmen',
59         'info_dict': {
60             'title': 'Hashtag „Aufwärmen“',
61             'description': 'Kyle will mit seinem kleinen Bruder Ike Videospiele spielen. Als der nicht mehr mit ihm spielen will, hat Kyle Angst, dass er die Kids von heute nicht mehr versteht.',
62         },
63         'playlist_count': 3,
64     }, {
65         # non-ASCII characters in redirect URL
66         'url': 'http://www.southpark.de/alle-episoden/s18e09',
67         'info_dict': {
68             'title': 'Hashtag „Aufwärmen“',
69             'description': 'Kyle will mit seinem kleinen Bruder Ike Videospiele spielen. Als der nicht mehr mit ihm spielen will, hat Kyle Angst, dass er die Kids von heute nicht mehr versteht.',
70         },
71         'playlist_count': 3,
72     }]
73
74
75 class SouthParkNlIE(SouthParkIE):
76     IE_NAME = 'southpark.nl'
77     _VALID_URL = r'https?://(?:www\.)?(?P<url>southpark\.nl/(?:clips|full-episodes)/(?P<id>.+?)(\?|#|$))'
78     _FEED_URL = 'http://www.southpark.nl/feeds/video-player/mrss/'
79
80     _TESTS = [{
81         'url': 'http://www.southpark.nl/full-episodes/s18e06-freemium-isnt-free',
82         'info_dict': {
83             'title': 'Freemium Isn\'t Free',
84             'description': 'Stan is addicted to the new Terrance and Phillip mobile game.',
85         },
86         'playlist_mincount': 3,
87     }]
88
89
90 class SouthParkDkIE(SouthParkIE):
91     IE_NAME = 'southparkstudios.dk'
92     _VALID_URL = r'https?://(?:www\.)?(?P<url>southparkstudios\.dk/(?:clips|full-episodes)/(?P<id>.+?)(\?|#|$))'
93     _FEED_URL = 'http://www.southparkstudios.dk/feeds/video-player/mrss/'
94
95     _TESTS = [{
96         'url': 'http://www.southparkstudios.dk/full-episodes/s18e07-grounded-vindaloop',
97         'info_dict': {
98             'title': 'Grounded Vindaloop',
99             'description': 'Butters is convinced he\'s living in a virtual reality.',
100         },
101         'playlist_mincount': 3,
102     }]