You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

73 lines
2.6 KiB

12 years ago
12 years ago
12 years ago
  1. #!/usr/bin/env python
  2. import sys
  3. import unittest
  4. import json
  5. # Allow direct execution
  6. import os
  7. sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
  8. from youtube_dl.InfoExtractors import YoutubeUserIE,YoutubePlaylistIE
  9. from youtube_dl.utils import *
  10. PARAMETERS_FILE = os.path.join(os.path.dirname(os.path.abspath(__file__)), "parameters.json")
  11. with io.open(PARAMETERS_FILE, encoding='utf-8') as pf:
  12. parameters = json.load(pf)
  13. # General configuration (from __init__, not very elegant...)
  14. jar = compat_cookiejar.CookieJar()
  15. cookie_processor = compat_urllib_request.HTTPCookieProcessor(jar)
  16. proxy_handler = compat_urllib_request.ProxyHandler()
  17. opener = compat_urllib_request.build_opener(proxy_handler, cookie_processor, YoutubeDLHandler())
  18. compat_urllib_request.install_opener(opener)
  19. class FakeDownloader(object):
  20. def __init__(self):
  21. self.result = []
  22. self.params = parameters
  23. def to_screen(self, s):
  24. print(s)
  25. def trouble(self, s):
  26. raise Exception(s)
  27. def download(self, x):
  28. self.result.append(x)
  29. class TestYoutubeLists(unittest.TestCase):
  30. def test_youtube_playlist(self):
  31. DL = FakeDownloader()
  32. IE = YoutubePlaylistIE(DL)
  33. IE.extract('https://www.youtube.com/playlist?list=PLwiyx1dc3P2JR9N8gQaQN_BCvlSlap7re')
  34. self.assertEqual(DL.result, [
  35. ['http://www.youtube.com/watch?v=bV9L5Ht9LgY'],
  36. ['http://www.youtube.com/watch?v=FXxLjLQi3Fg'],
  37. ['http://www.youtube.com/watch?v=tU3Bgo5qJZE']
  38. ])
  39. def test_youtube_playlist_long(self):
  40. DL = FakeDownloader()
  41. IE = YoutubePlaylistIE(DL)
  42. IE.extract('https://www.youtube.com/playlist?list=UUBABnxM4Ar9ten8Mdjj1j0Q')
  43. self.assertTrue(len(DL.result) >= 799)
  44. def test_youtube_course(self):
  45. DL = FakeDownloader()
  46. IE = YoutubePlaylistIE(DL)
  47. # TODO find a > 100 (paginating?) videos course
  48. IE.extract('https://www.youtube.com/course?list=ECUl4u3cNGP61MdtwGTqZA0MreSaDybji8')
  49. self.assertEqual(DL.result[0], ['http://www.youtube.com/watch?v=j9WZyLZCBzs'])
  50. self.assertEqual(len(DL.result), 25)
  51. self.assertEqual(DL.result[-1], ['http://www.youtube.com/watch?v=rYefUsYuEp0'])
  52. def test_youtube_channel(self):
  53. # I give up, please find a channel that does paginate and test this like test_youtube_playlist_long
  54. pass # TODO
  55. def test_youtube_user(self):
  56. DL = FakeDownloader()
  57. IE = YoutubeUserIE(DL)
  58. IE.extract('https://www.youtube.com/user/TheLinuxFoundation')
  59. self.assertTrue(len(DL.result) >= 320)
  60. if __name__ == '__main__':
  61. unittest.main()