Spaces:
Paused
Paused
File size: 35,989 Bytes
8c1b9fe 656439d 8c1b9fe 656439d 8c1b9fe 656439d 8c1b9fe 656439d 8c1b9fe 656439d 8c1b9fe 656439d 8c1b9fe 656439d 8c1b9fe 656439d 8c1b9fe 656439d 8c1b9fe 656439d 8c1b9fe | 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 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 | """Tests for the ModelFit HTTP router, CLI, benchmark runner, and hardware probing.
Everything runs offline: Ollama / HF Hub interactions are replaced with fakes,
and benchmark streaming is simulated with a canned httpx.AsyncClient double.
"""
from __future__ import annotations
import json
from types import SimpleNamespace
import auralynq.modelfit.benchmark_runner as bench_mod
import auralynq.modelfit.catalog_fetcher as fetcher_mod
import auralynq.modelfit.community as community_mod
import auralynq.modelfit.hardware as hw_mod
import auralynq.modelfit.model_registry as registry_mod
import auralynq.modelfit.ollama_client as ollama_client_mod
import auralynq.modelfit.pull_jobs as pull_jobs_mod
import pytest
from auralynq.modelfit.benchmark_runner import (
BenchmarkResult,
get_run,
list_runs,
run_benchmark,
)
from auralynq.modelfit.cli import app as cli_app
from auralynq.modelfit.community import (
load_community_results,
save_community_result,
)
from auralynq.modelfit.hf_catalog import search_hf_models
from auralynq.modelfit.model_metadata import ModelMetadata
from auralynq.modelfit.model_registry import ModelRegistry, _discover_local_gguf, get_registry
from auralynq.modelfit.ollama_catalog import (
_tag_to_metadata,
get_model_details,
list_installed_models,
)
from auralynq.modelfit.router import router as modelfit_router
from fastapi import FastAPI
from fastapi.testclient import TestClient
from typer.testing import CliRunner
# ββ Shared fakes ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class _FakeResponse:
def __init__(self, status_code: int = 200, payload=None):
self.status_code = status_code
self._payload = payload if payload is not None else {}
def json(self):
return self._payload
class _FakeAsyncClient:
"""Stands in for httpx.AsyncClient for plain GET/POST calls."""
def __init__(self, *args, response: _FakeResponse | None = None, **kwargs):
self._response = response or _FakeResponse()
async def __aenter__(self):
return self
async def __aexit__(self, *exc):
return False
async def get(self, *args, **kwargs):
return self._response
async def post(self, *args, **kwargs):
return self._response
def _client_factory(response: _FakeResponse):
def factory(*args, **kwargs):
return _FakeAsyncClient(response=response)
return factory
class _RaisingAsyncClient:
def __init__(self, *args, **kwargs):
raise ConnectionError("connection refused")
# ββ Ollama catalog ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def test_tag_metadata_chat_model_with_tools():
m = _tag_to_metadata("llama3.1:8b", size_bytes=5 * 1024**3)
assert m.family == "llama"
assert m.parameter_count_b == 8.0
assert m.context_length == 128000
assert m.tool_calling is True
assert "agents" in m.tasks
assert m.notes and "Disk size" in m.notes[0]
def test_tag_metadata_vision_model():
m = _tag_to_metadata("llava:13b")
assert m.vision is True
assert "vision" in m.tasks
assert m.notes == ["Size unknown"]
def test_tag_metadata_embedding_model_has_no_chat_tasks():
m = _tag_to_metadata("nomic-embed-text:latest")
assert m.embedding is True
assert m.tasks == []
def test_tag_metadata_unknown_family():
m = _tag_to_metadata("some-exotic-model:1b")
assert m.family == "unknown"
@pytest.mark.asyncio
async def test_list_installed_models_parses_tags(monkeypatch):
payload = {"models": [{"name": "llama3.1:8b", "size": 4 * 1024**3}, {"name": ""}]}
monkeypatch.setattr("httpx.AsyncClient", _client_factory(_FakeResponse(200, payload)))
models, warnings = await list_installed_models()
assert warnings == []
assert len(models) == 1
assert models[0].model_id == "ollama:llama3.1:8b"
@pytest.mark.asyncio
async def test_list_installed_models_http_error(monkeypatch):
monkeypatch.setattr("httpx.AsyncClient", _client_factory(_FakeResponse(500)))
models, warnings = await list_installed_models()
assert models == []
assert any("HTTP 500" in w for w in warnings)
@pytest.mark.asyncio
async def test_list_installed_models_unreachable(monkeypatch):
monkeypatch.setattr("httpx.AsyncClient", _RaisingAsyncClient)
models, warnings = await list_installed_models()
assert models == []
assert any("not reachable" in w for w in warnings)
@pytest.mark.asyncio
async def test_get_model_details_found(monkeypatch):
monkeypatch.setattr("httpx.AsyncClient", _client_factory(_FakeResponse(200, {})))
meta, warnings = await get_model_details("mistral:7b")
assert meta is not None
assert meta.family == "mistral"
assert warnings == []
@pytest.mark.asyncio
async def test_get_model_details_not_found(monkeypatch):
monkeypatch.setattr("httpx.AsyncClient", _client_factory(_FakeResponse(404)))
meta, warnings = await get_model_details("nope:1b")
assert meta is None
assert any("not found" in w for w in warnings)
@pytest.mark.asyncio
async def test_get_model_details_unreachable(monkeypatch):
monkeypatch.setattr("httpx.AsyncClient", _RaisingAsyncClient)
meta, warnings = await get_model_details("mistral:7b")
assert meta is None
assert any("not reachable" in w for w in warnings)
# ββ HF catalog live search ββββββββββββββββββββββββββββββββββββββββββββββββββββ
@pytest.mark.asyncio
async def test_search_hf_models_parses_entries(monkeypatch):
payload = [
{"modelId": "org/model-a", "tags": ["feature-extraction"], "gated": False},
{"id": "org/model-b", "tags": [], "gated": True, "license": "mit"},
{"tags": []}, # no id β skipped
]
monkeypatch.setattr("httpx.AsyncClient", _client_factory(_FakeResponse(200, payload)))
results, warnings = await search_hf_models("model")
assert warnings == []
assert [r.model_id for r in results] == ["hf:org/model-a", "hf:org/model-b"]
assert results[0].embedding is True
assert results[1].gated is True
@pytest.mark.asyncio
async def test_search_hf_models_http_error(monkeypatch):
monkeypatch.setattr("httpx.AsyncClient", _client_factory(_FakeResponse(503)))
results, warnings = await search_hf_models("model")
assert results == []
assert any("HTTP 503" in w for w in warnings)
@pytest.mark.asyncio
async def test_search_hf_models_unreachable(monkeypatch):
monkeypatch.setattr("httpx.AsyncClient", _RaisingAsyncClient)
results, warnings = await search_hf_models("model")
assert results == []
assert any("not reachable" in w for w in warnings)
# ββ Community persistence βββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _valid_entry() -> dict:
return {
"model_id": "ollama:llama3.1:8b",
"quantization": "q4_k",
"hardware": {"cpu_model": "Intel Core i9", "ram_gb": 32},
"benchmark_version": "auralynq-modelfit-0.1",
"task": "rag",
"date": "2026-06-23",
"source": "auralynq-benchmark-runner",
"tok_per_sec": 28.4,
}
def test_save_and_load_community_result(tmp_path, monkeypatch):
monkeypatch.setattr(community_mod, "_COMMUNITY_DIR", tmp_path)
ok, errors = save_community_result(_valid_entry())
assert ok and errors == []
saved = list(tmp_path.glob("*.json"))
assert len(saved) == 1
data = json.loads(saved[0].read_text())
assert data["verified_status"] == "self_reported"
assert "submitted_at" in data
results = load_community_results()
assert len(results) == 1
assert results[0].model_id == "ollama:llama3.1:8b"
def test_save_community_result_invalid_rejected(tmp_path, monkeypatch):
monkeypatch.setattr(community_mod, "_COMMUNITY_DIR", tmp_path)
entry = _valid_entry()
del entry["task"]
ok, errors = save_community_result(entry)
assert not ok and errors
assert list(tmp_path.glob("*.json")) == []
def test_load_community_results_verified_only_filters(tmp_path, monkeypatch):
monkeypatch.setattr(community_mod, "_COMMUNITY_DIR", tmp_path)
save_community_result(_valid_entry())
verified = _valid_entry()
verified["date"] = "2026-06-24"
verified["verified_status"] = "verified_local"
save_community_result(verified)
all_results = load_community_results()
assert len(all_results) == 2
only_verified = load_community_results(verified_only=True)
assert len(only_verified) == 1
assert only_verified[0].verified_status == "verified_local"
def test_load_community_results_skips_malformed(tmp_path, monkeypatch):
monkeypatch.setattr(community_mod, "_COMMUNITY_DIR", tmp_path)
(tmp_path / "broken.json").write_text("{not json")
(tmp_path / "incomplete.json").write_text(json.dumps({"model_id": "x"}))
assert load_community_results() == []
# ββ Model registry ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def test_discover_local_gguf(tmp_path):
gguf = tmp_path / "tiny-model.gguf"
gguf.write_bytes(b"\0" * 1024)
found = _discover_local_gguf(search_dirs=[str(tmp_path), str(tmp_path / "missing")])
assert len(found) == 1
assert found[0].source == "local"
assert found[0].local_path == str(gguf)
@pytest.mark.asyncio
async def test_registry_refresh_from_ollama(monkeypatch):
fake_model = _tag_to_metadata("fake-live-model:3b")
async def fake_list():
return [fake_model], ["Ollama warning"]
monkeypatch.setattr(registry_mod, "list_installed_models", fake_list)
registry = ModelRegistry()
warnings = await registry.refresh_from_ollama()
assert warnings == ["Ollama warning"]
live = registry.get("ollama:fake-live-model:3b")
assert live is not None
assert live.notes[0] == "Locally installed in Ollama."
def test_registry_search_filters():
registry = ModelRegistry()
small = registry.search(max_params_b=4.0)
assert all(m.parameter_count_b <= 4.0 for m in small if m.parameter_count_b)
big = registry.search(min_params_b=30.0)
assert all(m.parameter_count_b >= 30.0 for m in big if m.parameter_count_b)
open_lic = registry.search(open_license=True)
assert all(m.license.lower().replace(" ", "-") in {"apache-2.0", "mit"} for m in open_lic)
tools = registry.search(tool_calling=True)
assert all(m.tool_calling for m in tools)
with_vision = registry.search(vision=True)
assert all(m.vision for m in with_vision)
adapters = registry.search(supports_adapters=True)
assert all(m.supports_adapters for m in adapters)
rerankers = registry.search(reranker_only=True)
assert all(m.reranker for m in rerankers)
# ββ Benchmark runner ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class _FakeStreamResponse:
def __init__(self, status_code: int, lines: list[str]):
self.status_code = status_code
self._lines = lines
async def aiter_lines(self):
for line in self._lines:
yield line
class _FakeStreamContext:
def __init__(self, resp: _FakeStreamResponse):
self._resp = resp
async def __aenter__(self):
return self._resp
async def __aexit__(self, *exc):
return False
class _FakeStreamingClient:
resp: _FakeStreamResponse | None = None
def __init__(self, *args, **kwargs):
pass
async def __aenter__(self):
return self
async def __aexit__(self, *exc):
return False
def stream(self, method, url, json=None):
assert self.resp is not None
return _FakeStreamContext(self.resp)
_OK_STREAM_LINES = [
"", # skipped
"not-json", # skipped
json.dumps({"response": "Hello"}),
json.dumps({"response": " world"}),
json.dumps({"eval_count": 42, "done": True}),
]
@pytest.mark.asyncio
async def test_run_benchmark_completes_and_persists(tmp_path, monkeypatch):
_FakeStreamingClient.resp = _FakeStreamResponse(200, _OK_STREAM_LINES)
monkeypatch.setattr("httpx.AsyncClient", _FakeStreamingClient)
# 5 examples > 3 latency prompts exercises the prompt-repeat branch.
result = await run_benchmark(
"ollama:fake:1b", task="latency", num_examples=5, output_dir=str(tmp_path)
)
assert result.status == "completed"
assert result.completed_examples == 5
assert result.p50_latency_ms is not None
assert result.p95_latency_ms is not None
assert result.avg_tok_per_sec is not None
assert result.time_to_first_token_ms is not None
assert result.rag_metrics["is_measured"] is False
assert (tmp_path / f"{result.run_id}.json").exists()
@pytest.mark.asyncio
async def test_run_benchmark_model_not_installed(tmp_path, monkeypatch):
_FakeStreamingClient.resp = _FakeStreamResponse(404, [])
monkeypatch.setattr("httpx.AsyncClient", _FakeStreamingClient)
result = await run_benchmark("ollama:missing:1b", num_examples=1, output_dir=str(tmp_path))
assert result.status == "failed"
assert "not found in local Ollama" in (result.error or "")
@pytest.mark.asyncio
async def test_run_benchmark_connection_failure(tmp_path, monkeypatch):
monkeypatch.setattr("httpx.AsyncClient", _RaisingAsyncClient)
result = await run_benchmark("ollama:fake:1b", num_examples=1, output_dir=str(tmp_path))
assert result.status == "failed"
assert "Ollama connection failed" in (result.error or "")
@pytest.mark.asyncio
async def test_run_benchmark_example_errors_recorded(tmp_path, monkeypatch):
class _StreamRaises(_FakeStreamingClient):
def stream(self, method, url, json=None):
raise RuntimeError("stream blew up")
monkeypatch.setattr("httpx.AsyncClient", _StreamRaises)
result = await run_benchmark("ollama:fake:1b", num_examples=2, output_dir=str(tmp_path))
assert result.status == "completed"
assert any("Example error" in w for w in result.warnings)
@pytest.mark.asyncio
async def test_run_benchmark_rag_quality_failure_is_soft(tmp_path, monkeypatch):
_FakeStreamingClient.resp = _FakeStreamResponse(200, _OK_STREAM_LINES)
monkeypatch.setattr("httpx.AsyncClient", _FakeStreamingClient)
async def boom(**kwargs):
raise RuntimeError("no corpus")
monkeypatch.setattr("auralynq.modelfit.rag_bench.run_rag_benchmark", boom)
result = await run_benchmark(
"ollama:fake:1b", task="rag", num_examples=1, output_dir=str(tmp_path)
)
assert result.status == "completed"
assert result.rag_metrics["is_measured"] is False
assert any("RAG quality benchmark failed" in w for w in result.warnings)
def test_get_run_from_memory_and_disk(tmp_path, monkeypatch):
monkeypatch.setattr(bench_mod, "_RUNS_DIR", tmp_path)
monkeypatch.setattr(bench_mod, "_active_runs", {})
in_mem = BenchmarkResult(
run_id="mem1", model_id="m", quantization="q4_k", task="latency", status="completed"
)
bench_mod._active_runs["mem1"] = in_mem
assert get_run("mem1") is in_mem
on_disk = BenchmarkResult(
run_id="disk1", model_id="m", quantization="q4_k", task="latency", status="completed"
)
(tmp_path / "disk1.json").write_text(json.dumps(on_disk.to_dict()))
loaded = get_run("disk1")
assert loaded is not None and loaded.run_id == "disk1"
(tmp_path / "bad1.json").write_text("{corrupt")
assert get_run("bad1") is None
assert get_run("unknown") is None
def test_list_runs_merges_memory_and_disk(tmp_path, monkeypatch):
monkeypatch.setattr(bench_mod, "_RUNS_DIR", tmp_path)
monkeypatch.setattr(bench_mod, "_active_runs", {})
mem = BenchmarkResult(
run_id="mem2", model_id="m", quantization="q4_k", task="latency", status="running"
)
bench_mod._active_runs["mem2"] = mem
disk = BenchmarkResult(
run_id="disk2", model_id="m", quantization="q4_k", task="latency", status="completed"
)
(tmp_path / "disk2.json").write_text(json.dumps(disk.to_dict()))
runs = list_runs()
ids = {r["run_id"] for r in runs}
assert {"mem2", "disk2"} <= ids
# ββ Hardware probing branches βββββββββββββββββββββββββββββββββββββββββββββββββ
def _fake_run_factory(handlers: dict[str, object]):
"""subprocess.run double keyed by executable name."""
def fake_run(cmd, *args, **kwargs):
exe = cmd[0]
outcome = handlers.get(exe, FileNotFoundError())
if isinstance(outcome, Exception):
raise outcome
return outcome
return fake_run
def test_detect_nvidia_gpus_parses_csv(monkeypatch):
smi = SimpleNamespace(returncode=0, stdout="NVIDIA RTX 3090, 24576\nNVIDIA A100, 40960\n")
monkeypatch.setattr(hw_mod.subprocess, "run", _fake_run_factory({"nvidia-smi": smi}))
gpus = hw_mod._detect_nvidia_gpus()
assert len(gpus) == 2
assert gpus[0].vendor == "nvidia" and gpus[0].vram_gb == 24.0
assert gpus[1].device_index == 1
def test_detect_gpus_nvidia_without_nvcc(monkeypatch):
smi = SimpleNamespace(returncode=0, stdout="NVIDIA RTX 3090, 24576\n")
monkeypatch.setattr(hw_mod.subprocess, "run", _fake_run_factory({"nvidia-smi": smi}))
gpus, cuda, cuda_ver, metal, rocm = hw_mod._detect_gpus()
assert cuda is True and metal is False and rocm is False
assert cuda_ver == "detected (version unknown)"
assert gpus[0].backend == "cuda"
def test_detect_gpus_nvcc_version_parsed(monkeypatch):
smi = SimpleNamespace(returncode=0, stdout="NVIDIA RTX 3090, 24576\n")
nvcc = SimpleNamespace(returncode=0, stdout="Cuda compilation tools, release 12.4, V12.4.99\n")
monkeypatch.setattr(
hw_mod.subprocess, "run", _fake_run_factory({"nvidia-smi": smi, "nvcc": nvcc})
)
_, cuda, cuda_ver, _, _ = hw_mod._detect_gpus()
assert cuda is True
assert "release 12.4" in (cuda_ver or "")
def test_detect_amd_gpus_parses_rocm_csv(monkeypatch):
rocm = SimpleNamespace(
returncode=0, stdout="device,VRAM Total\ncard0,17163091968\ncard1,not-a-number\n"
)
monkeypatch.setattr(hw_mod.subprocess, "run", _fake_run_factory({"rocm-smi": rocm}))
gpus = hw_mod._detect_amd_gpus()
assert len(gpus) == 1
assert gpus[0].vendor == "amd" and gpus[0].backend == "rocm"
assert gpus[0].vram_gb == 16.0
def test_detect_apple_silicon(monkeypatch):
monkeypatch.setattr(hw_mod.platform, "system", lambda: "Darwin")
monkeypatch.setattr(hw_mod, "_detect_ram_gb", lambda: 32.0)
profiler = SimpleNamespace(returncode=0, stdout="Chipset Model: Apple M3\n")
monkeypatch.setattr(hw_mod.subprocess, "run", _fake_run_factory({"system_profiler": profiler}))
gpus = hw_mod._detect_apple_silicon()
assert len(gpus) == 1
assert gpus[0].vendor == "apple" and gpus[0].backend == "metal"
assert gpus[0].vram_gb == 24.0 # 75% of unified memory
def test_detect_apple_silicon_skipped_off_darwin(monkeypatch):
monkeypatch.setattr(hw_mod.platform, "system", lambda: "Linux")
assert hw_mod._detect_apple_silicon() == []
def test_detect_ollama_present(monkeypatch):
"""Detection is an HTTP probe β the CLI is absent inside the API container."""
monkeypatch.setattr(
ollama_client_mod.httpx,
"get",
lambda *a, **k: _FakeResponse(200, {"version": "0.5.1"}),
)
available, ver = hw_mod._detect_ollama()
assert available is True
assert "0.5.1" in (ver or "")
def test_detect_ollama_absent(monkeypatch):
def _refuse(*a, **k):
raise ConnectionError("connection refused")
monkeypatch.setattr(ollama_client_mod.httpx, "get", _refuse)
assert hw_mod._detect_ollama() == (False, None)
def test_ollama_base_url_honours_llm_settings(monkeypatch):
"""Regression: ModelFit must never hardcode localhost β the daemon is on the host."""
from auralynq.config.settings import reload_settings
monkeypatch.setenv("AURALYNQ_LLM__BASE_URL", "http://host.containers.internal:11434/")
monkeypatch.setenv("AURALYNQ_MODELFIT__OLLAMA_URL", "")
reload_settings()
assert ollama_client_mod.ollama_base_url() == "http://host.containers.internal:11434"
# An explicit ModelFit override wins over the shared inference endpoint.
monkeypatch.setenv("AURALYNQ_MODELFIT__OLLAMA_URL", "http://models.local:11434")
reload_settings()
assert ollama_client_mod.ollama_base_url() == "http://models.local:11434"
def test_modelfit_never_shells_out_to_ollama():
"""Guard against the `[Errno 2] No such file or directory` pull regression.
The API image has no `ollama` binary and `localhost` is the container itself,
so ModelFit must reach the daemon over HTTP at a configured base URL.
"""
import ast
import pathlib
offenders: list[str] = []
for path in sorted(pathlib.Path("auralynq/modelfit").glob("*.py")):
tree = ast.parse(path.read_text())
for node in ast.walk(tree):
if isinstance(node, ast.Call) and isinstance(node.func, ast.Attribute):
first = node.args[0] if node.args else None
is_ollama_arg = isinstance(first, ast.Constant) and first.value == "ollama"
if node.func.attr == "which" and is_ollama_arg:
offenders.append(f"{path}:{node.lineno} probes for the ollama CLI binary")
if node.func.attr in ("create_subprocess_exec", "run") and is_ollama_arg:
offenders.append(f"{path}:{node.lineno} shells out to the ollama CLI")
# The URL-resolving module owns the remediation hint; nobody else may
# embed an endpoint.
if (
path.name != "ollama_client.py"
and isinstance(node, ast.Constant)
and isinstance(node.value, str)
and "localhost:11434" in node.value
):
offenders.append(f"{path}:{node.lineno} hardcodes localhost:11434")
assert not offenders, offenders
# ββ HTTP router βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@pytest.fixture()
def api():
app = FastAPI()
app.include_router(modelfit_router)
return TestClient(app)
def _any_model_id() -> str:
return get_registry().list_all()[0].model_id
def test_api_hardware(api):
r = api.get("/api/modelfit/hardware")
assert r.status_code == 200
body = r.json()
assert "best_backend" in body and "ram_gb" in body
def test_api_list_models_with_filters(api):
r = api.get("/api/modelfit/models", params={"task": "rag", "limit": 5})
assert r.status_code == 200
body = r.json()
assert body["total"] <= 5
assert all("model_id" in m for m in body["models"])
def test_api_search_models(api, monkeypatch):
async def fake_list():
return [], ["ollama offline"]
monkeypatch.setattr(registry_mod, "list_installed_models", fake_list)
r = api.get("/api/modelfit/models/search", params={"q": "llama", "refresh_ollama": "true"})
assert r.status_code == 200
assert r.json()["warnings"] == ["ollama offline"]
def test_api_installed_models(api, monkeypatch):
async def fake_list():
return [_tag_to_metadata("fake-installed:1b")], []
monkeypatch.setattr(registry_mod, "list_installed_models", fake_list)
r = api.get("/api/modelfit/models/installed")
assert r.status_code == 200
ids = [m["model_id"] for m in r.json()["models"]]
assert "ollama:fake-installed:1b" in ids
def test_api_get_model_found_and_missing(api):
model_id = _any_model_id()
ok = api.get(f"/api/modelfit/models/{model_id}")
assert ok.status_code == 200
assert ok.json()["model_id"] == model_id
missing = api.get("/api/modelfit/models/does:not:exist")
assert missing.status_code == 404
def test_api_estimate(api):
r = api.post(
"/api/modelfit/estimate",
json={"model_id": "x", "params_b": 8.0, "quantization": "q4_k"},
)
assert r.status_code == 200
body = r.json()
assert body["estimated_vram_gb"] > 0
def test_api_recommend_quantization(api):
r = api.post("/api/modelfit/recommend-quantization", params={"params_b": 8.0})
assert r.status_code == 200
body = r.json()
assert body["is_estimate"] is True
assert body["recommended_quantization"]
def test_api_score_found_and_missing(api):
ok = api.post("/api/modelfit/score", json={"model_id": _any_model_id()})
assert ok.status_code == 200
assert 0 <= ok.json()["overall_score"] <= 100
missing = api.post("/api/modelfit/score", json={"model_id": "does:not:exist"})
assert missing.status_code == 404
def test_api_recommendations(api):
r = api.get("/api/modelfit/recommendations", params={"task": "rag", "limit": 3})
assert r.status_code == 200
body = r.json()
assert len(body["recommendations"]) <= 3
assert "hardware_summary" in body
def test_api_benchmark_preview(api):
r = api.post(
"/api/modelfit/benchmark/preview",
json={"model_id": "ollama:fake:1b", "task": "latency", "num_examples": 2},
)
assert r.status_code == 200
assert "dry-run" in r.json()["note"]
def test_api_benchmark_run_requires_confirmation(api):
r = api.post(
"/api/modelfit/benchmark/run",
json={"model_id": "ollama:fake:1b", "confirmed": False},
)
assert r.status_code == 400
def test_api_benchmark_run_confirmed(api, monkeypatch):
fake_result = BenchmarkResult(
run_id="r1",
model_id="ollama:fake:1b",
quantization="q4_k",
task="latency",
status="completed",
)
async def fake_run(**kwargs):
return fake_result
monkeypatch.setattr("auralynq.modelfit.router.run_benchmark", fake_run)
r = api.post(
"/api/modelfit/benchmark/run",
json={"model_id": "ollama:fake:1b", "confirmed": True},
)
assert r.status_code == 200
assert r.json()["run_id"] == "r1"
def test_api_benchmark_runs_and_get(api, tmp_path, monkeypatch):
monkeypatch.setattr(bench_mod, "_RUNS_DIR", tmp_path)
monkeypatch.setattr(bench_mod, "_active_runs", {})
result = BenchmarkResult(
run_id="api1", model_id="m", quantization="q4_k", task="latency", status="completed"
)
bench_mod._active_runs["api1"] = result
runs = api.get("/api/modelfit/benchmark/runs")
assert runs.status_code == 200
assert runs.json()["total"] >= 1
one = api.get("/api/modelfit/benchmark/api1")
assert one.status_code == 200
missing = api.get("/api/modelfit/benchmark/nope")
assert missing.status_code == 404
def test_api_community_results_and_validate(api, tmp_path, monkeypatch):
monkeypatch.setattr(community_mod, "_COMMUNITY_DIR", tmp_path)
save_community_result(_valid_entry())
r = api.get("/api/modelfit/community/results", params={"model_id": "ollama:"})
assert r.status_code == 200
body = r.json()
assert body["total"] == 1
assert "disclaimer" in body
valid = api.post("/api/modelfit/community/validate", json=_valid_entry())
assert valid.status_code == 200
assert valid.json()["valid"] is True
invalid = api.post("/api/modelfit/community/validate", json={"model_id": "x"})
assert invalid.json()["valid"] is False
def test_api_discover(api, monkeypatch):
ollama_model = _tag_to_metadata("llama3.1:8b", size_bytes=5 * 1024**3)
hf_model = ModelMetadata(
model_id="hf:org/gguf-model",
source="huggingface",
display_name="org/gguf-model",
family="llama",
parameter_count_b=8.0,
hf_repo="org/gguf-model",
tasks=["chat", "rag"],
)
embed_model = _tag_to_metadata("nomic-embed-text:latest")
async def fake_ollama(vram_gb, ram_gb):
return [ollama_model, embed_model]
async def fake_hf(vram_gb):
return [hf_model]
monkeypatch.setattr(fetcher_mod, "fetch_ollama_catalog", fake_ollama)
monkeypatch.setattr(fetcher_mod, "fetch_hf_gguf_catalog", fake_hf)
monkeypatch.setattr(fetcher_mod, "invalidate_cache", lambda: None)
r = api.post(
"/api/modelfit/discover",
json={"task": "rag", "include_hf": True, "refresh": True, "limit": 10},
)
assert r.status_code == 200
body = r.json()
recs = body["recommendations"]
# Embedding model filtered out for a non-embedding task.
ids = {m["model_meta"]["model_id"] for m in recs}
assert "ollama:nomic-embed-text:latest" not in ids
pulls = {m["model_meta"]["model_id"]: m["pull_command"] for m in recs}
assert pulls["ollama:llama3.1:8b"] == "ollama pull llama3.1:8b"
assert "huggingface-cli download org/gguf-model" in pulls["hf:org/gguf-model"]
def test_api_discover_catalog_error_is_soft(api, monkeypatch):
async def fake_ollama(vram_gb, ram_gb):
raise RuntimeError("registry down")
monkeypatch.setattr(fetcher_mod, "fetch_ollama_catalog", fake_ollama)
r = api.post("/api/modelfit/discover", json={"include_hf": False})
assert r.status_code == 200
assert r.json()["total_candidates"] == 0
def test_api_pull_requires_confirmation(api):
r = api.post("/api/modelfit/pull", json={"model_id": "ollama:x", "confirmed": False})
assert r.status_code == 400
def test_api_pull_bad_prefix(api):
r = api.post("/api/modelfit/pull", json={"model_id": "weird:x", "confirmed": True})
assert r.status_code == 400
assert "Unrecognised" in r.json()["detail"]
def _fake_pull_stream(frames: list[dict]):
async def stream(tag):
for frame in frames:
yield frame
return stream
def _fake_version(version: str | None):
async def get_version(*a, **k):
return version
return get_version
def test_api_pull_ollama_starts_job(api, monkeypatch):
monkeypatch.setattr(ollama_client_mod, "get_version", _fake_version("0.5.1"))
monkeypatch.setattr(
pull_jobs_mod,
"stream_pull",
_fake_pull_stream(
[
{"status": "pulling manifest"},
{"status": "pulling sha256:abc", "total": 100, "completed": 50},
{"status": "success"},
]
),
)
r = api.post("/api/modelfit/pull", json={"model_id": "ollama:llama3.2:1b", "confirmed": True})
assert r.status_code == 200
body = r.json()
assert body["status"] == "pulling"
assert body["job_id"]
assert body["stream_url"] == f"/api/modelfit/pull/{body['job_id']}/stream"
# The job completes in the background and is readable afterwards.
final = api.get(f"/api/modelfit/pull/{body['job_id']}").json()
assert final["phase"] in ("queued", "manifest", "downloading", "success")
def test_api_pull_ollama_unreachable_is_503(api, monkeypatch):
monkeypatch.setattr(ollama_client_mod, "get_version", _fake_version(None))
r = api.post("/api/modelfit/pull", json={"model_id": "ollama:llama3.2:1b", "confirmed": True})
assert r.status_code == 503
assert "not reachable" in r.text
def test_api_pull_job_unknown_id_is_404(api):
assert api.get("/api/modelfit/pull/nosuchjob").status_code == 404
@pytest.mark.parametrize(
("raw", "status"),
[
("pull model manifest: file does not exist", 404),
("write /root/.ollama: no space left on device", 507),
("unauthorized: access denied", 403),
("connection reset by peer", 502),
("something unexpected exploded", 500),
],
)
def test_pull_error_classification(raw, status):
got, message = ollama_client_mod.classify_pull_error("qwen2.5:14b", raw)
assert got == status
assert "qwen2.5:14b" in message
def test_api_pull_hf_validations(api):
no_slash = api.post("/api/modelfit/pull", json={"model_id": "hf:justname", "confirmed": True})
assert no_slash.status_code == 400
not_gguf = api.post(
"/api/modelfit/pull", json={"model_id": "hf:org/repo/file.bin", "confirmed": True}
)
assert not_gguf.status_code == 400
def test_api_pull_hf_download(api, monkeypatch):
def fake_pull(repo_id, filename, token):
return True, f"/models/{filename}"
monkeypatch.setattr(fetcher_mod, "pull_hf_gguf", fake_pull)
r = api.post(
"/api/modelfit/pull",
json={"model_id": "hf:org/repo/model.gguf", "confirmed": True},
)
assert r.status_code == 200
body = r.json()
assert body["status"] == "downloaded"
assert body["local_path"] == "/models/model.gguf"
# ββ CLI βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
cli_runner = CliRunner()
def test_cli_hardware():
result = cli_runner.invoke(cli_app, ["hardware"])
assert result.exit_code == 0
assert "Hardware Profile" in result.stdout
def test_cli_estimate():
result = cli_runner.invoke(cli_app, ["estimate", "--model", "ollama:fake:8b", "--params", "8"])
assert result.exit_code == 0
assert "Resource Estimate" in result.stdout
def test_cli_score_known_model():
result = cli_runner.invoke(cli_app, ["score", "--model", _any_model_id()])
assert result.exit_code == 0
assert "ModelFit Score" in result.stdout
def test_cli_score_unknown_model_exits_nonzero():
result = cli_runner.invoke(cli_app, ["score", "--model", "does:not:exist"])
assert result.exit_code == 1
def test_cli_recommend():
result = cli_runner.invoke(cli_app, ["recommend", "--task", "rag", "--limit", "3"])
assert result.exit_code == 0
assert "Top 3 models" in result.stdout
def test_cli_benchmark_dry_run():
result = cli_runner.invoke(cli_app, ["benchmark", "--model", "fake:1b", "--dry-run"])
assert result.exit_code == 0
assert "Dry run" in result.stdout
def test_cli_benchmark_declined():
result = cli_runner.invoke(cli_app, ["benchmark", "--model", "fake:1b"], input="n\n")
assert result.exit_code == 0
assert "Cancelled" in result.stdout
def test_cli_benchmark_confirmed(monkeypatch):
fake_result = BenchmarkResult(
run_id="cli1",
model_id="ollama:fake:1b",
quantization="q4_k",
task="latency",
status="completed",
avg_tok_per_sec=25.0,
p50_latency_ms=120.0,
p95_latency_ms=300.0,
)
async def fake_run(*args, **kwargs):
return fake_result
monkeypatch.setattr(bench_mod, "run_benchmark", fake_run)
result = cli_runner.invoke(cli_app, ["benchmark", "--model", "fake:1b"], input="y\n")
assert result.exit_code == 0
assert "Benchmark completed" in result.stdout
def test_cli_benchmark_failure_exits_nonzero(monkeypatch):
fake_result = BenchmarkResult(
run_id="cli2",
model_id="ollama:fake:1b",
quantization="q4_k",
task="latency",
status="failed",
error="model missing",
)
async def fake_run(*args, **kwargs):
return fake_result
monkeypatch.setattr(bench_mod, "run_benchmark", fake_run)
result = cli_runner.invoke(cli_app, ["benchmark", "--model", "fake:1b"], input="y\n")
assert result.exit_code == 1
assert "Benchmark failed" in result.stdout
|