Files
wehub-resource-sync 9201ef759e
CI / lint (push) Waiting to run
CI / mypy (push) Waiting to run
CI / docs (push) Waiting to run
CI / test on 3.10 (standard) (push) Waiting to run
CI / test on 3.11 (standard) (push) Waiting to run
CI / test on 3.12 (standard) (push) Waiting to run
CI / test on 3.10 (all-extras) (push) Waiting to run
CI / test on 3.11 (all-extras) (push) Waiting to run
CI / test on 3.12 (all-extras) (push) Waiting to run
CI / test on 3.13 (all-extras) (push) Waiting to run
CI / test on 3.14 (pydantic-evals) (push) Waiting to run
CI / test on 3.13 (standard) (push) Waiting to run
CI / test on 3.14 (standard) (push) Waiting to run
CI / test on 3.14 (all-extras) (push) Waiting to run
CI / test on 3.10 (pydantic-ai-slim) (push) Waiting to run
CI / test on 3.11 (pydantic-ai-slim) (push) Waiting to run
CI / test on 3.12 (pydantic-ai-slim) (push) Waiting to run
CI / test on 3.13 (pydantic-ai-slim) (push) Waiting to run
CI / test on 3.14 (pydantic-ai-slim) (push) Waiting to run
CI / test on 3.10 (pydantic-evals) (push) Waiting to run
CI / test on 3.11 (pydantic-evals) (push) Waiting to run
CI / test on 3.12 (pydantic-evals) (push) Waiting to run
CI / test on 3.13 (pydantic-evals) (push) Waiting to run
CI / test on 3.10 (lowest-versions) (push) Waiting to run
CI / test on 3.11 (lowest-versions) (push) Waiting to run
CI / test on 3.12 (lowest-versions) (push) Waiting to run
CI / test on 3.13 (lowest-versions) (push) Waiting to run
CI / test on 3.14 (lowest-versions) (push) Waiting to run
CI / test examples on 3.11 (push) Waiting to run
CI / test examples on 3.12 (push) Waiting to run
CI / test examples on 3.13 (push) Waiting to run
CI / test examples on 3.14 (push) Waiting to run
CI / coverage (push) Blocked by required conditions
CI / check (push) Blocked by required conditions
CI / deploy-docs (push) Blocked by required conditions
CI / deploy-docs-preview (push) Blocked by required conditions
CI / build release artifacts (push) Blocked by required conditions
CI / publish to PyPI (push) Blocked by required conditions
CI / Send tweet (push) Blocked by required conditions
Harness Compat / harness compat (push) Failing after 0s
chore: import upstream snapshot with attribution
2026-07-13 13:27:52 +08:00

119 lines
4.0 KiB
Python

import asyncio
import re
import pytest
from pydantic_ai.exceptions import UserError
from ..conftest import TestEnv, try_import
with try_import() as imports_successful:
from xai_sdk import AsyncClient
from pydantic_ai.providers import xai as xai_provider_module
from pydantic_ai.providers.xai import XaiProvider
pytestmark = pytest.mark.skipif(not imports_successful(), reason='xai_sdk not installed')
def test_xai_provider():
provider = XaiProvider(api_key='api-key')
assert provider.name == 'xai'
assert provider.base_url == 'https://api.x.ai/v1'
assert isinstance(provider.client, AsyncClient)
def test_xai_provider_need_api_key(env: TestEnv) -> None:
env.remove('XAI_API_KEY')
with pytest.raises(
UserError,
match=re.escape(
'Set the `XAI_API_KEY` environment variable or pass it via `XaiProvider(api_key=...)`'
' to use the xAI provider.'
),
):
XaiProvider()
def test_xai_pass_xai_client() -> None:
xai_client = AsyncClient(api_key='api-key')
provider = XaiProvider(xai_client=xai_client)
assert provider.client == xai_client
@pytest.fixture
def captured_client_kwargs(monkeypatch: pytest.MonkeyPatch) -> list[dict[str, object]]:
"""Capture the kwargs passed to the xAI `AsyncClient` constructor."""
captured: list[dict[str, object]] = []
class FakeAsyncClient:
def __init__(self, **kwargs: object) -> None:
captured.append(kwargs)
monkeypatch.setattr(xai_provider_module, 'AsyncClient', FakeAsyncClient)
return captured
def test_xai_provider_forwards_api_host_and_timeout(captured_client_kwargs: list[dict[str, object]]) -> None:
provider = XaiProvider(api_key='api-key', api_host='gateway.x.ai', timeout=30)
assert provider.client is not None # triggers lazy client creation
assert captured_client_kwargs == [{'api_key': 'api-key', 'api_host': 'gateway.x.ai', 'timeout': 30}]
def test_xai_provider_omits_unset_client_kwargs(captured_client_kwargs: list[dict[str, object]]) -> None:
provider = XaiProvider(api_key='api-key')
assert provider.client is not None # triggers lazy client creation
assert captured_client_kwargs == [{'api_key': 'api-key'}]
def test_xai_model_profile():
provider = XaiProvider(api_key='api-key')
profile = provider.model_profile('grok-4.3')
assert isinstance(profile, dict)
assert profile.get('grok_supports_builtin_tools', False) is True
assert profile.get('grok_reasoning_efforts') == frozenset({'none', 'low', 'medium', 'high'})
def test_xai_model_profile_grok_4_5():
provider = XaiProvider(api_key='api-key')
profile = provider.model_profile('grok-4.5')
assert isinstance(profile, dict)
assert profile.get('grok_supports_builtin_tools', False) is True
# Grok 4.5 rejects `reasoning_effort='none'`, so it always reasons.
assert profile.get('grok_reasoning_efforts') == frozenset({'low', 'medium', 'high'})
assert profile.get('supports_thinking', False) is True
assert profile.get('thinking_always_enabled', False) is True
def test_xai_provider_recreates_client_on_new_loop():
"""Test that XaiProvider returns a fresh client when the event loop changes."""
provider = XaiProvider(api_key='api-key')
clients: list[AsyncClient] = []
async def get_client():
return provider.client
# Run in two separate event loops — the client should be recreated.
clients.append(asyncio.run(get_client()))
clients.append(asyncio.run(get_client()))
assert isinstance(clients[0], AsyncClient)
assert isinstance(clients[1], AsyncClient)
assert clients[0] is not clients[1]
def test_xai_provider_reuses_client_on_same_loop():
"""Test that XaiProvider reuses the client within the same event loop."""
provider = XaiProvider(api_key='api-key')
async def get_clients_same_loop():
c1 = provider.client
c2 = provider.client
return c1, c2
c1, c2 = asyncio.run(get_clients_same_loop())
assert c1 is c2