Files
litellm/tests/test_litellm/integrations/arize/test_arize_phoenix.py
T
2025-11-22 09:28:37 -08:00

200 lines
7.4 KiB
Python

import unittest
from unittest.mock import patch
import pytest
from litellm.integrations.arize.arize_phoenix import (
ArizePhoenixConfig,
ArizePhoenixLogger,
)
class TestArizePhoenixConfig(unittest.TestCase):
@patch.dict(
"os.environ",
{
"PHOENIX_API_KEY": "test_api_key",
"PHOENIX_COLLECTOR_HTTP_ENDPOINT": "http://test.endpoint",
},
)
def test_get_arize_phoenix_config_http(self):
# Call the function to get the configuration
config = ArizePhoenixLogger.get_arize_phoenix_config()
# Verify the configuration - now uses standard Authorization Bearer format
self.assertEqual(
config.otlp_auth_headers, "Authorization=Bearer test_api_key"
)
self.assertEqual(config.endpoint, "http://test.endpoint/v1/traces")
self.assertEqual(config.protocol, "otlp_http")
@patch.dict(
"os.environ",
{
"PHOENIX_API_KEY": "test_api_key",
"PHOENIX_COLLECTOR_ENDPOINT": "grpc://test.endpoint",
},
)
def test_get_arize_phoenix_config_grpc(self):
# Call the function to get the configuration
config = ArizePhoenixLogger.get_arize_phoenix_config()
# Verify the configuration - now uses standard Authorization Bearer format
self.assertEqual(
config.otlp_auth_headers, "Authorization=Bearer test_api_key"
)
self.assertEqual(config.endpoint, "grpc://test.endpoint")
self.assertEqual(config.protocol, "otlp_grpc")
@patch.dict(
"os.environ",
{
"PHOENIX_API_KEY": "test_api_key",
"PHOENIX_COLLECTOR_ENDPOINT": "http://localhost:6006",
},
)
def test_get_arize_phoenix_config_http_local(self):
# Test with local Phoenix instance
config = ArizePhoenixLogger.get_arize_phoenix_config()
# Should automatically append /v1/traces to local endpoint
self.assertEqual(
config.otlp_auth_headers, "Authorization=Bearer test_api_key"
)
self.assertEqual(config.endpoint, "http://localhost:6006/v1/traces")
self.assertEqual(config.protocol, "otlp_http")
@patch.dict(
"os.environ",
{
"PHOENIX_COLLECTOR_ENDPOINT": "http://localhost:4317",
},
clear=True
)
def test_get_arize_phoenix_config_grpc_no_api_key(self):
# Test gRPC endpoint detection and no API key (for local development)
config = ArizePhoenixLogger.get_arize_phoenix_config()
# No API key should be fine for local development
self.assertIsNone(config.otlp_auth_headers)
self.assertEqual(config.endpoint, "http://localhost:4317")
self.assertEqual(config.protocol, "otlp_grpc")
@patch.dict("os.environ", {}, clear=True)
def test_get_arize_phoenix_config_defaults_to_local(self):
# Test that it defaults to local Phoenix when no config is provided
config = ArizePhoenixLogger.get_arize_phoenix_config()
# Should default to localhost
self.assertEqual(config.endpoint, "http://localhost:6006/v1/traces")
self.assertEqual(config.protocol, "otlp_http")
# No auth headers when no API key is provided for local instance
self.assertIsNone(config.otlp_auth_headers)
@pytest.mark.parametrize(
"env_vars, expected_headers, expected_endpoint, expected_protocol",
[
pytest.param(
{"PHOENIX_API_KEY": "test_api_key"},
"Authorization=Bearer test_api_key",
"http://localhost:6006/v1/traces",
"otlp_http",
id="default to http protocol and self-hosted Phoenix endpoint",
),
pytest.param(
{"PHOENIX_COLLECTOR_HTTP_ENDPOINT": "", "PHOENIX_API_KEY": "test_api_key"},
"Authorization=Bearer test_api_key",
"http://localhost:6006/v1/traces",
"otlp_http",
id="empty string/unset endpoint will default to http protocol and self-hosted Phoenix endpoint",
),
pytest.param(
{"PHOENIX_COLLECTOR_HTTP_ENDPOINT": "http://localhost:4318", "PHOENIX_COLLECTOR_ENDPOINT": "http://localhost:4317", "PHOENIX_API_KEY": "test_api_key"},
"Authorization=Bearer test_api_key",
"http://localhost:4318/v1/traces",
"otlp_http",
id="prioritize http if both endpoints are set",
),
pytest.param(
{"PHOENIX_COLLECTOR_ENDPOINT": "https://localhost:6006", "PHOENIX_API_KEY": "test_api_key"},
"Authorization=Bearer test_api_key",
"https://localhost:6006/v1/traces",
"otlp_http",
id="custom https endpoint treated as http",
),
pytest.param(
{"PHOENIX_COLLECTOR_ENDPOINT": "https://localhost:6006"},
None,
"https://localhost:6006/v1/traces",
"otlp_http",
id="custom https endpoint with no auth treated as http",
),
pytest.param(
{"PHOENIX_COLLECTOR_ENDPOINT": "grpc://localhost:6006", "PHOENIX_API_KEY": "test_api_key"},
"Authorization=Bearer test_api_key",
"grpc://localhost:6006",
"otlp_grpc",
id="explicit grpc endpoint with grpc:// prefix",
),
pytest.param(
{"PHOENIX_COLLECTOR_ENDPOINT": "http://localhost:4317"},
None,
"http://localhost:4317",
"otlp_grpc",
id="grpc endpoint with standard grpc port 4317",
),
pytest.param(
{"PHOENIX_COLLECTOR_HTTP_ENDPOINT": "https://localhost:6006", "PHOENIX_API_KEY": "test_api_key"},
"Authorization=Bearer test_api_key",
"https://localhost:6006/v1/traces",
"otlp_http",
id="custom http endpoint",
),
],
)
def test_get_arize_phoenix_config(monkeypatch, env_vars, expected_headers, expected_endpoint, expected_protocol):
# Clear all Phoenix-related env vars first to ensure clean state
for key in ["PHOENIX_API_KEY", "PHOENIX_COLLECTOR_ENDPOINT", "PHOENIX_COLLECTOR_HTTP_ENDPOINT"]:
monkeypatch.delenv(key, raising=False)
for key, value in env_vars.items():
monkeypatch.setenv(key, value)
config = ArizePhoenixLogger.get_arize_phoenix_config()
assert isinstance(config, ArizePhoenixConfig)
assert config.otlp_auth_headers == expected_headers
assert config.endpoint == expected_endpoint
assert config.protocol == expected_protocol
@pytest.mark.parametrize(
"env_vars",
[
pytest.param(
{"PHOENIX_COLLECTOR_ENDPOINT": "https://app.phoenix.arize.com/v1/traces"},
id="missing api_key with explicit Arize Phoenix Cloud endpoint"
),
pytest.param(
{"PHOENIX_COLLECTOR_HTTP_ENDPOINT": "https://app.phoenix.arize.com/v1/traces"},
id="missing api_key with HTTP Arize Phoenix Cloud endpoint"
),
],
)
def test_get_arize_phoenix_config_expection_on_missing_api_key(monkeypatch, env_vars):
# Clear all Phoenix-related env vars first to ensure clean state
for key in ["PHOENIX_API_KEY", "PHOENIX_COLLECTOR_ENDPOINT", "PHOENIX_COLLECTOR_HTTP_ENDPOINT"]:
monkeypatch.delenv(key, raising=False)
for key, value in env_vars.items():
monkeypatch.setenv(key, value)
with pytest.raises(ValueError, match="PHOENIX_API_KEY must be set when using Phoenix Cloud"):
ArizePhoenixLogger.get_arize_phoenix_config()
if __name__ == "__main__":
unittest.main()