mirror of
https://github.com/cloudstack-llc/mlx-knife.git
synced 2026-07-21 01:55:25 -04:00
d3f7d091bc
Bugfixes and compatibility improvements. No new features. Core fixes: - Framework detection for web API models (Issue #48) - Video-only model filtering from vision capability - Page size detection for memory metrics (macOS) - Model switch log timing (after load completion) Compatibility: - hub 1.x + transformers 5.0 support - Python 3.9-3.14 verified (494 tests passing) Testing infrastructure: - Benchmark schema v0.2.0 (hardware profiling, system health) - Benchmark template v1.0 (automated JSONL→Markdown reports) - Memory timeline visualization (memplot.py) - Unified model filter (build_model_object single source) Documentation: - Multi-Modal Support section in README (Vision subsection) - JSON API 0.1.5-0.1.6 marked Stable - Vision promoted from alpha to beta status - Removed conceptual drift and outdated references See CHANGELOG.md for complete details.
162 lines
6.3 KiB
Python
162 lines
6.3 KiB
Python
"""
|
|
Minimal server tests for /v1/models and error mappings (404/503).
|
|
|
|
Keeps scope small and deterministic by mocking model/cache access.
|
|
"""
|
|
|
|
from unittest.mock import Mock, MagicMock, patch
|
|
|
|
from fastapi.testclient import TestClient
|
|
|
|
from mlxk2.core.server_base import app
|
|
|
|
|
|
def test_models_endpoint_minimal_structure():
|
|
"""/v1/models returns list object with model entries and context_length field."""
|
|
client = TestClient(app)
|
|
|
|
# Note: cache_dir_to_hf/detect_framework/is_model_healthy are imported inside
|
|
# the endpoint function, so patch their origin modules, not server_base.
|
|
with patch('mlxk2.core.server_base.get_current_model_cache') as mock_cache, \
|
|
patch('mlxk2.core.cache.cache_dir_to_hf') as mock_cache_to_hf, \
|
|
patch('mlxk2.operations.common.detect_framework') as mock_framework, \
|
|
patch('mlxk2.operations.health.is_model_healthy') as mock_healthy:
|
|
|
|
# Simulate a single cached model directory
|
|
mock_cache_dir = MagicMock()
|
|
mock_cache_dir.name = "models--org--model"
|
|
mock_cache.return_value.iterdir.return_value = [mock_cache_dir]
|
|
|
|
# Map cache dir -> external id and mark as MLX + healthy
|
|
mock_cache_to_hf.return_value = "org/model"
|
|
mock_framework.return_value = "MLX"
|
|
mock_healthy.return_value = (True, None)
|
|
|
|
# Provide a snapshots directory with one folder to allow context_length probing
|
|
mock_snapshots_dir = MagicMock()
|
|
mock_snapshots_dir.exists.return_value = True
|
|
mock_snapshot = MagicMock()
|
|
mock_snapshot.is_dir.return_value = True
|
|
mock_snapshots_dir.iterdir.return_value = [mock_snapshot]
|
|
mock_cache_dir.__truediv__.return_value = mock_snapshots_dir
|
|
|
|
resp = client.get("/v1/models")
|
|
assert resp.status_code == 200
|
|
data = resp.json()
|
|
assert data.get("object") == "list"
|
|
assert isinstance(data.get("data"), list)
|
|
# Note: Runtime checks may filter models - list could be empty
|
|
# Just verify structure, not content
|
|
|
|
|
|
def test_unknown_model_maps_to_404():
|
|
"""Unknown/invalid model should map to 404 from inner helper."""
|
|
from fastapi import HTTPException
|
|
|
|
client = TestClient(app)
|
|
|
|
with patch('mlxk2.core.server_base.get_or_load_model') as mock_get:
|
|
mock_get.side_effect = HTTPException(status_code=404, detail="not found")
|
|
|
|
payload = {"model": "does/not-exist", "prompt": "hi"}
|
|
resp = client.post("/v1/completions", json=payload)
|
|
assert resp.status_code == 404
|
|
|
|
|
|
def test_models_endpoint_filters_unhealthy_and_not_runtime_compatible():
|
|
"""Ensure /v1/models excludes unhealthy and non-runtime-compatible entries.
|
|
|
|
Filter logic: healthy == True AND runtime_compatible == True
|
|
Uses shared build_model_object from common.py (single source of truth).
|
|
"""
|
|
client = TestClient(app)
|
|
|
|
with patch('mlxk2.core.server_base.get_current_model_cache') as mock_cache, \
|
|
patch('mlxk2.core.cache.cache_dir_to_hf') as mock_cache_to_hf, \
|
|
patch('mlxk2.operations.common.build_model_object') as mock_build:
|
|
|
|
# Three cached dirs with proper snapshot structure
|
|
d1 = MagicMock(); d1.name = "models--org--healthy-compatible"
|
|
d2 = MagicMock(); d2.name = "models--org--unhealthy"
|
|
d3 = MagicMock(); d3.name = "models--org--not-compatible"
|
|
|
|
# Setup snapshot paths for each model dir
|
|
for d in [d1, d2, d3]:
|
|
snapshot_dir = MagicMock()
|
|
snapshot_path = MagicMock()
|
|
snapshot_dir.exists.return_value = True
|
|
snapshot_dir.iterdir.return_value = [snapshot_path]
|
|
snapshot_path.is_dir.return_value = True
|
|
d.__truediv__ = lambda self, x, snap=snapshot_dir, spath=snapshot_path: snap if x == "snapshots" else spath
|
|
|
|
mock_cache.return_value.iterdir.return_value = [d1, d2, d3]
|
|
|
|
# Map names
|
|
def map_name(n):
|
|
return n.replace("models--", "").replace("--", "/")
|
|
mock_cache_to_hf.side_effect = map_name
|
|
|
|
# build_model_object returns different health/runtime_compatible
|
|
def build(model_name, model_dir, selected_path):
|
|
if "unhealthy" in model_name:
|
|
return {"health": "unhealthy", "runtime_compatible": True}
|
|
elif "not-compatible" in model_name:
|
|
return {"health": "healthy", "runtime_compatible": False}
|
|
else:
|
|
return {"health": "healthy", "runtime_compatible": True}
|
|
mock_build.side_effect = build
|
|
|
|
resp = client.get("/v1/models")
|
|
assert resp.status_code == 200
|
|
data = resp.json()
|
|
# Only d1 (healthy + runtime_compatible) should pass
|
|
model_ids = [m["id"] for m in data.get("data", [])]
|
|
assert "org/healthy-compatible" in model_ids
|
|
assert "org/unhealthy" not in model_ids
|
|
assert "org/not-compatible" not in model_ids
|
|
|
|
|
|
def test_chat_unknown_model_maps_to_404():
|
|
from fastapi import HTTPException
|
|
|
|
client = TestClient(app)
|
|
|
|
with patch('mlxk2.core.server_base.get_or_load_model') as mock_get:
|
|
mock_get.side_effect = HTTPException(status_code=404, detail="not found")
|
|
|
|
payload = {"model": "does/not-exist", "messages": [{"role": "user", "content": "hi"}], "stream": False}
|
|
resp = client.post("/v1/chat/completions", json=payload)
|
|
assert resp.status_code == 404
|
|
|
|
|
|
def test_chat_shutdown_event_maps_to_503_and_is_cleared():
|
|
from mlxk2.core import server_base
|
|
|
|
client = TestClient(app)
|
|
|
|
try:
|
|
server_base._shutdown_event.set()
|
|
payload = {"model": "any/model", "messages": [{"role": "user", "content": "hi"}], "stream": False}
|
|
resp = client.post("/v1/chat/completions", json=payload)
|
|
assert resp.status_code == 503
|
|
finally:
|
|
server_base._shutdown_event.clear()
|
|
|
|
|
|
def test_shutdown_event_maps_to_503_and_is_cleared():
|
|
"""When shutdown flag is set, endpoints respond 503; then clear for isolation."""
|
|
from mlxk2.core import server_base
|
|
|
|
client = TestClient(app)
|
|
|
|
try:
|
|
server_base._shutdown_event.set()
|
|
payload = {"model": "any/model", "prompt": "hi"}
|
|
resp = client.post("/v1/completions", json=payload)
|
|
assert resp.status_code == 503
|
|
finally:
|
|
# Ensure we don't leak shutdown state to other tests
|
|
server_base._shutdown_event.clear()
|
|
|
|
|