summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2022-09-16 23:55:17 +0200
committerGitHub <noreply@github.com>2022-09-16 16:55:17 -0500
commitf0ed288747a28a5785d7a62ef9e7afc699674625 (patch)
tree355b6d894d8f139f85823a6f71b19a1de9e12e90 /tests
parenta3483a7ad7415eb6037237b5261fb8a93e863589 (diff)
downloadpyopenssl-f0ed288747a28a5785d7a62ef9e7afc699674625.tar.gz
add `Connection.use_(certificate|privatekey)` (#1121)
* add `Connection.use_(certificate|privatekey)` * bump minimum cryptography version * deduplicate tests * black! * max line length
Diffstat (limited to 'tests')
-rw-r--r--tests/test_ssl.py113
1 files changed, 71 insertions, 42 deletions
diff --git a/tests/test_ssl.py b/tests/test_ssl.py
index 5e69ace..39d3af5 100644
--- a/tests/test_ssl.py
+++ b/tests/test_ssl.py
@@ -29,6 +29,7 @@ from socket import (
socket,
)
from sys import getfilesystemencoding, platform
+from typing import Union
from warnings import simplefilter
from weakref import ref
@@ -621,17 +622,6 @@ class TestContext:
"""
assert is_consistent_type(Context, "Context", TLSv1_METHOD)
- def test_use_privatekey(self):
- """
- `Context.use_privatekey` takes an `OpenSSL.crypto.PKey` instance.
- """
- key = PKey()
- key.generate_key(TYPE_RSA, 1024)
- ctx = Context(SSLv23_METHOD)
- ctx.use_privatekey(key)
- with pytest.raises(TypeError):
- ctx.use_privatekey("")
-
def test_use_privatekey_file_missing(self, tmpfile):
"""
`Context.use_privatekey_file` raises `OpenSSL.SSL.Error` when passed
@@ -685,37 +675,6 @@ class TestContext:
FILETYPE_PEM,
)
- def test_use_certificate_wrong_args(self):
- """
- `Context.use_certificate_wrong_args` raises `TypeError` when not passed
- exactly one `OpenSSL.crypto.X509` instance as an argument.
- """
- ctx = Context(SSLv23_METHOD)
- with pytest.raises(TypeError):
- ctx.use_certificate("hello, world")
-
- def test_use_certificate_uninitialized(self):
- """
- `Context.use_certificate` raises `OpenSSL.SSL.Error` when passed a
- `OpenSSL.crypto.X509` instance which has not been initialized
- (ie, which does not actually have any certificate data).
- """
- ctx = Context(SSLv23_METHOD)
- with pytest.raises(Error):
- ctx.use_certificate(X509())
-
- def test_use_certificate(self):
- """
- `Context.use_certificate` sets the certificate which will be
- used to identify connections created using the context.
- """
- # TODO
- # Hard to assert anything. But we could set a privatekey then ask
- # OpenSSL if the cert and key agree using check_privatekey. Then as
- # long as check_privatekey works right we're good...
- ctx = Context(SSLv23_METHOD)
- ctx.use_certificate(load_certificate(FILETYPE_PEM, root_cert_pem))
-
def test_use_certificate_file_wrong_args(self):
"""
`Context.use_certificate_file` raises `TypeError` if the first
@@ -2180,6 +2139,76 @@ class TestSession:
assert isinstance(new_session, Session)
+@pytest.fixture(params=["context", "connection"])
+def ctx_or_conn(request) -> Union[Context, Connection]:
+ ctx = Context(SSLv23_METHOD)
+ if request.param == "context":
+ return ctx
+ else:
+ return Connection(ctx, None)
+
+
+class TestContextConnection:
+ """
+ Unit test for methods that are exposed both by Connection and Context
+ objects.
+ """
+
+ def test_use_privatekey(self, ctx_or_conn):
+ """
+ `use_privatekey` takes an `OpenSSL.crypto.PKey` instance.
+ """
+ key = PKey()
+ key.generate_key(TYPE_RSA, 1024)
+
+ ctx_or_conn.use_privatekey(key)
+ with pytest.raises(TypeError):
+ ctx_or_conn.use_privatekey("")
+
+ def test_use_privatekey_wrong_key(self, ctx_or_conn):
+ """
+ `use_privatekey` raises `OpenSSL.SSL.Error` when passed a
+ `OpenSSL.crypto.PKey` instance which has not been initialized.
+ """
+ key = PKey()
+ key.generate_key(TYPE_RSA, 1024)
+ ctx_or_conn.use_certificate(
+ load_certificate(FILETYPE_PEM, root_cert_pem)
+ )
+ with pytest.raises(Error):
+ ctx_or_conn.use_privatekey(key)
+
+ def test_use_certificate(self, ctx_or_conn):
+ """
+ `use_certificate` sets the certificate which will be
+ used to identify connections created using the context.
+ """
+ # TODO
+ # Hard to assert anything. But we could set a privatekey then ask
+ # OpenSSL if the cert and key agree using check_privatekey. Then as
+ # long as check_privatekey works right we're good...
+ ctx_or_conn.use_certificate(
+ load_certificate(FILETYPE_PEM, root_cert_pem)
+ )
+
+ def test_use_certificate_wrong_args(self, ctx_or_conn):
+ """
+ `use_certificate_wrong_args` raises `TypeError` when not passed
+ exactly one `OpenSSL.crypto.X509` instance as an argument.
+ """
+ with pytest.raises(TypeError):
+ ctx_or_conn.use_certificate("hello, world")
+
+ def test_use_certificate_uninitialized(self, ctx_or_conn):
+ """
+ `use_certificate` raises `OpenSSL.SSL.Error` when passed a
+ `OpenSSL.crypto.X509` instance which has not been initialized
+ (ie, which does not actually have any certificate data).
+ """
+ with pytest.raises(Error):
+ ctx_or_conn.use_certificate(X509())
+
+
class TestConnection:
"""
Unit tests for `OpenSSL.SSL.Connection`.