diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/test_all_urls.py | 18 | ||||
| -rw-r--r-- | test/test_youtube_subtitles.py | 12 | ||||
| -rw-r--r-- | test/tests.json | 27 | 
3 files changed, 55 insertions, 2 deletions
| diff --git a/test/test_all_urls.py b/test/test_all_urls.py index a40360122..dd67286a7 100644 --- a/test/test_all_urls.py +++ b/test/test_all_urls.py @@ -7,7 +7,7 @@ import unittest  import os  sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) -from youtube_dl.InfoExtractors import YoutubeIE, YoutubePlaylistIE, YoutubeChannelIE +from youtube_dl.InfoExtractors import YoutubeIE, YoutubePlaylistIE, YoutubeChannelIE, JustinTVIE  class TestAllURLsMatching(unittest.TestCase):      def test_youtube_playlist_matching(self): @@ -29,6 +29,22 @@ class TestAllURLsMatching(unittest.TestCase):          self.assertTrue(YoutubeChannelIE.suitable('https://www.youtube.com/channel/HCtnHdj3df7iM?feature=gb_ch_rec'))          self.assertTrue(YoutubeChannelIE.suitable('https://www.youtube.com/channel/HCtnHdj3df7iM/videos')) +    def test_justin_tv_channelid_matching(self): +        self.assertTrue(JustinTVIE.suitable(u"justin.tv/vanillatv")) +        self.assertTrue(JustinTVIE.suitable(u"twitch.tv/vanillatv")) +        self.assertTrue(JustinTVIE.suitable(u"www.justin.tv/vanillatv")) +        self.assertTrue(JustinTVIE.suitable(u"www.twitch.tv/vanillatv")) +        self.assertTrue(JustinTVIE.suitable(u"http://www.justin.tv/vanillatv")) +        self.assertTrue(JustinTVIE.suitable(u"http://www.twitch.tv/vanillatv")) +        self.assertTrue(JustinTVIE.suitable(u"http://www.justin.tv/vanillatv/")) +        self.assertTrue(JustinTVIE.suitable(u"http://www.twitch.tv/vanillatv/")) + +    def test_justintv_videoid_matching(self): +        self.assertTrue(JustinTVIE.suitable(u"http://www.twitch.tv/vanillatv/b/328087483")) + +    def test_justin_tv_chapterid_matching(self): +        self.assertTrue(JustinTVIE.suitable(u"http://www.twitch.tv/tsm_theoddone/c/2349361")) +      def test_youtube_extract(self):          self.assertEqual(YoutubeIE()._extract_id('http://www.youtube.com/watch?&v=BaW_jenozKc'), 'BaW_jenozKc')          self.assertEqual(YoutubeIE()._extract_id('https://www.youtube.com/watch?&v=BaW_jenozKc'), 'BaW_jenozKc') diff --git a/test/test_youtube_subtitles.py b/test/test_youtube_subtitles.py index a123e6d72..c80c90cbe 100644 --- a/test/test_youtube_subtitles.py +++ b/test/test_youtube_subtitles.py @@ -28,7 +28,9 @@ compat_urllib_request.install_opener(opener)  class FakeDownloader(FileDownloader):      def __init__(self):          self.result = [] -        self.params = parameters +        # Different instances of the downloader can't share the same dictionary +        # some test set the "sublang" parameter, which would break the md5 checks. +        self.params = dict(parameters)      def to_screen(self, s):          print(s)      def trouble(self, s, tb=None): @@ -96,6 +98,14 @@ class TestYoutubeSubtitles(unittest.TestCase):          IE = YoutubeIE(DL)          info_dict = IE.extract('QRS8MkLhQmM')          self.assertEqual(info_dict, None) +    def test_youtube_automatic_captions(self): +        DL = FakeDownloader() +        DL.params['writesubtitles'] = True +        DL.params['subtitleslang'] = 'it' +        IE = YoutubeIE(DL) +        info_dict = IE.extract('8YoUxe5ncPo') +        sub = info_dict[0]['subtitles'][0] +        self.assertTrue(sub[2] is not None)  if __name__ == '__main__':      unittest.main() diff --git a/test/tests.json b/test/tests.json index f57ebf1c9..04be912ce 100644 --- a/test/tests.json +++ b/test/tests.json @@ -482,5 +482,32 @@        "title": "Louis C.K. Interview Pt. 1 11/3/11",        "description": "Louis C.K. got starstruck by George W. Bush, so what? Part one."      } +  }, +  { +    "name": "XHamster", +    "url": "http://xhamster.com/movies/1509445/femaleagent_shy_beauty_takes_the_bait.html", +    "file": "1509445.flv", +    "md5": "9f48e0e8d58e3076bb236ff412ab62fa", +    "info_dict":{ +      "title":"FemaleAgent Shy beauty takes the bait" +    } +  }, +  { +    "name": "Hypem", +    "url": "http://hypem.com/track/1v6ga/BODYWORK+-+TAME", +    "file": "1v6ga.mp3", +    "md5": "b9cc91b5af8995e9f0c1cee04c575828", +    "info_dict":{ +      "title":"TAME" +    } +  }, +  { +    "name": "Vbox7", +    "url": "http://vbox7.com/play:249bb972c2", +    "file": "249bb972c2.flv", +    "md5": "9c70d6d956f888bdc08c124acc120cfe", +    "info_dict":{ +      "title":"Смях! Чудо - чист за секунди - Скрита камера" +    }    }  ] | 
