test_netrc.py 726 B

1234567891011121314151617181920212223242526272829
  1. #!/usr/bin/env python3
  2. # Allow direct execution
  3. import os
  4. import sys
  5. import unittest
  6. sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
  7. from hypervideo_dl.extractor import gen_extractor_classes
  8. from hypervideo_dl.extractor.common import InfoExtractor
  9. NO_LOGIN = InfoExtractor._perform_login
  10. class TestNetRc(unittest.TestCase):
  11. def test_netrc_present(self):
  12. for ie in gen_extractor_classes():
  13. if ie._perform_login is NO_LOGIN:
  14. continue
  15. self.assertTrue(
  16. ie._NETRC_MACHINE,
  17. 'Extractor %s supports login, but is missing a _NETRC_MACHINE property' % ie.IE_NAME)
  18. if __name__ == '__main__':
  19. unittest.main()