2016-12-10 00:53:23 +01:00
|
|
|
import pytest
|
2023-02-04 18:59:38 -05:00
|
|
|
import requests
|
2016-12-10 00:53:23 +01:00
|
|
|
|
|
|
|
|
2023-02-04 18:59:38 -05:00
|
|
|
def test_web2_http_is_connection_refused(docker_compose, nginxproxy):
|
|
|
|
with pytest.raises(requests.exceptions.RequestException, match="Connection refused"):
|
|
|
|
nginxproxy.get("http://web2.nginx-proxy.tld/")
|
2016-12-10 00:53:23 +01:00
|
|
|
|
|
|
|
|
2024-05-04 23:52:57 +03:00
|
|
|
def test_web2_http_is_connection_refused_for_acme_challenge(
|
|
|
|
docker_compose, nginxproxy, acme_challenge_path
|
|
|
|
):
|
|
|
|
with pytest.raises(requests.exceptions.RequestException, match="Connection refused"):
|
|
|
|
nginxproxy.get(f"http://web2.nginx-proxy.tld/{acme_challenge_path}")
|
|
|
|
|
|
|
|
|
2016-12-10 00:53:23 +01:00
|
|
|
def test_web2_https_is_forwarded(docker_compose, nginxproxy):
|
|
|
|
r = nginxproxy.get("https://web2.nginx-proxy.tld/port", allow_redirects=False)
|
|
|
|
assert r.status_code == 200
|
|
|
|
assert "answer from port 82\n" in r.text
|
|
|
|
|
|
|
|
|
|
|
|
def test_web2_HSTS_policy_is_active(docker_compose, nginxproxy):
|
|
|
|
r = nginxproxy.get("https://web2.nginx-proxy.tld/port", allow_redirects=False)
|
|
|
|
assert "answer from port 82\n" in r.text
|
|
|
|
assert "Strict-Transport-Security" in r.headers
|