forked from csernazs/pytest-httpserver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_ssl.py
More file actions
39 lines (28 loc) · 1.17 KB
/
test_ssl.py
File metadata and controls
39 lines (28 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import os
import ssl
from os.path import join as pjoin
import pytest
import requests
pytestmark = pytest.mark.ssl
test_dir = os.path.dirname(os.path.realpath(__file__))
assets_dir = pjoin(test_dir, "assets")
@pytest.fixture(scope="session")
def httpserver_ssl_context():
protocol = None
for name in ("PROTOCOL_TLS_SERVER", "PROTOCOL_TLS", "PROTOCOL_TLSv1_2"):
if hasattr(ssl, name):
protocol = getattr(ssl, name)
break
assert protocol is not None, "Unable to obtain TLS protocol"
return ssl.SSLContext(protocol)
def test_ssl(httpserver):
server_crt = pjoin(assets_dir, "server.crt")
server_key = pjoin(assets_dir, "server.key")
root_ca = pjoin(assets_dir, "rootCA.crt")
context = httpserver.ssl_context
assert context is not None, \
"SSLContext not set. The session was probably started with a test that did not define an SSLContext."
httpserver.ssl_context.load_cert_chain(server_crt, server_key)
httpserver.expect_request("/foobar").respond_with_json({"foo": "bar"})
assert httpserver.is_running()
assert requests.get(httpserver.url_for("/foobar"), verify=root_ca).json() == {'foo': 'bar'}