<?xml version="1.0" encoding="utf-8"?><testsuites name="pytest tests"><testsuite name="pytest" errors="5" failures="0" skipped="0" tests="18" time="14.854" timestamp="2026-07-07T14:45:21.738669+00:00" hostname="maas-group-test-sbbfg-e2e-maas-openshift-pod"><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyCRUD" name="test_create_api_key" time="0.107" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyCRUD" name="test_list_api_keys" time="0.158" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyCRUD" name="test_revoke_api_key" time="0.108" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyAuthorization" name="test_admin_manage_other_users_keys" time="0.147" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyAuthorization" name="test_non_admin_cannot_access_other_users_keys" time="0.106" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyBulkOperations" name="test_bulk_revoke_own_keys" time="0.283" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyBulkOperations" name="test_bulk_revoke_other_user_forbidden" time="0.034" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyBulkOperations" name="test_bulk_revoke_admin_can_revoke_any_user" time="0.103" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyExpiration" name="test_create_key_within_expiration_limit" time="0.036" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyExpiration" name="test_create_key_at_expiration_limit" time="0.034" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyExpiration" name="test_create_key_exceeds_expiration_limit" time="0.033" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyExpiration" name="test_create_key_without_expiration" time="0.039" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyExpiration" name="test_create_key_with_short_expiration" time="0.033" /><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyModelInference" name="test_api_key_model_access_success" time="12.855"><error message="failed on setup with &quot;requests.exceptions.HTTPError: 503 Server Error: Service Unavailable for url: https://maas.apps.aab75412-4996-4988-9830-4a3554b4b8e0.prod.konfluxeaas.com/maas-api/v1/models&quot;">maas_api_base_url = 'https://maas.apps.aab75412-4996-4988-9830-4a3554b4b8e0.prod.konfluxeaas.com/maas-api'
headers = {'Authorization': 'Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6Ikw4aWZ6MURGdmh4UUIzN3UxbFZjQ3lNTDBhRExQd2pxVUJZNU9xcG5iSXMifQ.e..._rikqVo1z1hKwrp7zAPEonFnklqf8xQFcTb1AKqpnLPFML2Kow-htkkIm38sHydYy9uT7Uam23JoLMLXg', 'Content-Type': 'application/json'}

    @pytest.fixture(scope="session")
    def model_catalog(maas_api_base_url: str, headers: dict):
        r = requests.get(f"{maas_api_base_url}/v1/models", headers=headers, timeout=45, verify=TLS_VERIFY)
&gt;       r.raise_for_status()

test/e2e/tests/conftest.py:165: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = &lt;Response [503]&gt;

    def raise_for_status(self):
        """Raises :class:`HTTPError`, if one occurred."""
    
        http_error_msg = ""
        if isinstance(self.reason, bytes):
            # We attempt to decode utf-8 first because some servers
            # choose to localize their reason strings. If the string
            # isn't utf-8, we fall back to iso-8859-1 for all other
            # encodings. (See PR #3538)
            try:
                reason = self.reason.decode("utf-8")
            except UnicodeDecodeError:
                reason = self.reason.decode("iso-8859-1")
        else:
            reason = self.reason
    
        if 400 &lt;= self.status_code &lt; 500:
            http_error_msg = (
                f"{self.status_code} Client Error: {reason} for url: {self.url}"
            )
    
        elif 500 &lt;= self.status_code &lt; 600:
            http_error_msg = (
                f"{self.status_code} Server Error: {reason} for url: {self.url}"
            )
    
        if http_error_msg:
&gt;           raise HTTPError(http_error_msg, response=self)
E           requests.exceptions.HTTPError: 503 Server Error: Service Unavailable for url: https://maas.apps.aab75412-4996-4988-9830-4a3554b4b8e0.prod.konfluxeaas.com/maas-api/v1/models

test/e2e/.venv/lib64/python3.9/site-packages/requests/models.py:1026: HTTPError</error></testcase><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyModelInference" name="test_invalid_api_key_rejected" time="0.000"><error message="failed on setup with &quot;requests.exceptions.HTTPError: 503 Server Error: Service Unavailable for url: https://maas.apps.aab75412-4996-4988-9830-4a3554b4b8e0.prod.konfluxeaas.com/maas-api/v1/models&quot;">maas_api_base_url = 'https://maas.apps.aab75412-4996-4988-9830-4a3554b4b8e0.prod.konfluxeaas.com/maas-api'
headers = {'Authorization': 'Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6Ikw4aWZ6MURGdmh4UUIzN3UxbFZjQ3lNTDBhRExQd2pxVUJZNU9xcG5iSXMifQ.e..._rikqVo1z1hKwrp7zAPEonFnklqf8xQFcTb1AKqpnLPFML2Kow-htkkIm38sHydYy9uT7Uam23JoLMLXg', 'Content-Type': 'application/json'}

    @pytest.fixture(scope="session")
    def model_catalog(maas_api_base_url: str, headers: dict):
        r = requests.get(f"{maas_api_base_url}/v1/models", headers=headers, timeout=45, verify=TLS_VERIFY)
