mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-10 22:41:41 +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
251 lines
7.4 KiB
Python
251 lines
7.4 KiB
Python
|
|
from litellm.integrations.custom_guardrail import CustomGuardrail
|
|
from litellm.types.guardrails import GuardrailEventHooks, Mode
|
|
|
|
|
|
def test_custom_guardrail_with_mode_default_list(monkeypatch):
|
|
"""Test Mode with default as a list of modes (e.g. default: ["pre_call", "post_call"])"""
|
|
monkeypatch.setattr("litellm.proxy.proxy_server.premium_user", True)
|
|
cg = CustomGuardrail(
|
|
guardrail_name="test_guardrail",
|
|
supported_event_hooks=[
|
|
GuardrailEventHooks.pre_call,
|
|
GuardrailEventHooks.post_call,
|
|
GuardrailEventHooks.logging_only,
|
|
],
|
|
event_hook=Mode(
|
|
tags={"test_tag": "logging_only"},
|
|
default=["pre_call", "post_call"],
|
|
),
|
|
default_on=True,
|
|
)
|
|
|
|
# No tag match → default fires for pre_call
|
|
assert (
|
|
cg.should_run_guardrail(
|
|
data={"messages": [{"role": "user", "content": "test"}]},
|
|
event_type=GuardrailEventHooks.pre_call,
|
|
)
|
|
is True
|
|
)
|
|
|
|
# No tag match → default fires for post_call
|
|
assert (
|
|
cg.should_run_guardrail(
|
|
data={"messages": [{"role": "user", "content": "test"}]},
|
|
event_type=GuardrailEventHooks.post_call,
|
|
)
|
|
is True
|
|
)
|
|
|
|
# No tag match → logging_only NOT in default list, should not fire
|
|
assert (
|
|
cg.should_run_guardrail(
|
|
data={"messages": [{"role": "user", "content": "test"}]},
|
|
event_type=GuardrailEventHooks.logging_only,
|
|
)
|
|
is False
|
|
)
|
|
|
|
# Tag matches → only logging_only should fire
|
|
assert (
|
|
cg.should_run_guardrail(
|
|
data={
|
|
"messages": [{"role": "user", "content": "test"}],
|
|
"litellm_metadata": {"tags": ["test_tag"]},
|
|
},
|
|
event_type=GuardrailEventHooks.logging_only,
|
|
)
|
|
is True
|
|
)
|
|
|
|
# Tag matches → pre_call should NOT fire (tag says logging_only)
|
|
assert (
|
|
cg.should_run_guardrail(
|
|
data={
|
|
"messages": [{"role": "user", "content": "test"}],
|
|
"litellm_metadata": {"tags": ["test_tag"]},
|
|
},
|
|
event_type=GuardrailEventHooks.pre_call,
|
|
)
|
|
is False
|
|
)
|
|
|
|
# Tag matches → post_call should NOT fire (tag says logging_only)
|
|
assert (
|
|
cg.should_run_guardrail(
|
|
data={
|
|
"messages": [{"role": "user", "content": "test"}],
|
|
"litellm_metadata": {"tags": ["test_tag"]},
|
|
},
|
|
event_type=GuardrailEventHooks.post_call,
|
|
)
|
|
is False
|
|
)
|
|
|
|
|
|
def test_custom_guardrail_with_mode_no_default(monkeypatch):
|
|
"""Test Mode with no default — guardrail only fires when tag matches"""
|
|
monkeypatch.setattr("litellm.proxy.proxy_server.premium_user", True)
|
|
cg = CustomGuardrail(
|
|
guardrail_name="test_guardrail",
|
|
supported_event_hooks=[
|
|
GuardrailEventHooks.pre_call,
|
|
GuardrailEventHooks.logging_only,
|
|
],
|
|
event_hook=Mode(
|
|
tags={"test_tag": "logging_only"},
|
|
),
|
|
default_on=True,
|
|
)
|
|
|
|
# No tag, no default → nothing fires
|
|
assert (
|
|
cg.should_run_guardrail(
|
|
data={"messages": [{"role": "user", "content": "test"}]},
|
|
event_type=GuardrailEventHooks.pre_call,
|
|
)
|
|
is False
|
|
)
|
|
|
|
assert (
|
|
cg.should_run_guardrail(
|
|
data={"messages": [{"role": "user", "content": "test"}]},
|
|
event_type=GuardrailEventHooks.logging_only,
|
|
)
|
|
is False
|
|
)
|
|
|
|
# Tag matches → only logging_only fires
|
|
assert (
|
|
cg.should_run_guardrail(
|
|
data={
|
|
"messages": [{"role": "user", "content": "test"}],
|
|
"litellm_metadata": {"tags": ["test_tag"]},
|
|
},
|
|
event_type=GuardrailEventHooks.logging_only,
|
|
)
|
|
is True
|
|
)
|
|
|
|
|
|
def test_custom_guardrail_with_mode_tag_value_list(monkeypatch):
|
|
"""Test Mode with tag value as a list of modes (e.g. tags: {"tag": ["pre_call", "post_call"]})"""
|
|
monkeypatch.setattr("litellm.proxy.proxy_server.premium_user", True)
|
|
cg = CustomGuardrail(
|
|
guardrail_name="test_guardrail",
|
|
supported_event_hooks=[
|
|
GuardrailEventHooks.pre_call,
|
|
GuardrailEventHooks.post_call,
|
|
GuardrailEventHooks.logging_only,
|
|
],
|
|
event_hook=Mode(
|
|
tags={"test_tag": ["pre_call", "post_call"]},
|
|
default="logging_only",
|
|
),
|
|
default_on=True,
|
|
)
|
|
|
|
# Tag matches → pre_call should fire (in tag's list)
|
|
assert (
|
|
cg.should_run_guardrail(
|
|
data={
|
|
"messages": [{"role": "user", "content": "test"}],
|
|
"litellm_metadata": {"tags": ["test_tag"]},
|
|
},
|
|
event_type=GuardrailEventHooks.pre_call,
|
|
)
|
|
is True
|
|
)
|
|
|
|
# Tag matches → post_call should fire (in tag's list)
|
|
assert (
|
|
cg.should_run_guardrail(
|
|
data={
|
|
"messages": [{"role": "user", "content": "test"}],
|
|
"litellm_metadata": {"tags": ["test_tag"]},
|
|
},
|
|
event_type=GuardrailEventHooks.post_call,
|
|
)
|
|
is True
|
|
)
|
|
|
|
# Tag matches → logging_only should NOT fire (not in tag's list)
|
|
assert (
|
|
cg.should_run_guardrail(
|
|
data={
|
|
"messages": [{"role": "user", "content": "test"}],
|
|
"litellm_metadata": {"tags": ["test_tag"]},
|
|
},
|
|
event_type=GuardrailEventHooks.logging_only,
|
|
)
|
|
is False
|
|
)
|
|
|
|
# No tag match → default fires for logging_only
|
|
assert (
|
|
cg.should_run_guardrail(
|
|
data={"messages": [{"role": "user", "content": "test"}]},
|
|
event_type=GuardrailEventHooks.logging_only,
|
|
)
|
|
is True
|
|
)
|
|
|
|
# No tag match → pre_call should NOT fire (not in default)
|
|
assert (
|
|
cg.should_run_guardrail(
|
|
data={"messages": [{"role": "user", "content": "test"}]},
|
|
event_type=GuardrailEventHooks.pre_call,
|
|
)
|
|
is False
|
|
)
|
|
|
|
|
|
def test_custom_guardrail_with_mode(monkeypatch):
|
|
monkeypatch.setattr(
|
|
"litellm.proxy.proxy_server.premium_user", True
|
|
) # Set premium_user to True
|
|
cg = CustomGuardrail(
|
|
guardrail_name="test_guardrail",
|
|
supported_event_hooks=[
|
|
GuardrailEventHooks.pre_call,
|
|
GuardrailEventHooks.logging_only,
|
|
],
|
|
event_hook=Mode(
|
|
tags={"test_tag": "pre_call"},
|
|
default="logging_only",
|
|
),
|
|
default_on=True,
|
|
)
|
|
|
|
assert (
|
|
cg.should_run_guardrail(
|
|
data={
|
|
"messages": [{"role": "user", "content": "test_message"}],
|
|
"litellm_metadata": {"tags": ["test_tag"]},
|
|
},
|
|
event_type=GuardrailEventHooks.pre_call,
|
|
)
|
|
is True
|
|
)
|
|
|
|
assert (
|
|
cg.should_run_guardrail(
|
|
data={
|
|
"messages": [{"role": "user", "content": "test_message"}],
|
|
},
|
|
event_type=GuardrailEventHooks.pre_call,
|
|
)
|
|
is False
|
|
)
|
|
|
|
assert (
|
|
cg.should_run_guardrail(
|
|
data={
|
|
"messages": [{"role": "user", "content": "test_message"}],
|
|
"litellm_metadata": {"tags": ["test_tag"]},
|
|
},
|
|
event_type=GuardrailEventHooks.logging_only,
|
|
)
|
|
is False
|
|
)
|