mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-18 00:05:46 +00:00
Disable hopeless server certificate validation by test client
This commit is contained in:
parent
f2c3bef77b
commit
eaf29d53e4
1 changed files with 5 additions and 1 deletions
|
@ -39,7 +39,11 @@ class TestClientCert(unittest.TestCase):
|
|||
|
||||
def test_check_clientcertificate(self):
|
||||
clientcertfn = os.path.join(TEST_DIR, 'testdata', 'clientcert', 'client.crt')
|
||||
ydl = YoutubeDL({'logger': FakeLogger(), 'clientcertificate': clientcertfn})
|
||||
ydl = YoutubeDL({'logger': FakeLogger(), 'clientcertificate': clientcertfn,
|
||||
# Disable client-side validation of unacceptable self-signed testcert.pem
|
||||
# The test is of a check on the server side, so unaffected
|
||||
'nocheckcertificate': True,
|
||||
})
|
||||
r = ydl.extract_info('https://127.0.0.1:%d/video.html' % self.port)
|
||||
self.assertEqual(r['entries'][0]['url'], 'https://127.0.0.1:%d/vid.mp4' % self.port)
|
||||
|
||||
|
|
Loading…
Reference in a new issue