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.

90 lines
3.3 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, YoutubeIE
  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(map(lambda x: YoutubeIE()._extract_id(x[0]), dl.result),
  35. [ 'bV9L5Ht9LgY', 'FXxLjLQi3Fg', 'tU3Bgo5qJZE' ])
  36. #661
  37. dl = FakeDownloader()
  38. ie = YoutubePlaylistIE(dl)
  39. ie.extract('PLMCmkNmxw6Z9eduM7BZjSEh7HiU543Ig0')
  40. self.assertTrue(len(dl.result) > 20)
  41. #673
  42. dl = FakeDownloader()
  43. ie = YoutubePlaylistIE(dl)
  44. ie.extract('PLBB231211A4F62143')
  45. self.assertTrue(len(dl.result) > 40)
  46. def test_youtube_playlist_long(self):
  47. dl = FakeDownloader()
  48. ie = YoutubePlaylistIE(dl)
  49. ie.extract('https://www.youtube.com/playlist?list=UUBABnxM4Ar9ten8Mdjj1j0Q')
  50. self.assertTrue(len(dl.result) >= 799)
  51. def test_youtube_playlist_with_deleted(self):
  52. #651
  53. dl = FakeDownloader()
  54. ie = YoutubePlaylistIE(dl)
  55. ie.extract('https://www.youtube.com/playlist?list=PLwP_SiAcdui0KVebT0mU9Apz359a4ubsC')
  56. self.assertFalse('pElCt5oNDuI' in map(lambda x: YoutubeIE()._extract_id(x[0]), dl.result))
  57. self.assertFalse('KdPEApIVdWM' in map(lambda x: YoutubeIE()._extract_id(x[0]), dl.result))
  58. def test_youtube_course(self):
  59. dl = FakeDownloader()
  60. ie = YoutubePlaylistIE(dl)
  61. # TODO find a > 100 (paginating?) videos course
  62. ie.extract('https://www.youtube.com/course?list=ECUl4u3cNGP61MdtwGTqZA0MreSaDybji8')
  63. self.assertEqual(YoutubeIE()._extract_id(dl.result[0][0]), 'j9WZyLZCBzs')
  64. self.assertEqual(len(dl.result), 25)
  65. self.assertEqual(YoutubeIE()._extract_id(dl.result[-1][0]), 'rYefUsYuEp0')
  66. def test_youtube_channel(self):
  67. # I give up, please find a channel that does paginate and test this like test_youtube_playlist_long
  68. pass # TODO
  69. def test_youtube_user(self):
  70. dl = FakeDownloader()
  71. ie = YoutubeUserIE(dl)
  72. ie.extract('https://www.youtube.com/user/TheLinuxFoundation')
  73. self.assertTrue(len(dl.result) >= 320)
  74. if __name__ == '__main__':
  75. unittest.main()