mirror of
https://github.com/thinking-machines-lab/tinker.git
synced 2026-04-24 17:04:56 +00:00
Publish Python SDK
Hello world! Signed-off-by: Daniel Xu <dxu@dxuuu.xyz>
This commit is contained in:
commit
829c151ba7
192 changed files with 25717 additions and 0 deletions
136
tests/api_resources/test_service.py
Normal file
136
tests/api_resources/test_service.py
Normal file
|
|
@ -0,0 +1,136 @@
|
|||
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
||||
|
||||
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
|
||||
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
||||
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
|
||||
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
||||
|
||||
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
|
||||
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
||||
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
|
||||
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
||||
|
||||
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
|
||||
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
||||
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
|
||||
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
||||
|
||||
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
|
||||
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
||||
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
|
||||
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
||||
|
||||
service = await response.parse()
|
||||
assert_matches_type(HealthResponse, service, path=["response"])
|
||||
|
||||
assert cast(Any, response.is_closed) is True
|
||||
Loading…
Add table
Add a link
Reference in a new issue