<?xml version="1.0" encoding="utf-8"?><testsuites name="pytest tests"><testsuite name="pytest" errors="0" failures="4" skipped="2" tests="136" time="1584.387" timestamp="2026-05-20T14:18:43.978398+00:00" hostname="maas-group-test-94hcf-e2e-maas-openshift-pod"><testcase classname="test.e2e.tests.test_tenant_health.TestTenantReconcileHealth" name="test_tenant_exists" time="0.111" /><testcase classname="test.e2e.tests.test_tenant_health.TestTenantReconcileHealth" name="test_tenant_reaches_active_phase" time="121.607"><failure message="Failed: Tenant default-tenant did not reach phase 'Active' within 120s (current: phase=Degraded, reason=Reconciled, message=MaaS platform manifests applied and maas-api deployment is available)">self = &lt;test_tenant_health.TestTenantReconcileHealth object at 0x7f963927a910&gt;

    def test_tenant_reaches_active_phase(self):
        """Tenant CR must reach Phase=Active with Ready=True.
    
        Fails immediately if Phase=Failed (e.g., RBAC forbidden error),
        surfacing the reconciler's error message in the test output.
        """
&gt;       tenant = _wait_for_tenant_phase("Active")

test/e2e/tests/test_tenant_health.py:169: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

expected_phase = 'Active', timeout = 120

    def _wait_for_tenant_phase(expected_phase, timeout=None):
        """Poll until Tenant reaches expected_phase. Fails fast on Phase=Failed.
    
        Returns the Tenant CR dict on success.
        Raises AssertionError on failure or timeout.
        """
        timeout = timeout or TENANT_HEALTH_TIMEOUT
        deadline = time.time() + timeout
        log.info("Waiting for Tenant %s phase=%s (timeout: %ds)...", TENANT_NAME, expected_phase, timeout)
    
        while time.time() &lt; deadline:
            tenant = _get_tenant()
            if tenant is None:
                log.debug("Tenant %s not found yet, retrying...", TENANT_NAME)
                time.sleep(3)
                continue
    
            phase = tenant.get("status", {}).get("phase", "")
    
            if phase == expected_phase:
                log.info("Tenant %s reached phase '%s'", TENANT_NAME, expected_phase)
                return tenant
    
            if phase == "Failed" and expected_phase != "Failed":
                ready = _get_condition(tenant, "Ready")
                reason = ready.get("reason", "unknown") if ready else "unknown"
                message = ready.get("message", "no message") if ready else "no message"
                pytest.fail(
                    f"Tenant reconcile failed: {reason} — {message}"
                )
    
            log.debug("Tenant %s: phase=%s, waiting for %s", TENANT_NAME, phase, expected_phase)
            time.sleep(3)
    
        tenant = _get_tenant()
        status = tenant.get("status", {}) if tenant else {}
        ready = _get_condition(tenant, "Ready") if tenant else None
        detail = f"reason={ready.get('reason')}, message={ready.get('message')}" if ready else "no Ready condition"
&gt;       pytest.fail(
            f"Tenant {TENANT_NAME} did not reach phase '{expected_phase}' within {timeout}s "
            f"(current: phase={status.get('phase', 'none')}, {detail})"
        )
E       Failed: Tenant default-tenant did not reach phase 'Active' within 120s (current: phase=Degraded, reason=Reconciled, message=MaaS platform manifests applied and maas-api deployment is available)

test/e2e/tests/test_tenant_health.py:123: Failed</failure></testcase><testcase classname="test.e2e.tests.test_tenant_health.TestTenantReconcileHealth" name="test_tenant_conditions_healthy" time="121.637"><failure message="Failed: Tenant default-tenant did not reach phase 'Active' within 120s (current: phase=Degraded, reason=Reconciled, message=MaaS platform manifests applied and maas-api deployment is available)">self = &lt;test_tenant_health.TestTenantReconcileHealth object at 0x7f963927a6d0&gt;

    def test_tenant_conditions_healthy(self):
        """All Tenant status conditions must be in their healthy state."""
