mirror of
https://github.com/BerriAI/litellm.git
synced 2026-08-28 05:25:59 +00:00
* test: drop the cwd-relative sys.path.insert calls from the test suite
TQ003 stands at 1,077 across 1,058 files, and 1,015 of them are the same shape:
sys.path.insert(0, os.path.abspath("../..")) and its deeper siblings. The
argument resolves against the working directory rather than the file, so from
the repo root, where every job runs pytest, it inserts the directory two levels
above the checkout. It has never pointed at litellm. The package is installed
into the environment anyway, which is what actually makes the import work, and
what the rule's message has said all along.
Removing them leaves 1,634 imports of sys and os with no remaining reference,
and those go too, except where another test module imports the name back out of
the file. The rest of TQ003 is 62 call sites that resolve against __file__ or a
variable, which are a different question and are left alone.
Collection is identical either way: 45,871 tests and the same 51 pre-existing
collection errors before and after, and ruff reports no new undefined name.
* test: drop the duplicate imports the sys.path sweep exposed to F811
* test(pre-call-utils): restore the os import the new bedrock tests need
117 lines
3.3 KiB
Python
117 lines
3.3 KiB
Python
import json
|
|
import os
|
|
from unittest.mock import AsyncMock, MagicMock, patch
|
|
|
|
import pytest
|
|
import yaml
|
|
|
|
|
|
from litellm.proxy._types import UserAPIKeyAuth
|
|
from litellm.proxy.google_endpoints.endpoints import google_generate_content
|
|
from fastapi import Request, Response
|
|
from fastapi.datastructures import Headers
|
|
from litellm.proxy.proxy_server import initialize
|
|
from litellm.utils import ModelResponse
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_user_api_key_dict():
|
|
"""Mock user API key dictionary."""
|
|
return UserAPIKeyAuth(
|
|
api_key="test_api_key",
|
|
user_id="test_user_id",
|
|
user_email="test@example.com",
|
|
team_id="test_team_id",
|
|
max_budget=100.0,
|
|
spend=0.0,
|
|
user_role="internal_user",
|
|
allowed_cache_controls=[],
|
|
metadata={},
|
|
tpm_limit=None,
|
|
rpm_limit=None,
|
|
)
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_request(request):
|
|
"""Create a mock FastAPI request with the sample payload."""
|
|
mock_req = MagicMock(spec=Request)
|
|
mock_req.headers = Headers({"content-type": "application/json"})
|
|
mock_req.method = "POST"
|
|
mock_req.url.path = request.param.get("path")
|
|
|
|
async def mock_body():
|
|
return json.dumps(request.param.get("payload", {})).encode("utf-8")
|
|
|
|
mock_req.body = mock_body
|
|
return mock_req
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_response():
|
|
"""Create a mock FastAPI response."""
|
|
return MagicMock(spec=Response)
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
@pytest.mark.parametrize(
|
|
"mock_request",
|
|
[
|
|
{
|
|
"path": "/v1beta/models/bedrock/claude-sonnet-3.7:generateContent",
|
|
"payload": {
|
|
"contents": [
|
|
{
|
|
"parts": [
|
|
{"text": "The quick brown fox jumps over the lazy dog."}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
}
|
|
],
|
|
indirect=True,
|
|
)
|
|
async def test_google_generate_content_with_slashes_in_model_name(
|
|
mock_request, mock_response, mock_user_api_key_dict
|
|
):
|
|
"""
|
|
Test that the google_generate_content endpoint correctly handles model names with slashes.
|
|
"""
|
|
config = {
|
|
"model_list": [
|
|
{
|
|
"model_name": "bedrock/claude-sonnet-3.7",
|
|
"litellm_params": {
|
|
"model": "bedrock/anthropic.claude-3-sonnet-20240229-v1:0",
|
|
},
|
|
}
|
|
]
|
|
}
|
|
filepath = os.path.dirname(os.path.abspath(__file__))
|
|
config_fp = f"{filepath}/test_config.yaml"
|
|
with open(config_fp, "w") as f:
|
|
yaml.dump(config, f)
|
|
|
|
try:
|
|
await initialize(config=config_fp)
|
|
|
|
with patch(
|
|
"litellm.proxy.proxy_server.llm_router.agenerate_content",
|
|
new_callable=AsyncMock,
|
|
) as mock_agenerate_content:
|
|
mock_agenerate_content.return_value = ModelResponse()
|
|
|
|
await google_generate_content(
|
|
request=mock_request,
|
|
model_name="bedrock/claude-sonnet-3.7",
|
|
fastapi_response=mock_response,
|
|
user_api_key_dict=mock_user_api_key_dict,
|
|
)
|
|
|
|
mock_agenerate_content.assert_called_once()
|
|
_, call_kwargs = mock_agenerate_content.call_args
|
|
assert call_kwargs["model"] == "bedrock/claude-sonnet-3.7"
|
|
finally:
|
|
if os.path.exists(config_fp):
|
|
os.remove(config_fp)
|