File size: 17,779 Bytes
728ba08 f45fdfa 728ba08 f45fdfa 728ba08 f45fdfa 728ba08 f45fdfa 728ba08 f45fdfa 728ba08 f45fdfa 728ba08 f45fdfa 728ba08 f45fdfa 728ba08 f45fdfa 728ba08 42075bf 4f82c19 42075bf 4f82c19 f45fdfa 4f82c19 f45fdfa 4f82c19 f45fdfa 4f82c19 f45fdfa 4f82c19 f45fdfa 4f82c19 f45fdfa 4f82c19 42075bf f45fdfa 42075bf f45fdfa 4f82c19 42075bf 728ba08 f45fdfa | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 | import os
import time
import requests
import asyncio
import unittest
import threading
import logging
from dotenv import load_dotenv
# Set up logging for testing
logging.basicConfig(level=logging.INFO, format="%(asctime)s [%(levelname)s] %(message)s")
logger = logging.getLogger("proxy.test")
# Ensure .env is loaded
load_dotenv()
from proxy import ProxyConfig, LiteLLMProxyRouter, LiteLLMProxyApp
class TestLiteLLMProxy(unittest.TestCase):
"""
Complete unit and integration test suite for the LiteLLM Proxy.
Validates PII shielding, config parsing, token rates, and fallback multi-cluster routing.
"""
@classmethod
def setUpClass(cls):
logger.info("Initializing OOP LiteLLM Proxy components for verification...")
cls.config = ProxyConfig(config_path="config.yaml")
cls.router = LiteLLMProxyRouter(config=cls.config)
def test_1_config_loading(self):
"""Verifies that config.yaml endpoints and global router parameters are parsed correctly into Pydantic models."""
logger.info("--- Test 1: Configuration Loading ---")
self.assertGreater(len(self.config.endpoints), 0, "No model endpoints loaded!")
# Check router configurations (aligned to user settings)
self.assertEqual(self.config.routing_strategy, "usage-based-routing")
self.assertEqual(self.config.num_retries, 3)
self.assertEqual(self.config.timeout, 10)
# Inspect loaded endpoints
primary_nodes = self.config.get_endpoints_for_model("primary-cluster")
backup_nodes = self.config.get_endpoints_for_model("backup-cluster")
local_nodes = self.config.get_endpoints_for_model("local-fallback-cluster")
self.assertGreater(len(primary_nodes), 0, "No 'primary-cluster' endpoints found.")
self.assertGreater(len(backup_nodes), 0, "No 'backup-cluster' endpoints found.")
logger.info(f"Loaded: {len(primary_nodes)} primary nodes, {len(backup_nodes)} backups, and {len(local_nodes)} local fallbacks.")
def test_2_token_estimation(self):
"""Tests that tiktoken and the character-count fallbacks work properly."""
logger.info("--- Test 2: Token Estimation ---")
text = "This is a simple prompt for verifying the token estimator."
# Test basic estimation
token_count = self.router.estimate_tokens(text)
self.assertGreater(token_count, 0)
# Test message array estimation
messages = [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Tell me a story about gravity."}
]
total_tokens = self.router.estimate_request_tokens(messages)
self.assertGreater(total_tokens, len(messages) * 5)
logger.info(f"Prompt content: {len(text)} chars -> estimated {token_count} tokens.")
logger.info(f"System+User chat list -> estimated {total_tokens} tokens.")
def test_3_tpr_context_filtering(self):
"""
Tests Tokens Per Request (TPR) context window filtering and escalation in mock sandbox mode.
A short prompt should route to primary Llama-3.1-8B (context limit 8K for Cerebras).
An extremely long prompt that exceeds 8K context should automatically route
to the high-capacity backup-cluster (128K context window).
"""
logger.info("--- Test 3: Tokens Per Request (TPR) Dynamic Selection ---")
# Case A: Short Prompt (Fits in Cerebras 8K context)
messages_short = [{"role": "user", "content": "Hello, how are you today?"}]
response_short = asyncio.run(self.router.execute_chat_completion(
model="primary-cluster",
messages=messages_short,
max_tokens=100,
mock_sandbox=True
))
model_short = response_short["model"]
self.assertIn(model_short, [
"groq/llama-3.1-8b-instant",
"cerebras/llama3.1-8b"
])
logger.info(f"Short prompt routed correctly to primary node: {model_short}")
# Case B: Huge Prompt (Exceeds Llama 3.1 8B's 131k context limit)
messages_large = [{"role": "user", "content": "Explain gravity in great detail." * 1000}]
response_large = asyncio.run(self.router.execute_chat_completion(
model="primary-cluster",
messages=messages_large,
max_tokens=130000,
mock_sandbox=True
))
model_large = response_large["model"]
self.assertEqual(model_large, "together_ai/meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo")
logger.info(f"Huge prompt auto-escalated correctly in sandbox to backup premium cluster: {model_large}")
def test_4_mock_sandbox_completion(self):
"""Verifies that we can trigger the router completion flow in mock sandbox mode to test load balancing splits."""
logger.info("--- Test 4: Mock Sandbox Load-Balancing Execution ---")
messages = [{"role": "user", "content": "Compute the trajectory of a falling apple."}]
response = asyncio.run(self.router.execute_chat_completion(
model="primary-cluster",
messages=messages,
max_tokens=100,
mock_sandbox=True
))
self.assertIn("id", response)
self.assertEqual(response["object"], "chat.completion")
self.assertEqual(len(response["choices"]), 1)
self.assertEqual(response["choices"][0]["message"]["role"], "assistant")
content = response["choices"][0]["message"]["content"]
self.assertIn("[LiteLLM Proxy Mock -", content)
# Inspect metrics tracking
metrics = self.router.get_metrics()
self.assertGreater(metrics["successful_requests"], 0)
self.assertGreater(metrics["total_input_tokens"], 0)
logger.info(f"Completion Mock successful. Response returned:\n{content}")
logger.info(f"Updated proxy metrics: {metrics}")
def test_5_api_microservice_integration(self):
"""
Integration test: Starts the FastAPI microservice in a background thread,
and fires HTTP client requests against standard OpenAI paths.
"""
logger.info("--- Test 5: FastAPI Microservice Integration Test ---")
# Initialize the microservice container on port 8090 to avoid collisions
os.environ["PORT"] = "8090"
proxy_app = LiteLLMProxyApp(config_path="config.yaml")
app_instance = proxy_app.get_app()
import uvicorn
# Run uvicorn in a background thread
server_thread = threading.Thread(
target=lambda: uvicorn.run(app_instance, host="127.0.0.1", port=8090, log_level="warning"),
daemon=True
)
server_thread.start()
# Wait a moment for server boot
time.sleep(1.5)
base_url = "http://127.0.0.1:8090"
# 1. Verify health check
health_resp = requests.get(f"{base_url}/health")
self.assertEqual(health_resp.status_code, 200)
self.assertEqual(health_resp.json()["status"], "healthy")
logger.info(f"Health check verified: {health_resp.json()}")
# 2. Verify models list
models_resp = requests.get(f"{base_url}/v1/models")
self.assertEqual(models_resp.status_code, 200)
models_list = models_resp.json()["data"]
self.assertGreater(len(models_list), 0)
logger.info(f"Models list endpoint verified. Found {len(models_list)} registered models.")
# 3. Verify chat completion request via HTTP client using mock_sandbox
payload = {
"model": "primary-cluster",
"messages": [
{"role": "user", "content": "What is the escape velocity of Earth?"}
],
"max_tokens": 150,
"mock_sandbox": True
}
completion_resp = requests.post(f"{base_url}/v1/chat/completions", json=payload)
self.assertEqual(completion_resp.status_code, 200)
completion_data = completion_resp.json()
self.assertIn("choices", completion_data)
reply = completion_data["choices"][0]["message"]["content"]
self.assertIn("LiteLLM Proxy Mock", reply)
logger.info(f"Chat completion HTTP endpoint verified. Response:\n{reply}")
# 4. Verify metrics endpoint tracks real-time usage
metrics_resp = requests.get(f"{base_url}/metrics")
self.assertEqual(metrics_resp.status_code, 200)
metrics_data = metrics_resp.json()
self.assertGreater(metrics_data["metrics"]["successful_requests"], 0)
logger.info(f"Metrics endpoint verified. Captured stats: {metrics_data['metrics']}")
def test_6_complexity_routing(self):
"""
Tests that prompt complexity is correctly classified and routes requests
to the appropriate complexity-tiered models.
"""
logger.info("--- Test 6: Complexity-Aware Routing ---")
# Case A: Low Complexity prompt (Simple greeting)
# Should match 'low' complexity and route to a low cost node (e.g. cerebras/llama3.1-8b or ollama/llama3.1)
messages_low = [{"role": "user", "content": "Hello! How is it going?"}]
response_low = asyncio.run(self.router.execute_chat_completion(
model="primary-cluster",
messages=messages_low,
max_tokens=100,
mock_sandbox=True
))
model_low = response_low["model"]
# With low complexity prompt, the best node under primary-cluster is Cerebras Llama 3.1 8B (tier: low, cost: 0.01)
self.assertEqual(model_low, "cerebras/llama3.1-8b")
logger.info(f"Low complexity prompt routed correctly to low-cost node: {model_low}")
# Case B: High Complexity prompt (Coding / optimization request)
# Should match 'high' complexity and route to a high reasoning node (e.g. groq/llama-3.3-70b-versatile)
messages_high = [{"role": "user", "content": "Optimize this SQL query and write a python refactoring function to execute it cleanly."}]
response_high = asyncio.run(self.router.execute_chat_completion(
model="primary-cluster",
messages=messages_high,
max_tokens=150,
mock_sandbox=True
))
model_high = response_high["model"]
# With high complexity prompt, the best node under primary-cluster is Groq Llama 3.3 70B (tier: high, cost: 0.70)
self.assertEqual(model_high, "groq/llama-3.3-70b-versatile")
logger.info(f"High complexity prompt routed correctly to reasoning node: {model_high}")
# Case C: Medium Complexity prompt (Summarization task)
# Should match 'medium' complexity and route to a medium tier node (e.g. groq/llama-3.1-8b-instant)
messages_med = [{"role": "user", "content": "Please write a concise summarization of this company's Q1 financial report."}]
response_med = asyncio.run(self.router.execute_chat_completion(
model="primary-cluster",
messages=messages_med,
max_tokens=150,
mock_sandbox=True
))
model_med = response_med["model"]
# With medium complexity prompt, the best node under primary-cluster is Groq Llama 3.1 8B (tier: medium, cost: 0.05)
self.assertEqual(model_med, "groq/llama-3.1-8b-instant")
logger.info(f"Medium complexity prompt routed correctly to standard node: {model_med}")
def test_7_priority_preference_routing(self):
"""
Tests the Priority-Based Preference Routing and Credit Limit Failover:
- Configures custom preference order: [groq/llama-3.1-8b-instant, cerebras/llama3.1-8b]
- Sets tight budget limits.
- Verifies it routes requests to the first preferred model.
- Exceeds the first model's budget, then verifies it automatically cascades/fails over to the second!
- Resets the spend, verifying it goes back to the first.
"""
logger.info("--- Test 7: Priority-Based Preference Routing & Credit Limits ---")
# Save original preference state
old_pref_enabled = self.router.preference_enabled
old_pref_list = self.router.preference_list
old_limits = self.router.credit_limits.copy()
old_spend = self.router.accumulated_spend.copy()
try:
self.router.preference_enabled = True
self.router.preference_list = [
"groq/llama-3.1-8b-instant",
"cerebras/llama3.1-8b"
]
# Reset spend counters
self.router.accumulated_spend["groq/llama-3.1-8b-instant"] = 0.0
self.router.accumulated_spend["cerebras/llama3.1-8b"] = 0.0
# Set tiny credit limit for first priority model
self.router.credit_limits["groq/llama-3.1-8b-instant"] = 0.000001
self.router.credit_limits["cerebras/llama3.1-8b"] = 0.05
# 1. Fire first request - should route to Priority 1 (groq/llama-3.1-8b-instant)
messages = [{"role": "user", "content": "Test prompt sequence"}]
response_1 = asyncio.run(self.router.execute_chat_completion(
model="primary-cluster",
messages=messages,
max_tokens=100,
mock_sandbox=True
))
self.assertEqual(response_1["model"], "groq/llama-3.1-8b-instant")
logger.info("Successfully routed first request to Priority 1 model.")
# 2. Check spend has increased and exceeded the $0.000001 limit
groq_spend = self.router.accumulated_spend.get("groq/llama-3.1-8b-instant", 0.0)
self.assertGreater(groq_spend, 0.000001)
logger.info(f"Priority 1 spend accumulated correctly: ${groq_spend:.6f} > $0.00001 limit.")
# 3. Fire second request - should automatically fail over / cascade to Priority 2 (cerebras/llama3.1-8b)
response_2 = asyncio.run(self.router.execute_chat_completion(
model="primary-cluster",
messages=messages,
max_tokens=100,
mock_sandbox=True
))
self.assertEqual(response_2["model"], "cerebras/llama3.1-8b")
logger.info("Successfully failed over to Priority 2 model once Priority 1 budget was exceeded.")
# 4. Reset spend and verify it routes back to Priority 1 (groq/llama-3.1-8b-instant)
self.router.accumulated_spend["groq/llama-3.1-8b-instant"] = 0.0
response_3 = asyncio.run(self.router.execute_chat_completion(
model="primary-cluster",
messages=messages,
max_tokens=100,
mock_sandbox=True
))
self.assertEqual(response_3["model"], "groq/llama-3.1-8b-instant")
logger.info("Successfully routed back to Priority 1 after resetting budget spend counters.")
finally:
# Restore original state
self.router.preference_enabled = old_pref_enabled
self.router.preference_list = old_pref_list
self.router.credit_limits = old_limits
self.router.accumulated_spend = old_spend
def test_8_pii_guardrail(self):
"""
Verifies that the local DeBERTa-v3 PII Guardrail operates correctly:
- Enabling MASK action replaces PII with MASK placeholders pre-call and post-call.
- Enabling BLOCK action throws ValueError (PII policy violation) pre-call.
"""
logger.info("--- Test 8: DeBERTa-v3 PII Guardrail ---")
# Save original PII state
old_pii_enabled = getattr(self.router, "pii_enabled", False)
old_pii_action = getattr(self.router, "pii_action", "MASK")
try:
# 1. Test MASK Scenario
self.router.pii_enabled = True
self.router.pii_action = "MASK"
messages_pii = [{"role": "user", "content": "My SSN is 123-45-6789"}]
response_mask = asyncio.run(self.router.execute_chat_completion(
model="primary-cluster",
messages=messages_pii,
max_tokens=100,
mock_sandbox=True
))
content_mask = response_mask["choices"][0]["message"]["content"]
self.assertNotIn("123-45-6789", content_mask)
self.assertTrue(any(tag in content_mask for tag in ["SOCIAL_SECURITY_NUMBER", "CREDIT_CARD_NUMBER", "BANK_ACCOUNT_NUMBER"]), f"No expected PII mask placeholder found in: {content_mask}")
logger.info("PII Masking verification succeeded.")
# 2. Test BLOCK Scenario
self.router.pii_action = "BLOCK"
with self.assertRaises(ValueError) as context:
asyncio.run(self.router.execute_chat_completion(
model="primary-cluster",
messages=messages_pii,
max_tokens=100,
mock_sandbox=True
))
self.assertIn("PII policy violation", str(context.exception))
logger.info("PII Blocking verification succeeded.")
finally:
# Restore original state
self.router.pii_enabled = old_pii_enabled
self.router.pii_action = old_pii_action
if __name__ == "__main__":
unittest.main()
|