&gt;       r.raise_for_status()

test/e2e/tests/conftest.py:165: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = &lt;Response [503]&gt;

    def raise_for_status(self):
        """Raises :class:`HTTPError`, if one occurred."""
    
        http_error_msg = ""
        if isinstance(self.reason, bytes):
            # We attempt to decode utf-8 first because some servers
            # choose to localize their reason strings. If the string
            # isn't utf-8, we fall back to iso-8859-1 for all other
            # encodings. (See PR #3538)
            try:
                reason = self.reason.decode("utf-8")
            except UnicodeDecodeError:
                reason = self.reason.decode("iso-8859-1")
        else:
            reason = self.reason
    
        if 400 &lt;= self.status_code &lt; 500:
            http_error_msg = (
                f"{self.status_code} Client Error: {reason} for url: {self.url}"
            )
    
        elif 500 &lt;= self.status_code &lt; 600:
            http_error_msg = (
                f"{self.status_code} Server Error: {reason} for url: {self.url}"
            )
    
        if http_error_msg:
&gt;           raise HTTPError(http_error_msg, response=self)
E           requests.exceptions.HTTPError: 503 Server Error: Service Unavailable for url: https://maas.apps.aab75412-4996-4988-9830-4a3554b4b8e0.prod.konfluxeaas.com/maas-api/v1/models

test/e2e/.venv/lib64/python3.9/site-packages/requests/models.py:1026: HTTPError</error></testcase><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyModelInference" name="test_no_auth_header_rejected" time="0.000"><error message="failed on setup with &quot;requests.exceptions.HTTPError: 503 Server Error: Service Unavailable for url: https://maas.apps.aab75412-4996-4988-9830-4a3554b4b8e0.prod.konfluxeaas.com/maas-api/v1/models&quot;">maas_api_base_url = 'https://maas.apps.aab75412-4996-4988-9830-4a3554b4b8e0.prod.konfluxeaas.com/maas-api'
headers = {'Authorization': 'Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6Ikw4aWZ6MURGdmh4UUIzN3UxbFZjQ3lNTDBhRExQd2pxVUJZNU9xcG5iSXMifQ.e..._rikqVo1z1hKwrp7zAPEonFnklqf8xQFcTb1AKqpnLPFML2Kow-htkkIm38sHydYy9uT7Uam23JoLMLXg', 'Content-Type': 'application/json'}

    @pytest.fixture(scope="session")
    def model_catalog(maas_api_base_url: str, headers: dict):
        r = requests.get(f"{maas_api_base_url}/v1/models", headers=headers, timeout=45, verify=TLS_VERIFY)
&gt;       r.raise_for_status()

test/e2e/tests/conftest.py:165: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = &lt;Response [503]&gt;

    def raise_for_status(self):
        """Raises :class:`HTTPError`, if one occurred."""
    
        http_error_msg = ""
        if isinstance(self.reason, bytes):
            # We attempt to decode utf-8 first because some servers
            # choose to localize their reason strings. If the string
            # isn't utf-8, we fall back to iso-8859-1 for all other
            # encodings. (See PR #3538)
            try:
                reason = self.reason.decode("utf-8")
            except UnicodeDecodeError:
                reason = self.reason.decode("iso-8859-1")
        else:
            reason = self.reason
    
        if 400 &lt;= self.status_code &lt; 500:
            http_error_msg = (
                f"{self.status_code} Client Error: {reason} for url: {self.url}"
            )
    
        elif 500 &lt;= self.status_code &lt; 600:
            http_error_msg = (
                f"{self.status_code} Server Error: {reason} for url: {self.url}"
            )
    
        if http_error_msg:
&gt;           raise HTTPError(http_error_msg, response=self)
E           requests.exceptions.HTTPError: 503 Server Error: Service Unavailable for url: https://maas.apps.aab75412-4996-4988-9830-4a3554b4b8e0.prod.konfluxeaas.com/maas-api/v1/models

