123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- import pytest
- from ssl import CertificateError
- from requests import ConnectionError
- from requests.exceptions import SSLError
- @pytest.mark.parametrize("subdomain,should_redirect_to_https", [
- (1, True),
- (2, True),
- (3, False),
- ])
- def test_http_redirects_to_https(docker_compose, nginxproxy, subdomain, should_redirect_to_https):
- r = nginxproxy.get(f"http://{subdomain}.web.nginx-proxy.tld/port")
- if should_redirect_to_https:
- assert len(r.history) > 0
- assert r.history[0].is_redirect
- assert r.history[0].headers.get("Location") == f"https://{subdomain}.web.nginx-proxy.tld/port"
- assert f"answer from port 8{subdomain}\n" == r.text
- @pytest.mark.parametrize("subdomain", [1, 2])
- def test_https_get_served(docker_compose, nginxproxy, subdomain):
- r = nginxproxy.get(f"https://{subdomain}.web.nginx-proxy.tld/port", allow_redirects=False)
- assert r.status_code == 200
- assert f"answer from port 8{subdomain}\n" == r.text
- @pytest.mark.filterwarnings('ignore::urllib3.exceptions.InsecureRequestWarning')
- def test_https_request_to_nohttps_vhost_goes_to_fallback_server(docker_compose, nginxproxy):
- with pytest.raises( (CertificateError, SSLError) ) as excinfo:
- nginxproxy.get("https://3.web.nginx-proxy.tld/port")
- assert """certificate is not valid for '3.web.nginx-proxy.tld'""" in str(excinfo.value) or \
- """hostname '3.web.nginx-proxy.tld' doesn't match 'nginx-proxy.tld'""" in str(excinfo.value)
- r = nginxproxy.get("https://3.web.nginx-proxy.tld/port", verify=False)
- assert r.status_code == 503
- @pytest.mark.parametrize("subdomain,acme_should_work", [
- (1, True),
- (2, True),
- (3, False),
- ])
- def test_acme_challenge_works(
- docker_compose, nginxproxy, acme_challenge_path, subdomain, acme_should_work
- ):
- if acme_should_work:
- r = nginxproxy.get(
- f"https://{subdomain}.web.nginx-proxy.tld/{acme_challenge_path}",
- allow_redirects=False
- )
- assert r.status_code == 404
- else:
- with pytest.raises(ConnectionError):
- nginxproxy.get(
- f"https://{subdomain}.web.nginx-proxy.tld/{acme_challenge_path}",
- allow_redirects=False
- )
|