466e63dc19
Wrapper async tipizzati sui sei servizi MCP HTTP che Cerbero Bite consuma in autonomia. 277 test pass, copertura clients 93%, mypy strict pulito, ruff clean. Base layer: - clients/_base.py: HttpToolClient con httpx + tenacity (retry esponenziale 3x, timeout 8s, mapping HTTP→eccezioni tipizzate). - clients/_exceptions.py: McpAuthError, McpServerError, McpToolError, McpDataAnomalyError, McpNotFoundError, McpTimeoutError. - config/mcp_endpoints.py: risoluzione URL via Docker DNS (mcp-deribit:9011, ...) con override per servizio via env var; caricamento bearer token da secrets/core.token o CERBERO_BITE_CORE_TOKEN_FILE. Wrapper: - clients/macro.py: next_high_severity_within() per filtro entry §2.5. - clients/sentiment.py: funding_cross_median_annualized() con annualizzazione per period nativo per exchange (Binance/Bybit/OKX 1095, Hyperliquid 8760). - clients/hyperliquid.py: funding_rate_annualized() per filtro §2.6. - clients/portfolio.py: total_equity_eur(), asset_pct_of_portfolio() per sizing engine + filtro §2.7. - clients/telegram.py: notify-only (no callback queue, no conferme — Bite auto-execute). - clients/deribit.py: environment_info, index_price_eth, latest_dvol, options_chain, get_tickers, orderbook_depth_top3, get_account_summary, get_positions, place_combo_order (combo atomico), cancel_order. CLI: - cerbero-bite ping: health-check parallelo di tutti gli MCP con tabella rich (OK/FAIL/SKIPPED). Docker: - Dockerfile multi-stage Python 3.13 + uv, user non-root. - docker-compose.yml con rete external "cerbero-suite", secret core_token montato a /run/secrets/core_token, env per ogni MCP. - secrets/README.md documenta il setup del token. Documentazione di intervento: - docs/12-mcp-deribit-changes.md: spec delle modifiche apportate al server mcp-deribit (place_combo_order + override testnet via DERIBIT_TESTNET). Dipendenze: - aggiunto pytest-httpx per i test HTTP. - rimosso mcp>=1.0 (non usiamo l'SDK MCP, parliamo via HTTP REST). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
140 lines
4.2 KiB
Python
140 lines
4.2 KiB
Python
"""Tests for MacroClient."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from datetime import UTC, datetime, timedelta
|
|
|
|
import pytest
|
|
from pytest_httpx import HTTPXMock
|
|
|
|
from cerbero_bite.clients._base import HttpToolClient
|
|
from cerbero_bite.clients.macro import MacroClient
|
|
|
|
|
|
def _client() -> MacroClient:
|
|
http = HttpToolClient(
|
|
service="macro",
|
|
base_url="http://mcp-macro:9013",
|
|
token="t",
|
|
retry_max=1,
|
|
)
|
|
return MacroClient(http)
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_get_calendar_parses_events(httpx_mock: HTTPXMock) -> None:
|
|
httpx_mock.add_response(
|
|
url="http://mcp-macro:9013/tools/get_macro_calendar",
|
|
json={
|
|
"events": [
|
|
{
|
|
"name": "FOMC Meeting",
|
|
"country_code": "US",
|
|
"importance": "high",
|
|
"datetime_utc": "2026-05-05T18:00:00+00:00",
|
|
},
|
|
{
|
|
"event": "ECB rate decision",
|
|
"country_code": "EU",
|
|
"importance": "high",
|
|
"datetime_utc": "2026-05-08T12:00:00Z",
|
|
},
|
|
]
|
|
},
|
|
)
|
|
events = await _client().get_calendar(days=18)
|
|
assert [e.name for e in events] == ["FOMC Meeting", "ECB rate decision"]
|
|
assert events[0].country_code == "US"
|
|
assert events[0].importance == "high"
|
|
assert events[0].datetime_utc == datetime(2026, 5, 5, 18, 0, tzinfo=UTC)
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_get_calendar_skips_non_dict_entries(httpx_mock: HTTPXMock) -> None:
|
|
httpx_mock.add_response(json={"events": ["not-a-dict", None]})
|
|
assert await _client().get_calendar(days=18) == []
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_next_high_severity_returns_min_days(httpx_mock: HTTPXMock) -> None:
|
|
now = datetime(2026, 4, 27, 14, 0, tzinfo=UTC)
|
|
httpx_mock.add_response(
|
|
json={
|
|
"events": [
|
|
{
|
|
"name": "FOMC",
|
|
"country_code": "US",
|
|
"importance": "high",
|
|
"datetime_utc": (now + timedelta(days=10, hours=4)).isoformat(),
|
|
},
|
|
{
|
|
"name": "ECB",
|
|
"country_code": "EU",
|
|
"importance": "high",
|
|
"datetime_utc": (now + timedelta(days=3, hours=1)).isoformat(),
|
|
},
|
|
]
|
|
}
|
|
)
|
|
days = await _client().next_high_severity_within(
|
|
days=18, countries=["US", "EU"], now=now
|
|
)
|
|
assert days == 3
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_next_high_severity_ignores_past_events(httpx_mock: HTTPXMock) -> None:
|
|
now = datetime(2026, 4, 27, 14, 0, tzinfo=UTC)
|
|
httpx_mock.add_response(
|
|
json={
|
|
"events": [
|
|
{
|
|
"name": "stale",
|
|
"country_code": "US",
|
|
"importance": "high",
|
|
"datetime_utc": (now - timedelta(days=2)).isoformat(),
|
|
},
|
|
]
|
|
}
|
|
)
|
|
assert (
|
|
await _client().next_high_severity_within(days=18, countries=None, now=now)
|
|
is None
|
|
)
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_next_high_severity_no_events_returns_none(
|
|
httpx_mock: HTTPXMock,
|
|
) -> None:
|
|
httpx_mock.add_response(json={"events": []})
|
|
out = await _client().next_high_severity_within(
|
|
days=18, countries=["US"], now=datetime(2026, 4, 27, 14, 0, tzinfo=UTC)
|
|
)
|
|
assert out is None
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_get_calendar_passes_filters(httpx_mock: HTTPXMock) -> None:
|
|
httpx_mock.add_response(json={"events": []})
|
|
await _client().get_calendar(
|
|
days=18, country_filter=["US", "EU"], importance_min="high"
|
|
)
|
|
request = httpx_mock.get_request()
|
|
assert request is not None
|
|
body = request.read().decode()
|
|
assert '"days":18' in body
|
|
assert '"country_filter":["US","EU"]' in body
|
|
assert '"importance_min":"high"' in body
|
|
|
|
|
|
def test_macro_client_rejects_wrong_service() -> None:
|
|
bad = HttpToolClient(
|
|
service="deribit",
|
|
base_url="http://x:1",
|
|
token="t",
|
|
retry_max=1,
|
|
)
|
|
with pytest.raises(ValueError, match="requires service 'macro'"):
|
|
MacroClient(bad)
|