&gt;       tenant = _wait_for_tenant_phase("Active")

test/e2e/tests/test_tenant_health.py:180: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

expected_phase = 'Active', timeout = 120

    def _wait_for_tenant_phase(expected_phase, timeout=None):
        """Poll until Tenant reaches expected_phase. Fails fast on Phase=Failed.
    
        Returns the Tenant CR dict on success.
        Raises AssertionError on failure or timeout.
        """
        timeout = timeout or TENANT_HEALTH_TIMEOUT
        deadline = time.time() + timeout
        log.info("Waiting for Tenant %s phase=%s (timeout: %ds)...", TENANT_NAME, expected_phase, timeout)
    
        while time.time() &lt; deadline:
            tenant = _get_tenant()
            if tenant is None:
                log.debug("Tenant %s not found yet, retrying...", TENANT_NAME)
                time.sleep(3)
                continue
    
            phase = tenant.get("status", {}).get("phase", "")
    
            if phase == expected_phase:
                log.info("Tenant %s reached phase '%s'", TENANT_NAME, expected_phase)
                return tenant
    
            if phase == "Failed" and expected_phase != "Failed":
                ready = _get_condition(tenant, "Ready")
                reason = ready.get("reason", "unknown") if ready else "unknown"
                message = ready.get("message", "no message") if ready else "no message"
                pytest.fail(
                    f"Tenant reconcile failed: {reason} — {message}"
                )
    
            log.debug("Tenant %s: phase=%s, waiting for %s", TENANT_NAME, phase, expected_phase)
            time.sleep(3)
    
        tenant = _get_tenant()
        status = tenant.get("status", {}) if tenant else {}
        ready = _get_condition(tenant, "Ready") if tenant else None
        detail = f"reason={ready.get('reason')}, message={ready.get('message')}" if ready else "no Ready condition"
&gt;       pytest.fail(
            f"Tenant {TENANT_NAME} did not reach phase '{expected_phase}' within {timeout}s "
            f"(current: phase={status.get('phase', 'none')}, {detail})"
        )
E       Failed: Tenant default-tenant did not reach phase 'Active' within 120s (current: phase=Degraded, reason=Reconciled, message=MaaS platform manifests applied and maas-api deployment is available)

test/e2e/tests/test_tenant_health.py:123: Failed</failure></testcase><testcase classname="test.e2e.tests.test_tenant_health.TestTenantManagedResources" name="test_core_resources_exist[deployment-2]" time="0.116"><failure message="AssertionError: Expected &gt;= 2 deployment(s) with label maas.opendatahub.io/tenant-name=default-tenant in namespace opendatahub, found 1: ['maas-api']&#10;assert 1 &gt;= 2&#10; +  where 1 = len([{'apiVersion': 'apps/v1', 'kind': 'Deployment', 'metadata': {'annotations': {'deployment.kubernetes.io/revision': '1'}, 'creationTimestamp': '2026-05-20T14:16:59Z', 'generation': 1, 'labels': {'app.kubernetes.io/component': 'api', 'app.kubernetes.io/name': 'maas-api', 'app.kubernetes.io/part-of': 'models-as-a-service', 'app.opendatahub.io/modelsasservice': 'true', ...}, ...}, 'spec': {'progressDeadlineSeconds': 600, 'replicas': 1, 'revisionHistoryLimit': 10, 'selector': {'matchLabels': {'app.kubernetes.io/component': 'api', 'app.kubernetes.io/name': 'maas-api', 'app.kubernetes.io/part-of': 'models-as-a-service'}}, ...}, ...}])">self = &lt;test_tenant_health.TestTenantManagedResources object at 0x7f963927a190&gt;
kind = 'deployment', min_count = 2

    @pytest.mark.parametrize("kind,min_count", [
        ("deployment", 2),
        ("service", 2),
        ("serviceaccount", 1),
        ("cronjob", 1),
        ("configmap", 1),
        ("networkpolicy", 1),
    ])
    def test_core_resources_exist(self, kind, min_count):
        """Core Kubernetes resources must exist with tenant tracking labels."""
        items = _list_resources_by_label(kind, namespace=DEPLOYMENT_NAMESPACE)
        assert items is not None, f"Resource type '{kind}' not available on cluster"
        names = [item["metadata"]["name"] for item in items]
