litellm/tests/unit/test_responses_api_bridge_non_stream.py
yuneng-jiang f6882246d4
test: move tests/test_litellm root and small trees into tests/unit (#43186)
* ci: run the unit_selection.sh shard files on every event instead of only fork pull requests

Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>

* ci: rename fork-flag to unit-flag now that it applies on every event

* test: move tests/test_litellm root and small trees into tests/unit

Pure renames, no content changes. Follow-up commits in this PR fix
references, merge the three files that already existed in tests/unit,
keep live-provider tests in tests/test_litellm and wire CI.

* test: carry tests/test_litellm conftest isolation into tests/unit

Callback lists, routing fallbacks, cached HTTP clients, logger state, AWS,
proxy-URL and keychain env, and session-end client cleanup now reset for
unit tests too. The environment isolation owns its MonkeyPatch so a test's
own monkeypatch is undone before the model-cost teardown runs.

* test: merge, split and prune the moved root and small-tree tests

Merge batches/test_batch_utils.py and the chat_completions and messages
dispatch tests into the files that already existed in tests/unit. Keep
the live Gemini interactions tests, the async image-fetch format test and
the OpenAI embedding scorer test in tests/test_litellm since they need
real network or keys. Put test_router.py under tests/unit/test_router so
the existing package no longer shadows it. Delete eight tests the audit
found superseded by stronger ones kept in this move.

* ci: run the moved root and small-tree tests under their legacy flags

Add the misc and responses-caching-types flags to unit_selection.sh and
CircleCI, extend enterprise-routing and mcp-integration, and point the
legacy GHA shards, Makefile, redis-compat workflow, merge smoke manifest
and change classifier at the new paths.

* test: make the new tests/unit directories packages

tests/unit/test_package_layout.py requires every directory to carry an
__init__.py, and without one the moved and retained
test_litellm_responses_bridge.py modules collide on import.

* test: scope the unit socket block to tests/unit in shared sessions

The GHA shards collect the legacy test-path and the unit selection in one
pytest session. The unit conftest's loopback-only block leaked into legacy
modules that reach the network at import. The legacy conftest now lifts the
restriction at collect and setup time, and the unit conftest re-applies it
when collecting its own modules.

* test: give the shard-script tests their own GITHUB_OUTPUT

They only passed where the runner set it. The CircleCI unit job's env
allowlist drops it, so the script's redirect failed there.

* test: point the router and module-deletion checks at tests/unit

router_code_coverage and code_qa_check_tests only searched tests/test_litellm,
so the moved router tests no longer counted. The two silent-experiment tests
the audit deleted were the only direct callers of those methods; they are
replaced with tests that assert the forwarded shadow request and the
recursion guard.

---------

Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2026-09-25 11:30:43 -07:00

476 lines
16 KiB
Python

from typing import Final, Optional
from unittest.mock import Mock
import pytest
from litellm.completion_extras.litellm_responses_transformation.handler import (
ResponsesToCompletionBridgeHandler,
)
from litellm.responses.litellm_completion_transformation.transformation import (
LiteLLMCompletionResponsesConfig,
)
from litellm.types.llms.openai import (
InputTokensDetails,
OutputTokensDetails,
ResponsesAPIResponse,
)
from litellm.types.utils import Choices, Message, ModelResponse, Usage
"""
Test that all providers can transform completion responses to Responses API format
without breaking due to required fields in InputTokensDetails and OutputTokensDetails.
This is a regression test for the change where reasoning_tokens and cached_tokens
were made non-optional (must be int, not Optional[int]).
"""
class _CompletedEvent:
def __init__(self, response):
self.response = response
class _FakeResponsesStream:
def __init__(self, response):
self._emitted = False
self._response = response
self.completed_response = None
self._hidden_params = {"headers": {"x-test": "1"}}
def __iter__(self):
return self
def __next__(self):
if not self._emitted:
self._emitted = True
self.completed_response = _CompletedEvent(self._response)
return {"type": "response.completed"}
raise StopIteration
def test_should_collect_response_from_stream():
handler = ResponsesToCompletionBridgeHandler()
response = ResponsesAPIResponse.model_construct(
id="resp-1",
created_at=0,
output=[],
object="response",
model="gpt-5.2",
)
stream = _FakeResponsesStream(response)
collected = handler._collect_response_from_stream(stream)
assert collected.id == "resp-1"
assert collected._hidden_params.get("headers") == {"x-test": "1"}
def create_mock_completion_response(
model: str = "gpt-4",
prompt_tokens: int = 10,
completion_tokens: int = 20,
total_tokens: int = 30,
reasoning_tokens: Optional[int] = None,
cached_tokens: Optional[int] = None,
text_tokens: Optional[int] = None,
) -> ModelResponse:
"""
Create a mock ModelResponse (chat completion) with various token details.
This simulates responses from different providers that may or may not include
reasoning_tokens, cached_tokens, etc.
"""
usage = Usage(
prompt_tokens=prompt_tokens,
completion_tokens=completion_tokens,
total_tokens=total_tokens,
)
# Add prompt_tokens_details if we have cached_tokens or text_tokens
if cached_tokens is not None or text_tokens is not None:
from litellm.types.utils import PromptTokensDetails
usage.prompt_tokens_details = PromptTokensDetails(
cached_tokens=cached_tokens,
text_tokens=text_tokens,
)
# Add completion_tokens_details if we have reasoning_tokens or text_tokens
if reasoning_tokens is not None or text_tokens is not None:
from litellm.types.utils import CompletionTokensDetails
usage.completion_tokens_details = CompletionTokensDetails(
reasoning_tokens=reasoning_tokens,
text_tokens=text_tokens,
)
return ModelResponse(
id="chatcmpl-test",
created=1234567890,
model=model,
object="chat.completion",
choices=[
Choices(
finish_reason="stop",
index=0,
message=Message(
content="Test response",
role="assistant",
),
)
],
usage=usage,
)
def test_transform_usage_no_token_details():
"""
Test that transformation works when completion response has NO token details.
This simulates providers that don't return detailed token breakdowns.
"""
completion_response = create_mock_completion_response(
model="gpt-4",
prompt_tokens=10,
completion_tokens=20,
total_tokens=30,
)
# Transform to Responses API usage format
responses_usage = LiteLLMCompletionResponsesConfig._transform_chat_completion_usage_to_responses_usage(
completion_response
)
# Should succeed without errors
assert responses_usage.input_tokens == 10
assert responses_usage.output_tokens == 20
assert responses_usage.total_tokens == 30
# Token details should not be present when not provided
assert responses_usage.input_tokens_details is None
assert responses_usage.output_tokens_details is None
print("✓ Transformation works with no token details")
def test_transform_usage_with_cached_tokens_only():
"""
Test transformation when only cached_tokens is provided (no reasoning_tokens).
This simulates providers like Anthropic that support prompt caching but not reasoning.
"""
completion_response = create_mock_completion_response(
model="claude-3-opus",
prompt_tokens=100,
completion_tokens=50,
total_tokens=150,
cached_tokens=80, # Has cached tokens
reasoning_tokens=None, # No reasoning tokens
)
responses_usage = LiteLLMCompletionResponsesConfig._transform_chat_completion_usage_to_responses_usage(
completion_response
)
# Should succeed and default reasoning_tokens to 0
assert responses_usage.input_tokens == 100
assert responses_usage.output_tokens == 50
assert responses_usage.total_tokens == 150
# Input details should be present with cached_tokens
assert responses_usage.input_tokens_details is not None
assert isinstance(responses_usage.input_tokens_details, InputTokensDetails)
assert responses_usage.input_tokens_details.cached_tokens == 80
# Output details should not be present (no reasoning_tokens provided)
assert responses_usage.output_tokens_details is None
print("✓ Transformation works with cached_tokens only")
def test_transform_usage_maps_nested_cache_creation_input_tokens():
"""
Regression (LIT-5757): DashScope nests cache_creation_input_tokens inside
prompt_tokens_details; the bridge must surface it as cache_write_tokens.
"""
usage: Final = Usage(
prompt_tokens=2059,
completion_tokens=31,
total_tokens=2090,
prompt_tokens_details={
"cached_tokens": 0,
"text_tokens": 2059,
"cache_type": "ephemeral",
"cache_creation_input_tokens": 2048,
"cache_creation": {"ephemeral_5m_input_tokens": 2048},
},
)
responses_usage: Final = LiteLLMCompletionResponsesConfig._transform_chat_completion_usage_to_responses_usage(
usage
)
assert responses_usage.input_tokens_details is not None
assert responses_usage.input_tokens_details.cache_write_tokens == 2048
def test_transform_usage_with_reasoning_tokens_only():
"""
Test transformation when only reasoning_tokens is provided (no cached_tokens).
This simulates providers like OpenAI o1 that support reasoning but not caching.
"""
completion_response = create_mock_completion_response(
model="o1-preview",
prompt_tokens=50,
completion_tokens=100,
total_tokens=150,
cached_tokens=None, # No cached tokens
reasoning_tokens=60, # Has reasoning tokens
)
responses_usage = LiteLLMCompletionResponsesConfig._transform_chat_completion_usage_to_responses_usage(
completion_response
)
# Should succeed and default cached_tokens to 0
assert responses_usage.input_tokens == 50
assert responses_usage.output_tokens == 100
assert responses_usage.total_tokens == 150
# Input details should not be present (no cached_tokens provided)
assert responses_usage.input_tokens_details is None
# Output details should be present with reasoning_tokens
assert responses_usage.output_tokens_details is not None
assert isinstance(responses_usage.output_tokens_details, OutputTokensDetails)
assert responses_usage.output_tokens_details.reasoning_tokens == 60
print("✓ Transformation works with reasoning_tokens only")
def test_transform_usage_with_both_token_details():
"""
Test transformation when both cached_tokens and reasoning_tokens are provided.
This simulates advanced providers that support both features.
"""
completion_response = create_mock_completion_response(
model="gpt-4o",
prompt_tokens=100,
completion_tokens=80,
total_tokens=180,
cached_tokens=50,
reasoning_tokens=30,
text_tokens=50, # Also include text_tokens
)
responses_usage = LiteLLMCompletionResponsesConfig._transform_chat_completion_usage_to_responses_usage(
completion_response
)
# Should succeed with all details
assert responses_usage.input_tokens == 100
assert responses_usage.output_tokens == 80
assert responses_usage.total_tokens == 180
# Input details should have cached_tokens
assert responses_usage.input_tokens_details is not None
assert responses_usage.input_tokens_details.cached_tokens == 50
assert responses_usage.input_tokens_details.text_tokens == 50
# Output details should have reasoning_tokens
assert responses_usage.output_tokens_details is not None
assert responses_usage.output_tokens_details.reasoning_tokens == 30
assert responses_usage.output_tokens_details.text_tokens == 50
print("✓ Transformation works with both cached_tokens and reasoning_tokens")
def test_transform_usage_with_zero_values():
"""
Test transformation when token details are explicitly set to 0.
cached_tokens=0 is preserved (cache was available; nothing was cached).
reasoning_tokens=0 is preserved the same way: an explicit provider-reported
zero passes through, while an absent value (None) falls back to 0 because the
Responses API wire contract requires reasoning_tokens as an int.
"""
completion_response = create_mock_completion_response(
model="gpt-4",
prompt_tokens=100,
completion_tokens=50,
total_tokens=150,
cached_tokens=0, # Explicitly 0 — preserved
reasoning_tokens=0, # Explicitly 0 — preserved
)
responses_usage = LiteLLMCompletionResponsesConfig._transform_chat_completion_usage_to_responses_usage(
completion_response
)
assert responses_usage.input_tokens_details is not None
assert responses_usage.input_tokens_details.cached_tokens == 0
assert responses_usage.output_tokens_details is not None
assert responses_usage.output_tokens_details.reasoning_tokens == 0
print("✓ Transformation preserves explicit reasoning_tokens=0 and omits absent values")
def test_transform_usage_unknown_reasoning_split_keeps_output_tokens_details():
"""
An unknown reasoning split (reasoning_tokens=None, text_tokens=None) must still
emit output_tokens_details with an integer reasoning_tokens: the OpenAI SDK's
ResponseUsage requires the field, so omitting it breaks /v1/responses clients.
"""
from openai.types.responses.response_usage import (
OutputTokensDetails as OpenAISDKOutputTokensDetails,
)
from litellm.types.utils import CompletionTokensDetailsWrapper
usage = Usage(
prompt_tokens=100,
completion_tokens=500,
total_tokens=600,
completion_tokens_details=CompletionTokensDetailsWrapper(reasoning_tokens=None, text_tokens=None),
)
responses_usage = LiteLLMCompletionResponsesConfig._transform_chat_completion_usage_to_responses_usage(usage)
assert responses_usage.output_tokens_details is not None
assert responses_usage.output_tokens_details.reasoning_tokens == 0
OpenAISDKOutputTokensDetails.model_validate(responses_usage.output_tokens_details.model_dump(exclude_none=True))
def test_input_tokens_details_requires_cached_tokens():
"""
Test that InputTokensDetails has cached_tokens as an int with default value 0.
This ensures backward compatibility while making the field non-optional.
"""
# Should work with cached_tokens=0
details1 = InputTokensDetails(cached_tokens=0)
assert details1.cached_tokens == 0
# Should work with cached_tokens=100
details2 = InputTokensDetails(cached_tokens=100)
assert details2.cached_tokens == 100
# Should work without cached_tokens (defaults to 0)
details3 = InputTokensDetails()
assert details3.cached_tokens == 0
print("✓ InputTokensDetails correctly defaults cached_tokens to 0")
def test_output_tokens_details_reasoning_tokens():
"""
Test OutputTokensDetails.reasoning_tokens field semantics.
reasoning_tokens is Optional[int] = None: present only when reasoning actually occurred.
"""
details_explicit_zero = OutputTokensDetails(reasoning_tokens=0)
assert details_explicit_zero.reasoning_tokens == 0
details_positive = OutputTokensDetails(reasoning_tokens=100)
assert details_positive.reasoning_tokens == 100
# Default is None — absence means reasoning did not occur (or was not tracked)
details_default = OutputTokensDetails()
assert details_default.reasoning_tokens is None
print("✓ OutputTokensDetails.reasoning_tokens defaults to None")
def test_all_providers_transformation_scenarios():
"""
Test various provider scenarios to ensure none break after the field requirement change.
This tests the most common scenarios across different providers:
- OpenAI: may have reasoning_tokens
- Anthropic: may have cached_tokens
- Azure: similar to OpenAI
- Other providers: basic usage only
"""
test_scenarios = [
{
"name": "Basic provider (no details)",
"model": "gpt-3.5-turbo",
"kwargs": {},
},
{
"name": "OpenAI with reasoning",
"model": "o1-preview",
"kwargs": {"reasoning_tokens": 100},
},
{
"name": "Anthropic with caching",
"model": "claude-3-opus",
"kwargs": {"cached_tokens": 50},
},
{
"name": "OpenAI with caching",
"model": "gpt-4o",
"kwargs": {"cached_tokens": 30},
},
{
"name": "Full details (both)",
"model": "gpt-4o",
"kwargs": {"cached_tokens": 40, "reasoning_tokens": 60, "text_tokens": 100},
},
{
"name": "Zero values",
"model": "gpt-4",
"kwargs": {"cached_tokens": 0, "reasoning_tokens": 0},
},
]
for scenario in test_scenarios:
print(f"\nTesting: {scenario['name']}")
completion_response = create_mock_completion_response(
model=scenario["model"], **scenario["kwargs"]
)
# This should not raise any errors
responses_usage = LiteLLMCompletionResponsesConfig._transform_chat_completion_usage_to_responses_usage(
completion_response
)
# Basic assertions
assert responses_usage.input_tokens >= 0
assert responses_usage.output_tokens >= 0
assert responses_usage.total_tokens >= 0
# If input_tokens_details exists, cached_tokens must be an int
if responses_usage.input_tokens_details is not None:
assert isinstance(responses_usage.input_tokens_details.cached_tokens, int)
# If output_tokens_details exists, reasoning_tokens must be an int
if responses_usage.output_tokens_details is not None:
assert isinstance(
responses_usage.output_tokens_details.reasoning_tokens, int
)
print(f" ✓ {scenario['name']} transformation successful")
print("\n✓ All provider scenarios work correctly")
if __name__ == "__main__":
# Run all tests
test_transform_usage_no_token_details()
test_transform_usage_with_cached_tokens_only()
test_transform_usage_with_reasoning_tokens_only()
test_transform_usage_with_both_token_details()
test_transform_usage_with_zero_values()
test_input_tokens_details_requires_cached_tokens()
test_output_tokens_details_reasoning_tokens()
test_all_providers_transformation_scenarios()
print("\n" + "=" * 60)
print("ALL TESTS PASSED!")
print("=" * 60)