forked from Kuadrant/testsuite
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: averevki <[email protected]>
- Loading branch information
Showing
7 changed files
with
249 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
56 changes: 56 additions & 0 deletions
56
testsuite/tests/singlecluster/gateway/dnspolicy/health_check/conftest.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
"""Conftest for DNSPolicy health checks""" | ||
|
||
import pytest | ||
|
||
from testsuite.gateway import Hostname, TLSGatewayListener | ||
from testsuite.gateway.gateway_api.gateway import KuadrantGateway | ||
|
||
|
||
@pytest.fixture(scope="module") | ||
def subdomain(blame): | ||
"""Subdomain name that will be added to HTTPRoute""" | ||
return blame("hostname") | ||
|
||
|
||
@pytest.fixture(scope="module") | ||
def hostname(gateway, exposer, subdomain) -> Hostname: | ||
"""Exposed Hostname object""" | ||
return exposer.expose_hostname(subdomain, gateway) | ||
|
||
|
||
@pytest.fixture(scope="module") | ||
def gateway(request, cluster, blame, base_domain, module_label, subdomain): | ||
"""Returns ready gateway""" | ||
gateway_name = blame("gw") | ||
gw = KuadrantGateway.create_instance( | ||
cluster, | ||
gateway_name, | ||
{"app": module_label}, | ||
) | ||
gw.add_listener(TLSGatewayListener(hostname=f"{subdomain}.{base_domain}", gateway_name=gateway_name)) | ||
request.addfinalizer(gw.delete) | ||
gw.commit() | ||
gw.wait_for_ready() | ||
return gw | ||
|
||
|
||
@pytest.fixture(scope="module") | ||
def dns_policy(dns_policy, health_check): | ||
"""Add health check to DNSPolicy""" | ||
dns_policy.set_health_check(health_check) | ||
return dns_policy | ||
|
||
|
||
@pytest.fixture(scope="module") | ||
def dns_health_probe(dns_policy): | ||
"""Return DNSHealthCheckProbe object for created DNSPolicy""" | ||
return dns_policy.get_dns_health_probe() | ||
|
||
|
||
@pytest.fixture(scope="module", autouse=True) | ||
def commit(request, route, tls_policy, dns_policy): # pylint: disable=unused-argument | ||
"""Commits dnspolicy""" | ||
for component in [tls_policy, dns_policy]: | ||
request.addfinalizer(component.delete) | ||
component.commit() | ||
component.wait_for_ready() |
25 changes: 25 additions & 0 deletions
25
testsuite/tests/singlecluster/gateway/dnspolicy/health_check/test_healthy_endpoint.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
"""Tests for DNSPolicy health checks - healthy endpoint""" | ||
|
||
import pytest | ||
|
||
from testsuite.kuadrant.policy.dns import HealthCheck | ||
|
||
pytestmark = [pytest.mark.kuadrant_only, pytest.mark.dnspolicy] | ||
|
||
|
||
@pytest.fixture(scope="module") | ||
def health_check(): | ||
"""Returns healthy endpoint specification for DNSPolicy health check""" | ||
return HealthCheck( | ||
path="/get", | ||
interval="5s", | ||
protocol="HTTPS", | ||
) | ||
|
||
|
||
def test_healthy_endpoint(dns_health_probe, client, auth): | ||
"""Test healthy endpoint check""" | ||
assert dns_health_probe.is_healthy() | ||
|
||
response = client.get("/get", auth=auth) | ||
assert response.status_code == 200 |
46 changes: 46 additions & 0 deletions
46
testsuite/tests/singlecluster/gateway/dnspolicy/health_check/test_healthy_endpoint_http.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
"""Tests for DNSPolicy health checks with HTTP only endpoint - healthy endpoint""" | ||
|
||
import pytest | ||
|
||
from testsuite.gateway import GatewayListener | ||
from testsuite.gateway.gateway_api.gateway import KuadrantGateway | ||
from testsuite.kuadrant.policy.dns import HealthCheck | ||
|
||
pytestmark = [pytest.mark.kuadrant_only, pytest.mark.dnspolicy] | ||
|
||
|
||
@pytest.fixture(scope="module") | ||
def health_check(): | ||
"""Returns healthy endpoint specification for DNSPolicy health check""" | ||
return HealthCheck( | ||
path="/get", | ||
interval="5s", | ||
protocol="HTTP", | ||
) | ||
|
||
|
||
@pytest.fixture(scope="module") | ||
def gateway(request, cluster, blame, base_domain, module_label, subdomain): | ||
"""Create gateway without TLS enabled""" | ||
gw = KuadrantGateway.create_instance(cluster, blame("gw"), {"app": module_label}) | ||
gw.add_listener(GatewayListener(hostname=f"{subdomain}.{base_domain}")) | ||
request.addfinalizer(gw.delete) | ||
gw.commit() | ||
gw.wait_for_ready() | ||
return gw | ||
|
||
|
||
@pytest.fixture(scope="module", autouse=True) | ||
def commit(request, route, dns_policy): # pylint: disable=unused-argument | ||
"""Commits dnspolicy only""" | ||
request.addfinalizer(dns_policy.delete) | ||
dns_policy.commit() | ||
dns_policy.wait_for_ready() | ||
|
||
|
||
def test_healthy_endpoint_http(dns_health_probe, client): | ||
"""Test healthy endpoint check without TLS enabled""" | ||
assert dns_health_probe.is_healthy() | ||
|
||
response = client.get("/get") | ||
assert response.status_code == 200 |
42 changes: 42 additions & 0 deletions
42
testsuite/tests/singlecluster/gateway/dnspolicy/health_check/test_remove_endpoint.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
"""Tests for DNSPolicy health checks - healthy endpoint""" | ||
|
||
import pytest | ||
|
||
from testsuite.kuadrant.policy import has_condition | ||
from testsuite.kuadrant.policy.dns import HealthCheck, has_record_condition | ||
|
||
pytestmark = [pytest.mark.kuadrant_only, pytest.mark.dnspolicy] | ||
|
||
|
||
@pytest.fixture(scope="module") | ||
def health_check(): | ||
"""Returns healthy endpoint specification for DNSPolicy health check""" | ||
return HealthCheck( | ||
path="/get", | ||
interval="5s", | ||
protocol="HTTPS", | ||
) | ||
|
||
|
||
def test_remove_endpoint(backend, dns_policy, dns_health_probe, client, auth): | ||
"""Scale backend replicas to 0 and back to 1, and check if DNSPolicy will remove the unhealthy endpoint""" | ||
assert dns_health_probe.is_healthy() | ||
response = client.get("/get", auth=auth) | ||
assert response.status_code == 200 | ||
|
||
backend.deployment.self_selector().scale(0) | ||
assert dns_policy.wait_until(has_condition("Enforced", "False")) | ||
assert dns_policy.wait_until( | ||
has_record_condition("Ready", "False", "HealthChecksFailed", "None of the healthchecks succeeded") | ||
) | ||
|
||
assert not dns_health_probe.is_healthy() | ||
response = client.get("/get", auth=auth) | ||
assert response.status_code == 503 | ||
|
||
backend.deployment.self_selector().scale(1) | ||
dns_policy.wait_for_ready() | ||
|
||
assert dns_health_probe.is_healthy() | ||
response = client.get("/get", auth=auth) | ||
assert response.status_code == 200 |
41 changes: 41 additions & 0 deletions
41
testsuite/tests/singlecluster/gateway/dnspolicy/health_check/test_unhealthy_endpoint.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
"""Tests for DNSPolicy health checks - unhealthy endpoint""" | ||
|
||
import pytest | ||
|
||
from testsuite.kuadrant.policy import has_condition | ||
from testsuite.kuadrant.policy.dns import HealthCheck, has_record_condition | ||
|
||
pytestmark = [pytest.mark.kuadrant_only, pytest.mark.dnspolicy] | ||
|
||
|
||
@pytest.fixture(scope="module") | ||
def health_check(): | ||
"""Returns unhealthy endpoint specification for DNSPolicy health check""" | ||
return HealthCheck( | ||
path="/unknown-endpoint", | ||
interval="5s", | ||
protocol="HTTPS", | ||
) | ||
|
||
|
||
@pytest.fixture(scope="module", autouse=True) | ||
def commit(request, route, tls_policy, dns_policy): # pylint: disable=unused-argument | ||
"""Commits tlspolicy and dnspolicy without waiting for dnspolicy to be enforced""" | ||
request.addfinalizer(tls_policy.delete) | ||
tls_policy.commit() | ||
tls_policy.wait_for_ready() | ||
|
||
request.addfinalizer(dns_policy.delete) | ||
dns_policy.commit() | ||
|
||
|
||
def test_unhealthy_endpoint(dns_policy, dns_health_probe, client, auth): | ||
"""Test unhealthy endpoint check""" | ||
assert not dns_health_probe.is_healthy() | ||
response = client.get("/get", auth=auth) | ||
assert response.has_dns_error() | ||
|
||
assert dns_policy.wait_until(has_condition("Enforced", "False")) | ||
assert dns_policy.wait_until( | ||
has_record_condition("Ready", "False", "HealthChecksFailed", "None of the healthchecks succeeded") | ||
) |