&gt;       assert len(items) &gt;= min_count, (
            f"Expected &gt;= {min_count} {kind}(s) with label {TENANT_LABEL_SELECTOR} "
            f"in namespace {DEPLOYMENT_NAMESPACE}, found {len(items)}: {names}"
        )
E       AssertionError: Expected &gt;= 2 deployment(s) with label maas.opendatahub.io/tenant-name=default-tenant in namespace opendatahub, found 1: ['maas-api']
E       assert 1 &gt;= 2
E        +  where 1 = len([{'apiVersion': 'apps/v1', 'kind': 'Deployment', 'metadata': {'annotations': {'deployment.kubernetes.io/revision': '1'}, 'creationTimestamp': '2026-05-20T14:16:59Z', 'generation': 1, 'labels': {'app.kubernetes.io/component': 'api', 'app.kubernetes.io/name': 'maas-api', 'app.kubernetes.io/part-of': 'models-as-a-service', 'app.opendatahub.io/modelsasservice': 'true', ...}, ...}, 'spec': {'progressDeadlineSeconds': 600, 'replicas': 1, 'revisionHistoryLimit': 10, 'selector': {'matchLabels': {'app.kubernetes.io/component': 'api', 'app.kubernetes.io/name': 'maas-api', 'app.kubernetes.io/part-of': 'models-as-a-service'}}, ...}, ...}])

test/e2e/tests/test_tenant_health.py:220: AssertionError</failure></testcase><testcase classname="test.e2e.tests.test_tenant_health.TestTenantManagedResources" name="test_core_resources_exist[service-2]" time="0.120"><failure message="AssertionError: Expected &gt;= 2 service(s) with label maas.opendatahub.io/tenant-name=default-tenant in namespace opendatahub, found 1: ['maas-api']&#10;assert 1 &gt;= 2&#10; +  where 1 = len([{'apiVersion': 'v1', 'kind': 'Service', 'metadata': {'annotations': {'service.alpha.openshift.io/serving-cert-signed-by': 'openshift-service-serving-signer@1779286090', 'service.beta.openshift.io/serving-cert-secret-name': 'maas-api-serving-cert', 'service.beta.openshift.io/serving-cert-signed-by': 'openshift-service-serving-signer@1779286090'}, 'creationTimestamp': '2026-05-20T14:16:59Z', 'labels': {'app.kubernetes.io/component': 'api', 'app.kubernetes.io/name': 'maas-api', 'app.kubernetes.io/part-of': 'models-as-a-service', 'app.opendatahub.io/modelsasservice': 'true', ...}, 'name': 'maas-api', ...}, 'spec': {'clusterIP': '172.31.209.213', 'clusterIPs': ['172.31.209.213'], 'internalTrafficPolicy': 'Cluster', 'ipFamilies': ['IPv4'], ...}, ...}])">self = &lt;test_tenant_health.TestTenantManagedResources object at 0x7f96392b6040&gt;
kind = 'service', min_count = 2

    @pytest.mark.parametrize("kind,min_count", [
        ("deployment", 2),
        ("service", 2),
        ("serviceaccount", 1),
        ("cronjob", 1),
        ("configmap", 1),
        ("networkpolicy", 1),
    ])
    def test_core_resources_exist(self, kind, min_count):
        """Core Kubernetes resources must exist with tenant tracking labels."""
        items = _list_resources_by_label(kind, namespace=DEPLOYMENT_NAMESPACE)
        assert items is not None, f"Resource type '{kind}' not available on cluster"
        names = [item["metadata"]["name"] for item in items]
&gt;       assert len(items) &gt;= min_count, (
            f"Expected &gt;= {min_count} {kind}(s) with label {TENANT_LABEL_SELECTOR} "
            f"in namespace {DEPLOYMENT_NAMESPACE}, found {len(items)}: {names}"
        )
