mirror of
https://github.com/tiennm99/litellm.git
synced 2026-07-13 17:10:08 +00:00
f62ae93e13
* test(proxy): add create_scratch_actor harness helper
Adds create_scratch_actor() to the management behavior-suite conftest and
extends create_scratch_team() with team_member_permissions / models kwargs,
needed by the PR3 team-key-permission and team-model matrices. The new
helper mints a scratch-prefixed user + verification token (+ org
memberships), all reclaimed by the existing scratch-prefix teardown.
* test(proxy): pin /key block, unblock, health, aliases behavior
Adds behavior-pinning matrices for POST /key/block, POST /key/unblock,
POST /key/health, and GET /key/aliases. Pins that the management-route gate
401s ORG_ADMIN-role callers before _check_key_admin_access runs, the
block/unblock round-trip on the blocked column, missing-key 404, and the
_apply_non_admin_alias_scope visibility rules for /key/aliases.
* test(proxy): pin /key/bulk_update + /team/key/bulk_update behavior
Adds behavior-pinning matrices for POST /key/bulk_update (PROXY_ADMIN-only;
ORG_ADMIN stopped 401 at the route gate, INTERNAL_USER-role 403 at the
handler) and POST /team/key/bulk_update (team-member-permission gate keyed
on KEY_UPDATE). Pins batch semantics: empty/over-cap 400, per-key failure
isolation into failed_updates, all_keys_in_team broadcast, and no-keys 404.
Adds an optional key_alias arg to create_scratch_key for multi-key scenarios.
* test(proxy): pin /key SA-generate, v2-info, reset-spend behavior
Adds behavior-pinning matrices for POST /key/service-account/generate
(team-membership + team-member-permission gating; SA keys carry no user_id),
POST /v2/key/info (per-key _can_user_query_key_info silently drops invisible
keys), and POST /key/{key}/reset_spend (PROXY_ADMIN or team admin only;
missing key 404, reset-value 400). Pins that ORG_ADMIN-role callers are
stopped 401 at the management-route gate on the two non-info routes.
* test(proxy): close PR1/PR2 key-side deferred coverage gaps
Closes the four key-side gaps deferred from PR1/PR2:
- 404 on missing key for /key/update and /key/delete (not 401/403)
- denied /key/update leaves max_budget/tpm_limit/rpm_limit untouched
- /key/regenerate enforces litellm.upperbound_key_generate_params (#26340)
- /key/list key_alias substring vs exact (admin-only) + team_id filter,
and a non-admin filtering a foreign team is 403
* test(proxy): pin /team block, unblock, available, filter/ui, members/me
Adds behavior-pinning matrices for POST /team/block + /team/unblock
(management-route gate fronts _verify_team_access; reachable only by
PROXY_ADMIN and an org admin of the team's own org), GET /team/available
(default empty path), GET /team/filter/ui (route-gated PROXY-ADMIN-only
despite the handler having no gate), and GET /team/{team_id}/members/me
(caller resolves its own membership; non-member 404, no-user_id key 400).
* test(proxy): pin /team model add/delete + permissions endpoints
Adds behavior-pinning matrices for POST /team/model/add + /team/model/delete
(route-gated PROXY-ADMIN-only; missing team 404), GET /team/permissions_list +
POST /team/permissions_update (self-managed; proxy/team/org admin pass), and
POST /team/permissions_bulk_update (PROXY_ADMIN-only). Pins the deliberate
divergence that the available-team self-join grants read access via
permissions_list but never write access via permissions_update.
* test(proxy): pin /team delete, bulk_member_add, v2/list, daily/activity
Adds behavior-pinning matrices for POST /team/delete (per-team
_verify_team_access; batch aborts whole on a missing id), POST
/team/bulk_member_add (route-gated PROXY-ADMIN-only; empty/over-cap 400),
GET /v2/team/list (_enforce_list_team_v2_access — bare query 401s regular
users, org-scoped for org admins) and GET /team/daily/activity (non-member
team_ids filter 404, the VERIA-43 fix).
* test(proxy): add route-coverage gate + close team org-relocation gap
Adds test_route_coverage.py (PR3.M1): parses every @router route literal
from the two management-endpoint source files and asserts each is exercised
by >=1 behavior-suite scenario — a permanent regression guard for future
routes. Closes the last PR1/PR2 deferred gap: the /team/update org-relocation
allowed branch, exercised by a dual-org-admin minted via create_scratch_actor.
test_team_model uses literal route URLs so the coverage parser resolves them.
* test(proxy): bound plain route params to one path segment in coverage gate
Plain path params ({team_id}) now compile to [^/?]+ instead of [^?]+, so a
parameter cannot span '/'. Starlette ':path' params still match across '/'.
Keeps the route-coverage guard from falsely reporting a future multi-segment
route as covered. All 37 routes remain covered.
120 lines
4.2 KiB
Python
120 lines
4.2 KiB
Python
import uuid
|
|
from typing import FrozenSet
|
|
|
|
import pytest
|
|
|
|
from litellm.proxy.utils import hash_token
|
|
|
|
from .actors import TEAM_ALPHA, TEAM_BETA, Actor
|
|
|
|
pytestmark = pytest.mark.asyncio(loop_scope="session")
|
|
|
|
|
|
# GET /key/aliases scopes non-admins via _apply_non_admin_alias_scope: a
|
|
# non-admin sees an alias only if it owns the key (user_id match) or the key
|
|
# belongs to one of its teams. PROXY_ADMIN sees every alias. The seeded keys:
|
|
# own — owned by INTERNAL_USER, no team -> user_id scope only
|
|
# alpha — owned by OWNER, team TEAM_ALPHA -> team scope for alpha members
|
|
# beta — owned by CROSS_ORG_USER, TEAM_BETA
|
|
async def _seed_alias_keys(prisma, prefix: str, world) -> dict:
|
|
spec = {
|
|
"own": (Actor.INTERNAL_USER, None),
|
|
"alpha": (Actor.OWNER, TEAM_ALPHA),
|
|
"beta": (Actor.CROSS_ORG_USER, TEAM_BETA),
|
|
}
|
|
out = {}
|
|
for tag, (owner, team_id) in spec.items():
|
|
alias = f"{prefix}-{tag}"
|
|
data = {
|
|
"token": hash_token("sk-" + uuid.uuid4().hex),
|
|
"key_name": f"{prefix}-{tag}-key",
|
|
"key_alias": alias,
|
|
"user_id": world.keys[owner].user_id,
|
|
"models": [],
|
|
}
|
|
if team_id is not None:
|
|
data["team_id"] = team_id
|
|
await prisma.db.litellm_verificationtoken.create(data=data)
|
|
out[tag] = alias
|
|
return out
|
|
|
|
|
|
async def _fetch_aliases(proxy_client, caller_cleartext: str, query: str) -> set:
|
|
resp = await proxy_client.get(
|
|
f"/key/aliases?{query}&size=100",
|
|
headers={"Authorization": f"Bearer {caller_cleartext}"},
|
|
)
|
|
assert resp.status_code == 200, resp.text
|
|
return set(resp.json()["aliases"])
|
|
|
|
|
|
# ORG_ADMIN-role callers are stopped 401 by the management-route gate before
|
|
# the handler runs — /key/aliases carries no org context. Every other actor
|
|
# reaches the handler and is scoped by _apply_non_admin_alias_scope.
|
|
_VISIBILITY = {
|
|
Actor.PROXY_ADMIN: (200, frozenset({"own", "alpha", "beta"})),
|
|
Actor.ORG_ADMIN: (401, None),
|
|
Actor.TEAM_ADMIN: (200, frozenset({"alpha"})),
|
|
Actor.INTERNAL_USER: (200, frozenset({"own", "alpha"})),
|
|
Actor.OWNER: (200, frozenset({"alpha"})),
|
|
Actor.UNRELATED_SAME_ORG: (200, frozenset({"alpha"})),
|
|
Actor.CROSS_ORG_USER: (200, frozenset({"beta"})),
|
|
Actor.SERVICE_ACCOUNT: (200, frozenset({"alpha"})),
|
|
Actor.ORG_B_ADMIN: (401, None),
|
|
}
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"actor,expected_status,expected_tags",
|
|
[(a, s, t) for a, (s, t) in _VISIBILITY.items()],
|
|
ids=[a.value for a in _VISIBILITY],
|
|
)
|
|
async def test_key_aliases_visibility(
|
|
actor: Actor,
|
|
expected_status: int,
|
|
expected_tags: FrozenSet[str],
|
|
proxy_client,
|
|
prisma,
|
|
scratch,
|
|
world,
|
|
):
|
|
aliases = await _seed_alias_keys(prisma, scratch.prefix, world)
|
|
known = {v: k for k, v in aliases.items()}
|
|
|
|
resp = await proxy_client.get(
|
|
f"/key/aliases?search={scratch.prefix}&size=100",
|
|
headers={"Authorization": f"Bearer {world.keys[actor].cleartext}"},
|
|
)
|
|
assert (
|
|
resp.status_code == expected_status
|
|
), f"{actor.value}: {resp.status_code} {resp.text}"
|
|
if expected_status != 200:
|
|
return
|
|
|
|
visible = {known[a] for a in resp.json()["aliases"] if a in known}
|
|
assert visible == set(
|
|
expected_tags
|
|
), f"{actor.value}: expected {sorted(expected_tags)}, got {sorted(visible)}"
|
|
|
|
|
|
async def test_key_aliases_team_id_filter(proxy_client, prisma, scratch, world):
|
|
"""team_id filter narrows the result to keys of that team."""
|
|
aliases = await _seed_alias_keys(prisma, scratch.prefix, world)
|
|
returned = await _fetch_aliases(
|
|
proxy_client,
|
|
world.keys[Actor.PROXY_ADMIN].cleartext,
|
|
f"search={scratch.prefix}&team_id={TEAM_ALPHA}",
|
|
)
|
|
assert returned & set(aliases.values()) == {aliases["alpha"]}
|
|
|
|
|
|
async def test_key_aliases_search_filter(proxy_client, prisma, scratch, world):
|
|
"""search is a case-insensitive substring match on key_alias."""
|
|
aliases = await _seed_alias_keys(prisma, scratch.prefix, world)
|
|
returned = await _fetch_aliases(
|
|
proxy_client,
|
|
world.keys[Actor.PROXY_ADMIN].cleartext,
|
|
f"search={aliases['beta']}",
|
|
)
|
|
assert returned & set(aliases.values()) == {aliases["beta"]}
|