test/e2e/.venv/lib64/python3.9/site-packages/requests/models.py:1026: HTTPError</error></testcase><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyModelInference" name="test_revoked_api_key_rejected" time="0.000"><error message="failed on setup with &quot;requests.exceptions.HTTPError: 503 Server Error: Service Unavailable for url: https://maas.apps.aab75412-4996-4988-9830-4a3554b4b8e0.prod.konfluxeaas.com/maas-api/v1/models&quot;">maas_api_base_url = 'https://maas.apps.aab75412-4996-4988-9830-4a3554b4b8e0.prod.konfluxeaas.com/maas-api'
headers = {'Authorization': 'Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6Ikw4aWZ6MURGdmh4UUIzN3UxbFZjQ3lNTDBhRExQd2pxVUJZNU9xcG5iSXMifQ.e..._rikqVo1z1hKwrp7zAPEonFnklqf8xQFcTb1AKqpnLPFML2Kow-htkkIm38sHydYy9uT7Uam23JoLMLXg', 'Content-Type': 'application/json'}

    @pytest.fixture(scope="session")
    def model_catalog(maas_api_base_url: str, headers: dict):
        r = requests.get(f"{maas_api_base_url}/v1/models", headers=headers, timeout=45, verify=TLS_VERIFY)
&gt;       r.raise_for_status()

test/e2e/tests/conftest.py:165: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = &lt;Response [503]&gt;

    def raise_for_status(self):
        """Raises :class:`HTTPError`, if one occurred."""
    
        http_error_msg = ""
        if isinstance(self.reason, bytes):
            # We attempt to decode utf-8 first because some servers
            # choose to localize their reason strings. If the string
            # isn't utf-8, we fall back to iso-8859-1 for all other
            # encodings. (See PR #3538)
            try:
                reason = self.reason.decode("utf-8")
            except UnicodeDecodeError:
                reason = self.reason.decode("iso-8859-1")
        else:
            reason = self.reason
    
        if 400 &lt;= self.status_code &lt; 500:
            http_error_msg = (
                f"{self.status_code} Client Error: {reason} for url: {self.url}"
            )
    
        elif 500 &lt;= self.status_code &lt; 600:
            http_error_msg = (
                f"{self.status_code} Server Error: {reason} for url: {self.url}"
            )
    
        if http_error_msg:
&gt;           raise HTTPError(http_error_msg, response=self)
E           requests.exceptions.HTTPError: 503 Server Error: Service Unavailable for url: https://maas.apps.aab75412-4996-4988-9830-4a3554b4b8e0.prod.konfluxeaas.com/maas-api/v1/models

test/e2e/.venv/lib64/python3.9/site-packages/requests/models.py:1026: HTTPError</error></testcase><testcase classname="test.e2e.tests.test_api_keys.TestAPIKeyModelInference" name="test_api_key_chat_completions" time="0.001"><error message="failed on setup with &quot;requests.exceptions.HTTPError: 503 Server Error: Service Unavailable for url: https://maas.apps.aab75412-4996-4988-9830-4a3554b4b8e0.prod.konfluxeaas.com/maas-api/v1/models&quot;">maas_api_base_url = 'https://maas.apps.aab75412-4996-4988-9830-4a3554b4b8e0.prod.konfluxeaas.com/maas-api'
headers = {'Authorization': 'Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6Ikw4aWZ6MURGdmh4UUIzN3UxbFZjQ3lNTDBhRExQd2pxVUJZNU9xcG5iSXMifQ.e..._rikqVo1z1hKwrp7zAPEonFnklqf8xQFcTb1AKqpnLPFML2Kow-htkkIm38sHydYy9uT7Uam23JoLMLXg', 'Content-Type': 'application/json'}

    @pytest.fixture(scope="session")
    def model_catalog(maas_api_base_url: str, headers: dict):
        r = requests.get(f"{maas_api_base_url}/v1/models", headers=headers, timeout=45, verify=TLS_VERIFY)
&gt;       r.raise_for_status()

test/e2e/tests/conftest.py:165: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = &lt;Response [503]&gt;

    def raise_for_status(self):
        """Raises :class:`HTTPError`, if one occurred."""
    
        http_error_msg = ""
        if isinstance(self.reason, bytes):
            # We attempt to decode utf-8 first because some servers
            # choose to localize their reason strings. If the string
            # isn't utf-8, we fall back to iso-8859-1 for all other
            # encodings. (See PR #3538)
            try:
                reason = self.reason.decode("utf-8")
            except UnicodeDecodeError:
                reason = self.reason.decode("iso-8859-1")
        else:
            reason = self.reason
    
        if 400 &lt;= self.status_code &lt; 500:
            http_error_msg = (
                f"{self.status_code} Client Error: {reason} for url: {self.url}"
            )
    
        elif 500 &lt;= self.status_code &lt; 600:
            http_error_msg = (
                f"{self.status_code} Server Error: {reason} for url: {self.url}"
            )
    
        if http_error_msg:
&gt;           raise HTTPError(http_error_msg, response=self)
E           requests.exceptions.HTTPError: 503 Server Error: Service Unavailable for url: https://maas.apps.aab75412-4996-4988-9830-4a3554b4b8e0.prod.konfluxeaas.com/maas-api/v1/models

test/e2e/.venv/lib64/python3.9/site-packages/requests/models.py:1026: HTTPError</error></testcase></testsuite></testsuites>