E       AssertionError: Expected &gt;= 2 service(s) with label maas.opendatahub.io/tenant-name=default-tenant in namespace opendatahub, found 1: ['maas-api']
E       assert 1 &gt;= 2
E        +  where 1 = len([{'apiVersion': 'v1', 'kind': 'Service', 'metadata': {'annotations': {'service.alpha.openshift.io/serving-cert-signed-by': 'openshift-service-serving-signer@1779286090', 'service.beta.openshift.io/serving-cert-secret-name': 'maas-api-serving-cert', 'service.beta.openshift.io/serving-cert-signed-by': 'openshift-service-serving-signer@1779286090'}, 'creationTimestamp': '2026-05-20T14:16:59Z', 'labels': {'app.kubernetes.io/component': 'api', 'app.kubernetes.io/name': 'maas-api', 'app.kubernetes.io/part-of': 'models-as-a-service', 'app.opendatahub.io/modelsasservice': 'true', ...}, 'name': 'maas-api', ...}, 'spec': {'clusterIP': '172.31.209.213', 'clusterIPs': ['172.31.209.213'], 'internalTrafficPolicy': 'Cluster', 'ipFamilies': ['IPv4'], ...}, ...}])

test/e2e/tests/test_tenant_health.py:220: AssertionError</failure></testcase><testcase classname="test.e2e.tests.test_tenant_health.TestTenantManagedResources" name="test_core_resources_exist[serviceaccount-1]" time="0.113" /><testcase classname="test.e2e.tests.test_tenant_health.TestTenantManagedResources" name="test_core_resources_exist[cronjob-1]" time="0.127" /><testcase classname="test.e2e.tests.test_tenant_health.TestTenantManagedResources" name="test_core_resources_exist[configmap-1]" time="0.123" /><testcase classname="test.e2e.tests.test_tenant_health.TestTenantManagedResources" name="test_core_resources_exist[networkpolicy-1]" time="0.110" /><testcase classname="test.e2e.tests.test_tenant_health.TestTenantManagedResources" name="test_networking_resources_exist[httproute.gateway.networking.k8s.io-1]" time="0.145" /><testcase classname="test.e2e.tests.test_tenant_health.TestTenantManagedResources" name="test_networking_resources_exist[authpolicy.kuadrant.io-1]" time="0.137" /><testcase classname="test.e2e.tests.test_tenant_health.TestTenantManagedResources" name="test_rbac_resources_exist[clusterrole-1]" time="0.112" /><testcase classname="test.e2e.tests.test_tenant_health.TestTenantManagedResources" name="test_rbac_resources_exist[clusterrolebinding-1]" time="0.105" /><testcase classname="test.e2e.tests.test_tenant_health.TestTenantManagedResources" name="test_monitoring_resources_exist" time="0.146" /><testcase classname="test.e2e.tests.test_tenant_health.TestTenantManagedResources" name="test_optional_resources_exist[persesdashboard.perses.dev-perses.dev-persesdashboards]" time="0.123"><skipped type="pytest.skip" message="CRD persesdashboards.perses.dev not registered on cluster">/workspace/source/test/e2e/tests/test_tenant_health.py:272: CRD persesdashboards.perses.dev not registered on cluster</skipped></testcase><testcase classname="test.e2e.tests.test_tenant_health.TestTenantManagedResources" name="test_optional_resources_exist[persesdatasource.perses.dev-perses.dev-persesdatasources]" time="0.117"><skipped type="pytest.skip" message="CRD persesdatasources.perses.dev not registered on cluster">/workspace/source/test/e2e/tests/test_tenant_health.py:272: CRD persesdatasources.perses.dev not registered on cluster</skipped></testcase><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyCRUD" name="test_create_api_key" time="0.110" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyCRUD" name="test_list_api_keys" time="0.133" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyCRUD" name="test_revoke_api_key" time="0.080" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyAuthorization" name="test_admin_manage_other_users_keys" time="0.115" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyAuthorization" name="test_non_admin_cannot_access_other_users_keys" time="0.082" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyBulkOperations" name="test_bulk_revoke_own_keys" time="0.228" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyBulkOperations" name="test_bulk_revoke_other_user_forbidden" time="0.029" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyBulkOperations" name="test_bulk_revoke_admin_can_revoke_any_user" time="0.100" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyExpiration" name="test_create_key_within_expiration_limit" time="0.028" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyExpiration" name="test_create_key_at_expiration_limit" time="0.028" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyExpiration" name="test_create_key_exceeds_expiration_limit" time="0.028" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyExpiration" name="test_create_key_without_expiration" time="0.026" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyExpiration" name="test_create_key_with_short_expiration" time="0.027" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyModelInference" name="test_api_key_model_access_success" time="0.146" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyModelInference" name="test_invalid_api_key_rejected" time="0.023" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyModelInference" name="test_no_auth_header_rejected" time="0.019" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyModelInference" name="test_revoked_api_key_rejected" time="2.113" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyModelInference" name="test_api_key_chat_completions" time="0.032" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyRevocationE2E" name="test_double_revoke_returns_404" time="0.084" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyRevocationE2E" name="test_revoke_nonexistent_key_returns_404" time="0.025" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyRevocationE2E" name="test_revoke_then_create_new_key_works" time="0.128" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyRevocationE2E" name="test_individual_revoke_multiple_keys" time="0.165" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyRevocationE2E" name="test_revoke_keys_rejected_at_gateway" time="0.267" /><testcase classname="test.e2e.tests.test_api_keys.TestEphemeralKeyCleanup" name="test_cronjob_exists_and_configured" time="0.110" /><testcase classname="test.e2e.tests.test_api_keys.TestEphemeralKeyCleanup" name="test_cleanup_networkpolicy_exists" time="0.105" /><testcase classname="test.e2e.tests.test_api_keys.TestEphemeralKeyCleanup" name="test_create_ephemeral_key" time="0.088" /><testcase classname="test.e2e.tests.test_api_keys.TestEphemeralKeyCleanup" name="test_trigger_cleanup_preserves_active_keys" time="0.511" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeySubscriptionPhases" name="test_create_key_for_active_subscription" time="9.243" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeySubscriptionPhases" name="test_create_key_for_degraded_subscription" time="19.193" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeySubscriptionPhases" name="test_create_key_for_failed_subscription" time="19.303" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeySubscriptionPhases" name="test_create_key_for_pending_subscription" time="19.329" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeySubscriptionPhases" name="test_reject_key_for_unreconciled_subscription" time="23.137" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeySubscriptionFilter" name="test_search_filters_by_subscription" time="10.135" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeySubscriptionFilter" name="test_search_without_subscription_returns_all" time="0.146" /><testcase classname="test.e2e.tests.test_namespace_scoping.TestMaaSAPIWatchNamespace" name="test_subscription_in_subscription_namespace_visible_to_api" time="8.537" /><testcase classname="test.e2e.tests.test_namespace_scoping.TestMaaSAPIWatchNamespace" name="test_subscription_in_another_namespace_not_visible_to_api" time="22.796" /><testcase classname="test.e2e.tests.test_namespace_scoping.TestMaaSControllerWatchNamespace" name="test_authpolicy_and_subscription_in_maas_subscription_namespace" time="23.938" /><testcase classname="test.e2e.tests.test_namespace_scoping.TestMaaSControllerWatchNamespace" name="test_authpolicy_and_subscription_in_another_namespace" time="30.569" /><testcase classname="test.e2e.tests.test_namespace_scoping.TestModelRef" name="test_auth_policy_model_ref" time="31.685" /><testcase classname="test.e2e.tests.test_namespace_scoping.TestModelRef" name="test_subscription_model_ref" time="31.452" /><testcase classname="test.e2e.tests.test_negative_security.TestHeaderSpoofing" name="test_injected_identity_headers_ignored" time="0.075" /><testcase classname="test.e2e.tests.test_negative_security.TestHeaderSpoofing" name="test_duplicate_subscription_headers_ignored" time="0.067" /><testcase classname="test.e2e.tests.test_negative_security.TestExpiredKeyRejection" name="test_expired_key_rejected_at_gateway" time="5.066" /><testcase classname="test.e2e.tests.test_negative_security.TestCrossModelAccess" name="test_key_cannot_access_model_outside_subscription" time="0.051" /><testcase classname="test.e2e.tests.test_negative_security.TestAuthPolicyRemoval" name="test_authpolicy_deletion_revokes_access" time="7.158" /><testcase classname="test.e2e.tests.test_negative_security.TestMissingModelRef" name="test_subscription_with_nonexistent_model_ref" time="1.004" /><testcase classname="test.e2e.tests.test_negative_security.TestMissingModelRef" name="test_authpolicy_with_nonexistent_model_ref" time="0.687" /><testcase classname="test.e2e.tests.test_negative_security.TestHeaderAbuse" name="test_special_characters_in_subscription_header" time="0.152" /><testcase classname="test.e2e.tests.test_subscription.TestAuthEnforcement" name="test_authorized_user_gets_200" time="0.054" /><testcase classname="test.e2e.tests.test_subscription.TestAuthEnforcement" name="test_no_auth_gets_401" time="0.023" /><testcase classname="test.e2e.tests.test_subscription.TestAuthEnforcement" name="test_invalid_token_gets_403" time="0.019" /><testcase classname="test.e2e.tests.test_subscription.TestAuthEnforcement" name="test_wrong_group_gets_403" time="0.029" /><testcase classname="test.e2e.tests.test_subscription.TestAPIKeySubscriptionBinding" name="test_create_api_key_uses_highest_priority_subscription" time="0.277" /><testcase classname="test.e2e.tests.test_subscription.TestAPIKeySubscriptionBinding" name="test_create_api_key_with_explicit_simulator_subscription" time="0.054" /><testcase classname="test.e2e.tests.test_subscription.TestAPIKeySubscriptionBinding" name="test_create_api_key_nonexistent_subscription_errors" time="0.257" /><testcase classname="test.e2e.tests.test_subscription.TestSubscriptionEnforcement" name="test_subscribed_user_gets_200" time="0.032" /><testcase classname="test.e2e.tests.test_subscription.TestSubscriptionEnforcement" name="test_auth_pass_no_subscription_gets_403" time="16.399" /><testcase classname="test.e2e.tests.test_subscription.TestSubscriptionEnforcement" name="test_rate_limit_exhaustion_gets_429" time="25.568" /><testcase classname="test.e2e.tests.test_subscription.TestSubscriptionEnforcement" name="test_models_endpoint_exempt_from_rate_limiting" time="25.242" /><testcase classname="test.e2e.tests.test_subscription.TestMultipleSubscriptionsPerModel" name="test_user_in_one_of_two_subscriptions_gets_200" time="8.396" /><testcase classname="test.e2e.tests.test_subscription.TestMultipleAuthPoliciesPerModel" name="test_two_auth_policies_or_logic" time="16.783" /><testcase classname="test.e2e.tests.test_subscription.TestMultipleAuthPoliciesPerModel" name="test_delete_one_auth_policy_other_still_works" time="24.538" /><testcase classname="test.e2e.tests.test_subscription.TestCascadeDeletion" name="test_delete_subscription_rebuilds_trlp" time="8.519" /><testcase classname="test.e2e.tests.test_subscription.TestCascadeDeletion" name="test_trlp_persists_during_multi_subscription_deletion" time="33.374" /><testcase classname="test.e2e.tests.test_subscription.TestCascadeDeletion" name="test_delete_last_subscription_denies_access" time="8.535" /><testcase classname="test.e2e.tests.test_subscription.TestCascadeDeletion" name="test_unconfigured_model_denied_by_gateway_auth" time="0.458" /><testcase classname="test.e2e.tests.test_subscription.TestOrderingEdgeCases" name="test_subscription_before_auth_policy" time="21.023" /><testcase classname="test.e2e.tests.test_subscription.TestManagedAnnotation" name="test_authpolicy_managed_false_prevents_update" time="21.252" /><testcase classname="test.e2e.tests.test_subscription.TestManagedAnnotation" name="test_trlp_managed_false_prevents_update" time="17.465" /><testcase classname="test.e2e.tests.test_subscription.TestE2ESubscriptionFlow" name="test_e2e_with_both_access_and_subscription_gets_200" time="11.782" /><testcase classname="test.e2e.tests.test_subscription.TestE2ESubscriptionFlow" name="test_e2e_with_access_but_no_subscription_gets_403" time="17.192" /><testcase classname="test.e2e.tests.test_subscription.TestE2ESubscriptionFlow" name="test_e2e_with_subscription_but_no_access_gets_403" time="17.827" /><testcase classname="test.e2e.tests.test_subscription.TestE2ESubscriptionFlow" name="test_e2e_single_subscription_auto_selects" time="17.499" /><testcase classname="test.e2e.tests.test_subscription.TestE2ESubscriptionFlow" name="test_e2e_multiple_subscriptions_separate_keys_gets_200" time="17.464" /><testcase classname="test.e2e.tests.test_subscription.TestE2ESubscriptionFlow" name="test_e2e_mint_api_key_denied_for_inaccessible_subscription" time="17.700" /><testcase classname="test.e2e.tests.test_subscription.TestE2ESubscriptionFlow" name="test_e2e_group_based_access_gets_200" time="17.083" /><testcase classname="test.e2e.tests.test_subscription.TestE2ESubscriptionFlow" name="test_e2e_group_based_auth_but_no_subscription_gets_403" time="17.336" /><testcase classname="test.e2e.tests.test_subscription.TestE2ESubscriptionFlow" name="test_e2e_group_based_subscription_but_no_auth_gets_403" time="17.567" /><testcase classname="test.e2e.tests.test_subscription.TestStatusReporting" name="test_subscription_active_status_with_valid_model" time="9.270" /><testcase classname="test.e2e.tests.test_subscription.TestStatusReporting" name="test_subscription_failed_status_with_missing_model" time="8.797" /><testcase classname="test.e2e.tests.test_subscription.TestStatusReporting" name="test_authpolicy_active_status_with_valid_model" time="8.764" /><testcase classname="test.e2e.tests.test_subscription.TestStatusReporting" name="test_authpolicy_failed_status_with_missing_model" time="8.813" /><testcase classname="test.e2e.tests.test_subscription.TestStatusReporting" name="test_subscription_degraded_status_with_partial_models" time="9.123" /><testcase classname="test.e2e.tests.test_subscription.TestStatusReporting" name="test_subscription_degraded_trlp_blocks_inference" time="97.828" /><testcase classname="test.e2e.tests.test_subscription.TestStatusReporting" name="test_authpolicy_degraded_status_with_partial_models" time="8.780" /><testcase classname="test.e2e.tests.test_subscription.TestStatusReporting" name="test_subscription_status_transitions_on_model_deletion" time="24.420" /><testcase classname="test.e2e.tests.test_subscription.TestDegradedSubscriptionFiltering" name="test_degraded_healthy_model_allows_inference" time="19.232" /><testcase classname="test.e2e.tests.test_subscription.TestDegradedSubscriptionFiltering" name="test_failed_subscription_blocks_inference" time="19.613" /><testcase classname="test.e2e.tests.test_subscription.TestDegradedSubscriptionFiltering" name="test_models_endpoint_with_degraded_subscription_api_key" time="19.241" /><testcase classname="test.e2e.tests.test_subscription.TestDegradedSubscriptionFiltering" name="test_models_endpoint_with_degraded_subscription_kube_token" time="19.199" /><testcase classname="test.e2e.tests.test_models_endpoint.TestModelsEndpoint" name="test_single_subscription_auto_select" time="42.301" /><testcase classname="test.e2e.tests.test_models_endpoint.TestModelsEndpoint" name="test_explicit_subscription_header" time="16.739" /><testcase classname="test.e2e.tests.test_models_endpoint.TestModelsEndpoint" name="test_empty_subscription_header_value" time="8.440" /><testcase classname="test.e2e.tests.test_models_endpoint.TestModelsEndpoint" name="test_models_filtered_by_subscription" time="8.817" /><testcase classname="test.e2e.tests.test_models_endpoint.TestModelsEndpoint" name="test_deduplication_same_model_multiple_refs" time="17.207" /><testcase classname="test.e2e.tests.test_models_endpoint.TestModelsEndpoint" name="test_different_modelrefs_same_model_id" time="19.313" /><testcase classname="test.e2e.tests.test_models_endpoint.TestModelsEndpoint" name="test_multiple_distinct_models_in_subscription" time="19.349" /><testcase classname="test.e2e.tests.test_models_endpoint.TestModelsEndpoint" name="test_user_token_returns_all_models" time="16.494" /><testcase classname="test.e2e.tests.test_models_endpoint.TestModelsEndpoint" name="test_user_token_with_subscription_header_filters" time="17.045" /><testcase classname="test.e2e.tests.test_models_endpoint.TestModelsEndpoint" name="test_empty_model_list" time="10.989" /><testcase classname="test.e2e.tests.test_models_endpoint.TestModelsEndpoint" name="test_response_schema_matches_openapi" time="8.386" /><testcase classname="test.e2e.tests.test_models_endpoint.TestModelsEndpoint" name="test_model_metadata_preserved" time="8.400" /><testcase classname="test.e2e.tests.test_models_endpoint.TestModelsEndpoint" name="test_api_key_scoped_to_subscription" time="17.186" /><testcase classname="test.e2e.tests.test_models_endpoint.TestModelsEndpoint" name="test_api_key_with_deleted_subscription_403" time="25.268" /><testcase classname="test.e2e.tests.test_models_endpoint.TestModelsEndpoint" name="test_api_key_with_inaccessible_subscription_403" time="17.410" /><testcase classname="test.e2e.tests.test_models_endpoint.TestModelsEndpoint" name="test_invalid_subscription_header_403" time="17.067" /><testcase classname="test.e2e.tests.test_models_endpoint.TestModelsEndpoint" name="test_access_denied_to_subscription_403" time="17.822" /><testcase classname="test.e2e.tests.test_models_endpoint.TestModelsEndpoint" name="test_api_key_ignores_subscription_header" time="22.437" /><testcase classname="test.e2e.tests.test_models_endpoint.TestModelsEndpoint" name="test_multiple_api_keys_different_subscriptions" time="22.570" /><testcase classname="test.e2e.tests.test_models_endpoint.TestModelsEndpoint" name="test_service_account_token_multiple_subs_no_header" time="16.741" /><testcase classname="test.e2e.tests.test_models_endpoint.TestModelsEndpoint" name="test_service_account_token_multiple_subs_with_header" time="16.737" /><testcase classname="test.e2e.tests.test_models_endpoint.TestModelsEndpoint" name="test_unauthenticated_request_401" time="0.034" /><testcase classname="test.e2e.tests.test_models_endpoint.TestModelsEndpoint" name="test_central_models_endpoint_exempt_from_rate_limiting" time="25.347" /><testcase classname="test.e2e.tests.test_external_models.TestExternalModelDiscovery" name="test_maasmodelref_created" time="7.368" /><testcase classname="test.e2e.tests.test_external_models.TestExternalModelDiscovery" name="test_reconciler_created_httproute" time="0.115" /><testcase classname="test.e2e.tests.test_external_models.TestExternalModelDiscovery" name="test_reconciler_created_backend_service" time="0.134" /><testcase classname="test.e2e.tests.test_external_models.TestExternalModelAuth" name="test_invalid_key_returns_401" time="0.026" /><testcase classname="test.e2e.tests.test_external_models.TestExternalModelAuth" name="test_no_key_returns_401" time="0.024" /><testcase classname="test.e2e.tests.test_external_models.TestExternalModelEgress" name="test_request_forwarded_returns_200" time="0.040" /><testcase classname="test.e2e.tests.test_external_models.TestExternalModelCleanup" name="test_delete_removes_httproute" time="37.639" /></testsuite></testsuites>