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
263 lines
7.8 KiB
Python
263 lines
7.8 KiB
Python
import os
|
|
import traceback
|
|
from litellm._uuid import uuid
|
|
from datetime import datetime
|
|
|
|
from dotenv import load_dotenv
|
|
from fastapi import Request
|
|
from fastapi.routing import APIRoute
|
|
|
|
|
|
import io
|
|
import time
|
|
|
|
# this file is to test litellm/proxy
|
|
|
|
import asyncio
|
|
import logging
|
|
|
|
load_dotenv()
|
|
|
|
import pytest
|
|
import litellm
|
|
from litellm._logging import verbose_proxy_logger
|
|
|
|
from litellm.proxy.proxy_server import (
|
|
LitellmUserRoles,
|
|
audio_transcriptions,
|
|
chat_completion,
|
|
completion,
|
|
embeddings,
|
|
model_list,
|
|
moderations,
|
|
user_api_key_auth,
|
|
)
|
|
|
|
from litellm.proxy.utils import PrismaClient, ProxyLogging, hash_token, update_spend
|
|
|
|
verbose_proxy_logger.setLevel(level=logging.DEBUG)
|
|
|
|
from starlette.datastructures import URL
|
|
|
|
from litellm.proxy.management_helpers.audit_logs import (
|
|
create_audit_log_for_update,
|
|
get_audit_log_changed_by,
|
|
)
|
|
from litellm.proxy._types import LiteLLM_AuditLogs, LitellmTableNames, UserAPIKeyAuth
|
|
from litellm.caching.caching import DualCache
|
|
from unittest.mock import patch, AsyncMock
|
|
|
|
proxy_logging_obj = ProxyLogging(user_api_key_cache=DualCache())
|
|
import json
|
|
|
|
|
|
def test_get_audit_log_changed_by_prefers_authenticated_user():
|
|
user_api_key_dict = UserAPIKeyAuth(
|
|
api_key="test-key",
|
|
user_id="authenticated-user",
|
|
)
|
|
|
|
assert (
|
|
get_audit_log_changed_by(
|
|
litellm_changed_by="spoofed-user",
|
|
user_api_key_dict=user_api_key_dict,
|
|
litellm_proxy_admin_name="proxy-admin",
|
|
)
|
|
== "authenticated-user"
|
|
)
|
|
|
|
|
|
def test_get_audit_log_changed_by_honors_header_with_admin_opt_in():
|
|
user_api_key_dict = UserAPIKeyAuth(
|
|
api_key="test-key",
|
|
user_id="service-account",
|
|
metadata={"allow_litellm_changed_by_header": True},
|
|
)
|
|
|
|
assert (
|
|
get_audit_log_changed_by(
|
|
litellm_changed_by="delegated-user",
|
|
user_api_key_dict=user_api_key_dict,
|
|
litellm_proxy_admin_name="proxy-admin",
|
|
)
|
|
== "delegated-user"
|
|
)
|
|
|
|
|
|
def test_get_audit_log_changed_by_honors_header_with_team_opt_in():
|
|
user_api_key_dict = UserAPIKeyAuth(
|
|
api_key="test-key",
|
|
user_id="service-account",
|
|
team_metadata={"allow_litellm_changed_by_header": True},
|
|
)
|
|
|
|
assert (
|
|
get_audit_log_changed_by(
|
|
litellm_changed_by="delegated-user",
|
|
user_api_key_dict=user_api_key_dict,
|
|
litellm_proxy_admin_name="proxy-admin",
|
|
)
|
|
== "delegated-user"
|
|
)
|
|
|
|
|
|
def test_get_audit_log_changed_by_ignores_header_without_opt_in_when_user_id_missing():
|
|
user_api_key_dict = UserAPIKeyAuth(api_key="test-key")
|
|
|
|
assert (
|
|
get_audit_log_changed_by(
|
|
litellm_changed_by="spoofed-user",
|
|
user_api_key_dict=user_api_key_dict,
|
|
litellm_proxy_admin_name="proxy-admin",
|
|
)
|
|
== "proxy-admin"
|
|
)
|
|
|
|
|
|
def test_get_audit_log_changed_by_honors_header_with_opt_in_when_user_id_missing():
|
|
user_api_key_dict = UserAPIKeyAuth(
|
|
api_key="test-key",
|
|
metadata={"allow_litellm_changed_by_header": True},
|
|
)
|
|
|
|
assert (
|
|
get_audit_log_changed_by(
|
|
litellm_changed_by="delegated-user",
|
|
user_api_key_dict=user_api_key_dict,
|
|
litellm_proxy_admin_name="proxy-admin",
|
|
)
|
|
== "delegated-user"
|
|
)
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_create_internal_user_audit_log_uses_changed_by_helper():
|
|
from litellm.proxy.hooks.user_management_event_hooks import UserManagementEventHooks
|
|
|
|
user_api_key_dict = UserAPIKeyAuth(
|
|
api_key="test-key",
|
|
user_id="service-account",
|
|
metadata={"allow_litellm_changed_by_header": True},
|
|
)
|
|
|
|
with (
|
|
patch("litellm.store_audit_logs", True),
|
|
patch(
|
|
"litellm.proxy.hooks.user_management_event_hooks.create_audit_log_for_update",
|
|
new_callable=AsyncMock,
|
|
) as mock_create_audit_log_for_update,
|
|
):
|
|
await UserManagementEventHooks.create_internal_user_audit_log(
|
|
user_id="target-user",
|
|
action="updated",
|
|
litellm_changed_by="delegated-user",
|
|
user_api_key_dict=user_api_key_dict,
|
|
litellm_proxy_admin_name="proxy-admin",
|
|
before_value='{"before": true}',
|
|
after_value='{"after": true}',
|
|
)
|
|
|
|
request_data = mock_create_audit_log_for_update.await_args.kwargs["request_data"]
|
|
assert request_data.changed_by == "delegated-user"
|
|
assert request_data.changed_by_api_key == "test-key"
|
|
assert request_data.object_id == "target-user"
|
|
assert request_data.action == "updated"
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_create_audit_log_for_update_premium_user():
|
|
"""
|
|
Basic unit test for create_audit_log_for_update
|
|
|
|
Test that the audit log is created when a premium user updates a team
|
|
"""
|
|
with (
|
|
patch("litellm.proxy.proxy_server.premium_user", True),
|
|
patch("litellm.store_audit_logs", True),
|
|
patch("litellm.proxy.proxy_server.prisma_client") as mock_prisma,
|
|
):
|
|
|
|
mock_prisma.db.litellm_auditlog.create = AsyncMock()
|
|
|
|
request_data = LiteLLM_AuditLogs(
|
|
id="test_id",
|
|
updated_at=datetime.now(),
|
|
changed_by="test_changed_by",
|
|
action="updated",
|
|
table_name=LitellmTableNames.TEAM_TABLE_NAME,
|
|
object_id="test_object_id",
|
|
updated_values=json.dumps({"key": "value"}),
|
|
before_value=json.dumps({"old_key": "old_value"}),
|
|
)
|
|
|
|
await create_audit_log_for_update(request_data)
|
|
|
|
mock_prisma.db.litellm_auditlog.create.assert_called_once_with(
|
|
data={
|
|
"id": "test_id",
|
|
"updated_at": request_data.updated_at,
|
|
"changed_by": request_data.changed_by,
|
|
"action": request_data.action,
|
|
"table_name": request_data.table_name,
|
|
"object_id": request_data.object_id,
|
|
"updated_values": request_data.updated_values,
|
|
"before_value": request_data.before_value,
|
|
}
|
|
)
|
|
|
|
|
|
@pytest.fixture
|
|
def prisma_client():
|
|
from litellm.proxy.proxy_cli import append_query_params
|
|
|
|
### add connection pool + pool timeout args
|
|
params = {"connection_limit": 100, "pool_timeout": 60}
|
|
database_url = os.getenv("DATABASE_URL")
|
|
modified_url = append_query_params(database_url, params)
|
|
os.environ["DATABASE_URL"] = modified_url
|
|
|
|
# Assuming PrismaClient is a class that needs to be instantiated
|
|
prisma_client = PrismaClient(
|
|
database_url=os.environ["DATABASE_URL"], proxy_logging_obj=proxy_logging_obj
|
|
)
|
|
|
|
return prisma_client
|
|
|
|
|
|
@pytest.mark.skip(reason="Requires reliable external DB connection (prisma).")
|
|
@pytest.mark.asyncio()
|
|
async def test_create_audit_log_in_db(prisma_client):
|
|
print("prisma client=", prisma_client)
|
|
|
|
setattr(litellm.proxy.proxy_server, "prisma_client", prisma_client)
|
|
setattr(litellm.proxy.proxy_server, "master_key", "sk-1234")
|
|
setattr(litellm.proxy.proxy_server, "premium_user", True)
|
|
setattr(litellm, "store_audit_logs", True)
|
|
|
|
await litellm.proxy.proxy_server.prisma_client.connect()
|
|
audit_log_id = f"audit_log_id_{uuid.uuid4()}"
|
|
|
|
# create a audit log for /key/generate
|
|
request_data = LiteLLM_AuditLogs(
|
|
id=audit_log_id,
|
|
updated_at=datetime.now(),
|
|
changed_by="test_changed_by",
|
|
action="updated",
|
|
table_name=LitellmTableNames.TEAM_TABLE_NAME,
|
|
object_id="test_object_id",
|
|
updated_values=json.dumps({"key": "value"}),
|
|
before_value=json.dumps({"old_key": "old_value"}),
|
|
)
|
|
|
|
await create_audit_log_for_update(request_data)
|
|
|
|
await asyncio.sleep(1)
|
|
|
|
# now read the last log from the db
|
|
last_log = await prisma_client.db.litellm_auditlog.find_first(
|
|
where={"id": audit_log_id}
|
|
)
|
|
|
|
assert last_log.id == audit_log_id
|
|
|
|
setattr(litellm, "store_audit_logs", False)
|