diff options
author | Alex Stapleton <alexs@prol.etari.at> | 2014-02-02 11:00:36 +0000 |
---|---|---|
committer | Alex Stapleton <alexs@prol.etari.at> | 2014-02-02 15:58:27 +0000 |
commit | 30ff19b11a5586679549fbff8bddc0c03d4c590f (patch) | |
tree | 1a9f5d1feedfcc3b3fb2ffd15c92b8534f5241a2 /tests/hazmat/backends | |
parent | b84b215af8e7669d50b7b63fb37e6854ba6f99db (diff) | |
download | cryptography-30ff19b11a5586679549fbff8bddc0c03d4c590f.tar.gz cryptography-30ff19b11a5586679549fbff8bddc0c03d4c590f.tar.bz2 cryptography-30ff19b11a5586679549fbff8bddc0c03d4c590f.zip |
More detailed error message for InternalError
Uses ERR_error_string_n because the source contains horrible warnings
against ever using ERR_error_string.
Diffstat (limited to 'tests/hazmat/backends')
-rw-r--r-- | tests/hazmat/backends/test_openssl.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/hazmat/backends/test_openssl.py b/tests/hazmat/backends/test_openssl.py index b0a58c41..1e35322a 100644 --- a/tests/hazmat/backends/test_openssl.py +++ b/tests/hazmat/backends/test_openssl.py @@ -116,6 +116,23 @@ class TestOpenSSL(object): assert backend._lib.ERR_peek_error() == 0 + def test_openssl_error_string(self): + backend._lib.ERR_put_error( + backend._lib.ERR_LIB_EVP, + backend._lib.EVP_F_EVP_DECRYPTFINAL_EX, + 0, + b"test_openssl.py", + -1 + ) + + with pytest.raises(InternalError) as exc: + backend._handle_error(None) + + assert ( + "digital envelope routines:" + "EVP_DecryptFinal_ex:digital envelope routines" in str(exc) + ) + def test_ssl_ciphers_registered(self): meth = backend._lib.TLSv1_method() ctx = backend._lib.SSL_CTX_new(meth) |