tinker/tests/api_resources/test_service.py
2025-10-15 16:37:21 +00:00

126 lines
5.2 KiB
Python

from __future__ import annotations
import os
from typing import Any, cast
import pytest
from tinker import Tinker, AsyncTinker
from tests.utils import assert_matches_type
from tinker.types import HealthResponse, GetServerCapabilitiesResponse
base_url = os.environ.get("TEST_API_BASE_URL", "http://127.0.0.1:4010")
class TestService:
parametrize = pytest.mark.parametrize("client", [False, True], indirect=True, ids=["loose", "strict"])
@pytest.mark.skip(reason="Prism tests are disabled")
@parametrize
def test_method_get_server_capabilities(self, client: Tinker) -> None:
service = client.service.get_server_capabilities()
assert_matches_type(GetServerCapabilitiesResponse, service, path=["response"])
@pytest.mark.skip(reason="Prism tests are disabled")
@parametrize
def test_raw_response_get_server_capabilities(self, client: Tinker) -> None:
response = client.service.with_raw_response.get_server_capabilities()
assert response.is_closed is True
service = response.parse()
assert_matches_type(GetServerCapabilitiesResponse, service, path=["response"])
@pytest.mark.skip(reason="Prism tests are disabled")
@parametrize
def test_streaming_response_get_server_capabilities(self, client: Tinker) -> None:
with client.service.with_streaming_response.get_server_capabilities() as response:
assert not response.is_closed
service = response.parse()
assert_matches_type(GetServerCapabilitiesResponse, service, path=["response"])
assert cast(Any, response.is_closed) is True
@pytest.mark.skip(reason="Prism tests are disabled")
@parametrize
def test_method_health_check(self, client: Tinker) -> None:
service = client.service.health_check()
assert_matches_type(HealthResponse, service, path=["response"])
@pytest.mark.skip(reason="Prism tests are disabled")
@parametrize
def test_raw_response_health_check(self, client: Tinker) -> None:
response = client.service.with_raw_response.health_check()
assert response.is_closed is True
service = response.parse()
assert_matches_type(HealthResponse, service, path=["response"])
@pytest.mark.skip(reason="Prism tests are disabled")
@parametrize
def test_streaming_response_health_check(self, client: Tinker) -> None:
with client.service.with_streaming_response.health_check() as response:
assert not response.is_closed
service = response.parse()
assert_matches_type(HealthResponse, service, path=["response"])
assert cast(Any, response.is_closed) is True
class TestAsyncService:
parametrize = pytest.mark.parametrize(
"async_client", [False, True, {"http_client": "aiohttp"}], indirect=True, ids=["loose", "strict", "aiohttp"]
)
@pytest.mark.skip(reason="Prism tests are disabled")
@parametrize
async def test_method_get_server_capabilities(self, async_client: AsyncTinker) -> None:
service = await async_client.service.get_server_capabilities()
assert_matches_type(GetServerCapabilitiesResponse, service, path=["response"])
@pytest.mark.skip(reason="Prism tests are disabled")
@parametrize
async def test_raw_response_get_server_capabilities(self, async_client: AsyncTinker) -> None:
response = await async_client.service.with_raw_response.get_server_capabilities()
assert response.is_closed is True
service = await response.parse()
assert_matches_type(GetServerCapabilitiesResponse, service, path=["response"])
@pytest.mark.skip(reason="Prism tests are disabled")
@parametrize
async def test_streaming_response_get_server_capabilities(self, async_client: AsyncTinker) -> None:
async with async_client.service.with_streaming_response.get_server_capabilities() as response:
assert not response.is_closed
service = await response.parse()
assert_matches_type(GetServerCapabilitiesResponse, service, path=["response"])
assert cast(Any, response.is_closed) is True
@pytest.mark.skip(reason="Prism tests are disabled")
@parametrize
async def test_method_health_check(self, async_client: AsyncTinker) -> None:
service = await async_client.service.health_check()
assert_matches_type(HealthResponse, service, path=["response"])
@pytest.mark.skip(reason="Prism tests are disabled")
@parametrize
async def test_raw_response_health_check(self, async_client: AsyncTinker) -> None:
response = await async_client.service.with_raw_response.health_check()
assert response.is_closed is True
service = await response.parse()
assert_matches_type(HealthResponse, service, path=["response"])
@pytest.mark.skip(reason="Prism tests are disabled")
@parametrize
async def test_streaming_response_health_check(self, async_client: AsyncTinker) -> None:
async with async_client.service.with_streaming_response.health_check() as response:
assert not response.is_closed
service = await response.parse()
assert_matches_type(HealthResponse, service, path=["response"])
assert cast(Any, response.is_closed) is True