litellm/tests/unit/integrations/test_responses_background_cost.py
yuneng-jiang cf491d1df9
test: move tests/test_litellm integrations and secret_managers into tests/unit (#43194)
* 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: move tests/test_litellm/llms into tests/unit/llms

Rename-only. Moves the provider tests and the fine-tuning fixtures they
load, mirroring the old paths. Follow-up commits merge, split and wire them.

* test: merge, split and prune the moved llms tests

Merges the Databricks chat transformation tests into the existing unit
file, keeps the tests that need real keys or the network in
tests/test_litellm, deletes the audited tests a stronger unit test
already covers, and points imports at tests.unit.llms.

* ci: run the moved llms tests under their legacy flags

The Vertex AI and All Other Providers shards keep their legacy test-path
for the retained files and add the llm-vertex-ai and llm-other-providers
unit selections. CircleCI gets matching unit jobs.

* test: make the tests/unit/llms directories packages

Adds __init__.py to the moved dirs and drops the legacy ones whose
directories no longer hold tests.

* test: drop script runners and path hacks the llms split left dangling

The __main__ runners in the split openai_like files and the Databricks e2e
runner called tests that now live in the other half of the split or were
deleted. The retained legacy halves also no longer need sys.path edits.

* 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.

* test: move tests/test_litellm integrations and secret_managers into tests/unit

Rename-only. Mirrors the old paths, including the directory conftests
and the prompt and JSON fixtures. Follow-up commits prune and wire them.

* test: prune and repoint the moved integrations tests

Deletes the 7 audited tests a stronger test in the same tree already
covers, imports the TLS sink helpers from their new conftest path, and
restores os.environ after each integrations test. Some presets write
OTEL_EXPORTER_OTLP_HEADERS straight into os.environ, and without the
legacy tree's test ordering that header leaked into the AgentOps tests.

* ci: run the moved integrations tests under their legacy flag

The integrations GHA shard and a new CircleCI job run the integrations
unit selection. secret_managers joins the misc selection.

* docs: point integrations and secret_managers references at tests/unit

* test: make the moved integrations directories packages

* test: keep the Databricks manual e2e runner and fix the SageMaker Nova run path

The Databricks e2e file is a manual script whose main() calls the tests
that were pruned, so pruning them broke the documented run. It is back to
its main version. The SageMaker Nova docstring now points at the file's
real location in tests/local_testing.

* test: keep the job's UNIT_FLAG out of the shard-script tests

---------

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

563 lines
20 KiB
Python

"""
Integration tests for responses API background cost tracking
"""
import asyncio
import os
from datetime import datetime
from unittest.mock import AsyncMock, MagicMock, Mock, patch
import pytest
from litellm.constants import MAX_OBJECTS_PER_POLL_CYCLE
from litellm.types.llms.openai import ResponseAPIUsage, ResponsesAPIResponse
class TestResponsesBackgroundCostTracking:
"""Integration tests for responses API background cost tracking"""
@pytest.fixture
def mock_managed_files_obj(self):
"""Create a mock managed files object"""
managed_files = MagicMock()
managed_files.store_unified_object_id = AsyncMock()
return managed_files
@pytest.fixture
def mock_proxy_logging_obj(self, mock_managed_files_obj):
"""Create a mock proxy logging object"""
logging_obj = MagicMock()
logging_obj.get_proxy_hook = MagicMock(return_value=mock_managed_files_obj)
return logging_obj
@pytest.fixture
def mock_llm_router(self):
"""Create a mock LLM router"""
router = MagicMock()
return router
@pytest.mark.asyncio
async def test_store_response_in_managed_objects_table(
self, mock_managed_files_obj, mock_proxy_logging_obj, mock_llm_router
):
"""Test that background responses are stored in managed objects table"""
# Create a mock response with queued status and hidden params
response = ResponsesAPIResponse(
id="resp_bGl0ZWxsbTpjdXN0b21fbGxtX3Byb3ZpZGVyOm9wZW5haTttb2RlbF9pZDpncHQtNDtsbGxfcmVzcG9uc2VfaWQ6cmVzcF8xMjM",
object="response",
status="queued",
created_at=int(datetime.now().timestamp()),
output=[],
usage=None,
)
# Add hidden params with model_id (simulating what base_process_llm_request does)
response._hidden_params = {"model_id": "model-deployment-id-123"}
# Mock request data
data = {
"model": "gpt-4",
"input": "Test input",
"background": True,
}
# Mock user_api_key_dict
user_api_key_dict = MagicMock()
user_api_key_dict.user_id = "test-user"
# Simulate the storage logic from endpoints.py
if data.get("background") and isinstance(response, ResponsesAPIResponse):
if response.status in ["queued", "in_progress"]:
# Get model_id from hidden params
hidden_params = getattr(response, "_hidden_params", {}) or {}
model_id = hidden_params.get("model_id", None)
if model_id:
# Store in managed objects table using response.id directly
await mock_managed_files_obj.store_unified_object_id(
unified_object_id=response.id,
file_object=response,
litellm_parent_otel_span=None,
model_object_id=response.id,
file_purpose="response",
user_api_key_dict=user_api_key_dict,
)
# Verify store_unified_object_id was called
mock_managed_files_obj.store_unified_object_id.assert_called_once()
call_args = mock_managed_files_obj.store_unified_object_id.call_args
# Verify the arguments - unified_object_id should be response.id
assert call_args[1]["unified_object_id"] == response.id
assert call_args[1]["model_object_id"] == response.id
assert call_args[1]["file_purpose"] == "response"
assert call_args[1]["user_api_key_dict"] == user_api_key_dict
@pytest.mark.asyncio
async def test_no_storage_for_non_background_requests(
self, mock_managed_files_obj, mock_proxy_logging_obj
):
"""Test that non-background requests are not stored"""
# Create a mock response
response = ResponsesAPIResponse(
id="resp_456",
object="response",
status="completed",
created_at=int(datetime.now().timestamp()),
output=[],
usage=ResponseAPIUsage(
input_tokens=100,
output_tokens=50,
total_tokens=150,
),
)
# Mock request data without background flag
data = {
"model": "gpt-4",
"input": "Test input",
"background": False,
}
# Simulate the storage logic
if data.get("background") and isinstance(response, ResponsesAPIResponse):
if response.status in ["queued", "in_progress"]:
await mock_managed_files_obj.store_unified_object_id()
# Verify store_unified_object_id was NOT called
mock_managed_files_obj.store_unified_object_id.assert_not_called()
@pytest.mark.asyncio
async def test_no_storage_for_completed_responses(
self, mock_managed_files_obj, mock_proxy_logging_obj
):
"""Test that completed responses are not stored"""
# Create a mock response with completed status
response = ResponsesAPIResponse(
id="resp_789",
object="response",
status="completed",
created_at=int(datetime.now().timestamp()),
output=[],
usage=ResponseAPIUsage(
input_tokens=100,
output_tokens=50,
total_tokens=150,
),
)
# Mock request data with background flag
data = {
"model": "gpt-4",
"input": "Test input",
"background": True,
}
# Simulate the storage logic
if data.get("background") and isinstance(response, ResponsesAPIResponse):
if response.status in ["queued", "in_progress"]:
await mock_managed_files_obj.store_unified_object_id()
# Verify store_unified_object_id was NOT called (status is completed)
mock_managed_files_obj.store_unified_object_id.assert_not_called()
@pytest.mark.asyncio
async def test_no_storage_without_model_id(
self, mock_managed_files_obj, mock_proxy_logging_obj
):
"""Test that responses without model_id in hidden params are not stored"""
# Create a mock response without hidden params
response = ResponsesAPIResponse(
id="resp_no_model",
object="response",
status="queued",
created_at=int(datetime.now().timestamp()),
output=[],
usage=None,
)
# Mock request data with background flag
data = {
"model": "gpt-4",
"input": "Test input",
"background": True,
}
user_api_key_dict = MagicMock()
# Simulate the storage logic
if data.get("background") and isinstance(response, ResponsesAPIResponse):
if response.status in ["queued", "in_progress"]:
hidden_params = getattr(response, "_hidden_params", {}) or {}
model_id = hidden_params.get("model_id", None)
if model_id: # This will be False
await mock_managed_files_obj.store_unified_object_id(
unified_object_id=response.id,
file_object=response,
litellm_parent_otel_span=None,
model_object_id=response.id,
file_purpose="response",
user_api_key_dict=user_api_key_dict,
)
# Verify store_unified_object_id was NOT called (no model_id)
mock_managed_files_obj.store_unified_object_id.assert_not_called()
@pytest.mark.asyncio
async def test_error_handling_in_storage(
self, mock_managed_files_obj, mock_proxy_logging_obj
):
"""Test that errors during storage are handled gracefully"""
# Mock store_unified_object_id to raise an exception
mock_managed_files_obj.store_unified_object_id = AsyncMock(
side_effect=Exception("Database error")
)
response = ResponsesAPIResponse(
id="resp_error",
object="response",
status="queued",
created_at=int(datetime.now().timestamp()),
output=[],
usage=None,
)
response._hidden_params = {"model_id": "test-model-id"}
data = {
"model": "gpt-4",
"input": "Test input",
"background": True,
}
user_api_key_dict = MagicMock()
user_api_key_dict.user_id = "test-user"
# Try to store - should not raise (error is caught in endpoints.py)
try:
if data.get("background") and isinstance(response, ResponsesAPIResponse):
if response.status in ["queued", "in_progress"]:
hidden_params = getattr(response, "_hidden_params", {}) or {}
model_id = hidden_params.get("model_id", None)
if model_id:
await mock_managed_files_obj.store_unified_object_id(
unified_object_id=response.id,
file_object=response,
litellm_parent_otel_span=None,
model_object_id=response.id,
file_purpose="response",
user_api_key_dict=user_api_key_dict,
)
except Exception:
# Exception should be caught and logged, not raised
pass
# Verify the method was called (even though it raised)
assert mock_managed_files_obj.store_unified_object_id.called
def _check_responses_cost_module_available():
"""Check if litellm_enterprise.proxy.common_utils.check_responses_cost module is available"""
try:
from litellm_enterprise.proxy.common_utils.check_responses_cost import ( # noqa: F401
CheckResponsesCost,
)
return True
except ImportError:
return False
@pytest.mark.skipif(
not _check_responses_cost_module_available(),
reason="litellm_enterprise.proxy.common_utils.check_responses_cost module not available (enterprise-only feature)",
)
class TestCheckResponsesCost:
"""Tests for the CheckResponsesCost polling class"""
@pytest.fixture
def mock_prisma_client(self):
"""Create a mock Prisma client"""
client = MagicMock()
client.db = MagicMock()
client.db.litellm_managedobjecttable = MagicMock()
return client
@pytest.fixture
def mock_proxy_logging_obj(self):
"""Create a mock proxy logging object"""
return MagicMock()
@pytest.fixture
def mock_llm_router(self):
"""Create a mock LLM router"""
return MagicMock()
@pytest.mark.asyncio
async def test_check_responses_cost_initialization(
self, mock_proxy_logging_obj, mock_prisma_client, mock_llm_router
):
"""Test CheckResponsesCost initialization"""
from litellm_enterprise.proxy.common_utils.check_responses_cost import (
CheckResponsesCost,
)
checker = CheckResponsesCost(
proxy_logging_obj=mock_proxy_logging_obj,
prisma_client=mock_prisma_client,
llm_router=mock_llm_router,
)
assert checker.proxy_logging_obj == mock_proxy_logging_obj
assert checker.prisma_client == mock_prisma_client
assert checker.llm_router == mock_llm_router
@pytest.mark.asyncio
async def test_check_responses_cost_no_jobs(
self, mock_proxy_logging_obj, mock_prisma_client, mock_llm_router
):
"""Test polling when there are no jobs"""
from litellm_enterprise.proxy.common_utils.check_responses_cost import (
CheckResponsesCost,
)
# Mock find_many to return empty list
mock_prisma_client.db.litellm_managedobjecttable.find_many = AsyncMock(
return_value=[]
)
checker = CheckResponsesCost(
proxy_logging_obj=mock_proxy_logging_obj,
prisma_client=mock_prisma_client,
llm_router=mock_llm_router,
)
# Should not raise any errors
await checker.check_responses_cost()
# Verify find_many was called with correct parameters (includes pagination)
mock_prisma_client.db.litellm_managedobjecttable.find_many.assert_called_once_with(
where={
"status": {"in": ["queued", "in_progress"]},
"file_purpose": "response",
},
take=MAX_OBJECTS_PER_POLL_CYCLE,
order={"created_at": "asc"},
)
@pytest.mark.asyncio
async def test_check_responses_cost_with_completed_job(
self, mock_proxy_logging_obj, mock_prisma_client, mock_llm_router
):
"""Test polling with a completed job"""
from litellm_enterprise.proxy.common_utils.check_responses_cost import (
CheckResponsesCost,
)
# Create a mock job
mock_job = MagicMock()
mock_job.id = "job-123"
mock_job.unified_object_id = "resp_test_id"
mock_job.created_by = "test-user"
# Mock find_many to return the job
mock_prisma_client.db.litellm_managedobjecttable.find_many = AsyncMock(
return_value=[mock_job]
)
# Mock update_many
mock_prisma_client.db.litellm_managedobjecttable.update_many = AsyncMock()
# Create a completed response
completed_response = ResponsesAPIResponse(
id="resp_test_id",
object="response",
status="completed",
created_at=int(datetime.now().timestamp()),
output=[],
usage=ResponseAPIUsage(
input_tokens=100,
output_tokens=50,
total_tokens=150,
),
)
checker = CheckResponsesCost(
proxy_logging_obj=mock_proxy_logging_obj,
prisma_client=mock_prisma_client,
llm_router=mock_llm_router,
)
# Mock litellm.aget_responses to return completed response
with patch("litellm.aget_responses", new_callable=AsyncMock) as mock_aget:
mock_aget.return_value = completed_response
await checker.check_responses_cost()
# Verify update_many was called to mark job as completed
# (stale cleanup also calls update_many, so check the specific completion call)
update_many_calls = (
mock_prisma_client.db.litellm_managedobjecttable.update_many.call_args_list
)
completion_calls = [
c
for c in update_many_calls
if c.kwargs.get("where", {}).get("id") is not None
]
assert len(completion_calls) == 1
assert completion_calls[0].kwargs["where"]["id"]["in"] == ["job-123"]
assert completion_calls[0].kwargs["data"]["status"] == "completed"
@pytest.mark.asyncio
async def test_check_responses_cost_with_failed_job(
self, mock_proxy_logging_obj, mock_prisma_client, mock_llm_router
):
"""Test polling with a failed job"""
from litellm_enterprise.proxy.common_utils.check_responses_cost import (
CheckResponsesCost,
)
# Create a mock job
mock_job = MagicMock()
mock_job.id = "job-456"
mock_job.unified_object_id = "resp_failed"
mock_job.created_by = "test-user"
mock_prisma_client.db.litellm_managedobjecttable.find_many = AsyncMock(
return_value=[mock_job]
)
mock_prisma_client.db.litellm_managedobjecttable.update_many = AsyncMock()
# Create a failed response
failed_response = ResponsesAPIResponse(
id="resp_failed",
object="response",
status="failed",
created_at=int(datetime.now().timestamp()),
output=[],
usage=None,
)
checker = CheckResponsesCost(
proxy_logging_obj=mock_proxy_logging_obj,
prisma_client=mock_prisma_client,
llm_router=mock_llm_router,
)
with patch("litellm.aget_responses", new_callable=AsyncMock) as mock_aget:
mock_aget.return_value = failed_response
await checker.check_responses_cost()
# Verify job was marked as completed even though it failed
# (stale cleanup also calls update_many, so check the specific completion call)
update_many_calls = (
mock_prisma_client.db.litellm_managedobjecttable.update_many.call_args_list
)
completion_calls = [
c
for c in update_many_calls
if c.kwargs.get("where", {}).get("id") is not None
]
assert len(completion_calls) == 1
@pytest.mark.asyncio
async def test_check_responses_cost_with_in_progress_job(
self, mock_proxy_logging_obj, mock_prisma_client, mock_llm_router
):
"""Test polling with a job still in progress"""
from litellm_enterprise.proxy.common_utils.check_responses_cost import (
CheckResponsesCost,
)
# Create a mock job
mock_job = MagicMock()
mock_job.id = "job-789"
mock_job.unified_object_id = "resp_in_progress"
mock_job.created_by = "test-user"
mock_prisma_client.db.litellm_managedobjecttable.find_many = AsyncMock(
return_value=[mock_job]
)
mock_prisma_client.db.litellm_managedobjecttable.update_many = AsyncMock()
# Create an in-progress response
in_progress_response = ResponsesAPIResponse(
id="resp_in_progress",
object="response",
status="in_progress",
created_at=int(datetime.now().timestamp()),
output=[],
usage=None,
)
checker = CheckResponsesCost(
proxy_logging_obj=mock_proxy_logging_obj,
prisma_client=mock_prisma_client,
llm_router=mock_llm_router,
)
with patch("litellm.aget_responses", new_callable=AsyncMock) as mock_aget:
mock_aget.return_value = in_progress_response
await checker.check_responses_cost()
# Verify no completion update_many was called (job still in progress)
# (stale cleanup may still call update_many, so filter for completion calls)
update_many_calls = (
mock_prisma_client.db.litellm_managedobjecttable.update_many.call_args_list
)
completion_calls = [
c
for c in update_many_calls
if c.kwargs.get("where", {}).get("id") is not None
]
assert len(completion_calls) == 0
@pytest.mark.asyncio
async def test_check_responses_cost_error_handling(
self, mock_proxy_logging_obj, mock_prisma_client, mock_llm_router
):
"""Test that errors when querying responses are handled gracefully"""
from litellm_enterprise.proxy.common_utils.check_responses_cost import (
CheckResponsesCost,
)
# Create a mock job
mock_job = MagicMock()
mock_job.id = "job-error"
mock_job.unified_object_id = "resp_error"
mock_job.created_by = "test-user"
mock_prisma_client.db.litellm_managedobjecttable.find_many = AsyncMock(
return_value=[mock_job]
)
mock_prisma_client.db.litellm_managedobjecttable.update_many = AsyncMock()
checker = CheckResponsesCost(
proxy_logging_obj=mock_proxy_logging_obj,
prisma_client=mock_prisma_client,
llm_router=mock_llm_router,
)
# Mock litellm.aget_responses to raise an exception
with patch(
"litellm.aget_responses",
new_callable=AsyncMock,
side_effect=Exception("API error"),
):
# Should not raise - errors are caught and logged
await checker.check_responses_cost()
# Verify no completion update_many was called (error occurred)
# (stale cleanup may still call update_many, so filter for completion calls)
update_many_calls = (
mock_prisma_client.db.litellm_managedobjecttable.update_many.call_args_list
)
completion_calls = [
c
for c in update_many_calls
if c.kwargs.get("where", {}).get("id") is not None
]
assert len(completion_calls) == 0