diff options
author | Christian Heimes <christian@python.org> | 2021-04-23 13:51:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-23 13:51:40 +0200 |
commit | b9ad88be0304136c3fe5959c65a5d2c75490cd80 (patch) | |
tree | a673b6281bb29aa7cd194c0184804f1aeabd7933 /Lib/test/test_ssl.py | |
parent | e9194ea6eaa18299d6ccbd3555ce150fab0c6184 (diff) | |
download | cpython-git-b9ad88be0304136c3fe5959c65a5d2c75490cd80.tar.gz |
bpo-43920: Make load_verify_locations(cadata) error message consistent (GH-25554)
Signed-off-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'Lib/test/test_ssl.py')
-rw-r--r-- | Lib/test/test_ssl.py | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py index 0b8cef6399..8c846574e1 100644 --- a/Lib/test/test_ssl.py +++ b/Lib/test/test_ssl.py @@ -1433,12 +1433,17 @@ class ContextTests(unittest.TestCase): ctx = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT) self.assertRaises(TypeError, ctx.load_verify_locations, cadata=object) - with self.assertRaisesRegex(ssl.SSLError, "no start line"): + with self.assertRaisesRegex( + ssl.SSLError, + "no start line: cadata does not contain a certificate" + ): ctx.load_verify_locations(cadata="broken") - with self.assertRaisesRegex(ssl.SSLError, "not enough data"): + with self.assertRaisesRegex( + ssl.SSLError, + "not enough data: cadata does not contain a certificate" + ): ctx.load_verify_locations(cadata=b"broken") - @unittest.skipIf(Py_DEBUG_WIN32, "Avoid mixing debug/release CRT on Windows") def test_load_dh_params(self): ctx = ssl.SSLContext(ssl.PROTOCOL_TLS_SERVER) |