]> jfr.im git - yt-dlp.git/blob - test/test_netrc.py
[ie/brightcove] Upgrade requests to HTTPS (#10202)
[yt-dlp.git] / test / test_netrc.py
1 #!/usr/bin/env python3
2
3 # Allow direct execution
4 import os
5 import sys
6 import unittest
7
8 sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
9
10
11 from yt_dlp.extractor import gen_extractor_classes
12 from yt_dlp.extractor.common import InfoExtractor
13
14 NO_LOGIN = InfoExtractor._perform_login
15
16
17 class TestNetRc(unittest.TestCase):
18 def test_netrc_present(self):
19 for ie in gen_extractor_classes():
20 if ie._perform_login is NO_LOGIN:
21 continue
22 self.assertTrue(
23 ie._NETRC_MACHINE,
24 f'Extractor {ie.IE_NAME} supports login, but is missing a _NETRC_MACHINE property')
25
26
27 if __name__ == '__main__':
28 unittest.main()