ce158a92dd
Adegua Cerbero Bite alla nuova versione 2.0.0 del server MCP unificato (testnet/mainnet routing per token, header X-Bot-Tag obbligatorio) e introduce due interruttori operativi indipendenti per separare la raccolta dati dall'esecuzione di strategia. Auth e collegamento MCP - Token bearer letto dalla nuova variabile CERBERO_BITE_MCP_TOKEN; il valore sceglie l'ambiente upstream (testnet vs mainnet) sul server. Rimosso il caricamento da file (`secrets/core.token`, CERBERO_BITE_CORE_TOKEN_FILE, Docker secret /run/secrets/core_token). - Aggiunto header X-Bot-Tag (default `BOT__CERBERO_BITE`, override via CERBERO_BITE_MCP_BOT_TAG) su ogni call MCP, con validazione lato client (non vuoto, ≤ 64 caratteri). - Cartella `secrets/` rimossa, `.gitignore` ripulito, Dockerfile e docker-compose.yml aggiornati con env passthrough e fail-fast quando manca il token. Modalità operativa (RuntimeFlags) - Nuovo modulo `config/runtime_flags.py` con `RuntimeFlags( data_analysis_enabled, strategy_enabled)` e loader che parserizza CERBERO_BITE_ENABLE_DATA_ANALYSIS e CERBERO_BITE_ENABLE_STRATEGY (true/false/yes/no/on/off/enabled/disabled, case-insensitive). - L'orchestratore espone i flag, audita e logga la modalità al boot (`engine started: env=… data_analysis=… strategy=…`), e in `install_scheduler` esclude i job `entry`/`monitor` quando strategy è off e il job `market_snapshot` quando data analysis è off. I job di infrastruttura (health, backup, manual_actions) restano sempre attivi. - Default profile = "solo analisi dati" (data_analysis=true, strategy=false), pensato per la finestra di soak post-deploy. GUI saldi - `gui/live_data.py::_fetch_deribit_currency` riconosce il campo soft `error` nel payload V2 (HTTP 200 con `error` valorizzato dal server quando l'auth Deribit fallisce) e lo propaga come `BalanceRow.error`, evitando di mostrare un fuorviante equity = 0,00. CLI - Sostituita l'opzione `--token-file` con `--token` (stringa) sui comandi start/dry-run/ping; il default proviene dall'env. Le chiamate al builder dell'orchestrator passano anche `bot_tag` e `flags`. Documentazione - `docs/04-mcp-integration.md`: descrizione del nuovo flusso di auth V2 (token = ambiente, X-Bot-Tag nell'audit) e router unificati. - `docs/06-operational-flow.md`: nuova sezione "Modalità operativa" con i tre profili canonici e tabella di gating per ogni job; aggiunto `market_snapshot` al cron summary. - `docs/10-config-spec.md`: nuova sezione "Variabili d'ambiente" tabellare con tutti gli env, comprese le bool dei flag operativi. - `docs/02-architecture.md`: layout del repo aggiornato (`secrets/` rimosso, `runtime_flags.py` aggiunto), descrizione di `config/` estesa. Test - 5 nuovi test su `_fetch_deribit_currency` (soft-error, payload pulito, eccezione, error blank, signature parity). - 7 nuovi test su `load_runtime_flags` (default, override, parsing truthy/falsy, blank fallback, valore invalido). - 4 nuovi test su `HttpToolClient` (X-Bot-Tag default e custom, blank e troppo lungo rifiutati). - 3 nuovi test integration sull'orchestratore (gating dei job in base ai flag). - Test esistenti su token/CLI ping/orchestrator aggiornati al nuovo schema. Suite intera: 404 passed, 1 skipped (sqlite3 CLI assente sull'host di sviluppo). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
171 lines
5.1 KiB
Python
171 lines
5.1 KiB
Python
"""Integration tests for the Orchestrator façade (boot + cycle wiring)."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from datetime import UTC, datetime
|
|
from decimal import Decimal
|
|
from pathlib import Path
|
|
|
|
import pytest
|
|
from pytest_httpx import HTTPXMock
|
|
|
|
from cerbero_bite.config import golden_config
|
|
from cerbero_bite.config.mcp_endpoints import load_endpoints
|
|
from cerbero_bite.config.runtime_flags import RuntimeFlags
|
|
from cerbero_bite.runtime import Orchestrator
|
|
from cerbero_bite.runtime.dependencies import build_runtime
|
|
|
|
pytestmark = pytest.mark.httpx_mock(assert_all_responses_were_requested=False)
|
|
|
|
|
|
def _now() -> datetime:
|
|
return datetime(2026, 4, 27, 14, 0, tzinfo=UTC)
|
|
|
|
|
|
def _wire_environment_info(
|
|
httpx_mock: HTTPXMock,
|
|
*,
|
|
environment: str = "testnet",
|
|
) -> None:
|
|
httpx_mock.add_response(
|
|
url="http://mcp-deribit:9011/tools/environment_info",
|
|
json={
|
|
"exchange": "deribit",
|
|
"environment": environment,
|
|
"source": "env",
|
|
"env_value": "true" if environment == "testnet" else "false",
|
|
"base_url": "https://test.deribit.com/api/v2",
|
|
"max_leverage": 3,
|
|
},
|
|
is_reusable=True,
|
|
)
|
|
|
|
|
|
def _wire_health_probes(httpx_mock: HTTPXMock) -> None:
|
|
httpx_mock.add_response(
|
|
url="http://mcp-macro:9013/tools/get_macro_calendar",
|
|
json={"events": []},
|
|
is_reusable=True,
|
|
)
|
|
httpx_mock.add_response(
|
|
url="http://mcp-sentiment:9014/tools/get_cross_exchange_funding",
|
|
json={"snapshot": {}},
|
|
is_reusable=True,
|
|
)
|
|
httpx_mock.add_response(
|
|
url="http://mcp-hyperliquid:9012/tools/get_funding_rate",
|
|
json={"asset": "ETH", "current_funding_rate": 0.0001},
|
|
is_reusable=True,
|
|
)
|
|
|
|
|
|
def _build_orch(
|
|
tmp_path: Path,
|
|
*,
|
|
expected: str = "testnet",
|
|
flags: RuntimeFlags | None = None,
|
|
) -> Orchestrator:
|
|
ctx = build_runtime(
|
|
cfg=golden_config(),
|
|
endpoints=load_endpoints(env={}),
|
|
token="t",
|
|
db_path=tmp_path / "state.sqlite",
|
|
audit_path=tmp_path / "audit.log",
|
|
retry_max=1,
|
|
clock=_now,
|
|
)
|
|
return Orchestrator(
|
|
ctx,
|
|
expected_environment=expected, # type: ignore[arg-type]
|
|
eur_to_usd=Decimal("1.075"),
|
|
flags=flags
|
|
or RuntimeFlags(data_analysis_enabled=True, strategy_enabled=True),
|
|
)
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_boot_succeeds_when_environment_matches(
|
|
tmp_path: Path, httpx_mock: HTTPXMock
|
|
) -> None:
|
|
_wire_environment_info(httpx_mock, environment="testnet")
|
|
_wire_health_probes(httpx_mock)
|
|
httpx_mock.add_response(
|
|
url="http://mcp-deribit:9011/tools/get_positions",
|
|
json=[],
|
|
is_reusable=True,
|
|
)
|
|
|
|
orch = _build_orch(tmp_path, expected="testnet")
|
|
boot = await orch.boot()
|
|
assert boot.environment == "testnet"
|
|
assert boot.health.state == "ok"
|
|
assert orch.context.kill_switch.is_armed() is False
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_boot_arms_kill_switch_on_environment_mismatch(
|
|
tmp_path: Path, httpx_mock: HTTPXMock
|
|
) -> None:
|
|
_wire_environment_info(httpx_mock, environment="mainnet")
|
|
_wire_health_probes(httpx_mock)
|
|
httpx_mock.add_response(
|
|
url="http://mcp-deribit:9011/tools/get_positions",
|
|
json=[],
|
|
is_reusable=True,
|
|
)
|
|
orch = _build_orch(tmp_path, expected="testnet")
|
|
await orch.boot()
|
|
assert orch.context.kill_switch.is_armed() is True
|
|
|
|
|
|
def test_install_scheduler_registers_canonical_jobs(tmp_path: Path) -> None:
|
|
orch = _build_orch(tmp_path)
|
|
sched = orch.install_scheduler()
|
|
job_ids = {j.id for j in sched.get_jobs()}
|
|
assert job_ids == {
|
|
"entry",
|
|
"monitor",
|
|
"health",
|
|
"backup",
|
|
"manual_actions",
|
|
"market_snapshot",
|
|
}
|
|
|
|
|
|
def test_install_scheduler_skips_strategy_jobs_when_disabled(tmp_path: Path) -> None:
|
|
orch = _build_orch(
|
|
tmp_path,
|
|
flags=RuntimeFlags(data_analysis_enabled=True, strategy_enabled=False),
|
|
)
|
|
sched = orch.install_scheduler()
|
|
job_ids = {j.id for j in sched.get_jobs()}
|
|
assert "entry" not in job_ids
|
|
assert "monitor" not in job_ids
|
|
# data analysis stays on, plus the always-on infra jobs.
|
|
assert {"health", "backup", "manual_actions", "market_snapshot"}.issubset(job_ids)
|
|
|
|
|
|
def test_install_scheduler_skips_market_snapshot_when_data_analysis_off(
|
|
tmp_path: Path,
|
|
) -> None:
|
|
orch = _build_orch(
|
|
tmp_path,
|
|
flags=RuntimeFlags(data_analysis_enabled=False, strategy_enabled=True),
|
|
)
|
|
sched = orch.install_scheduler()
|
|
job_ids = {j.id for j in sched.get_jobs()}
|
|
assert "market_snapshot" not in job_ids
|
|
assert {"entry", "monitor", "health", "backup", "manual_actions"}.issubset(
|
|
job_ids
|
|
)
|
|
|
|
|
|
def test_install_scheduler_analysis_only_default(tmp_path: Path) -> None:
|
|
"""The default RuntimeFlags profile (analysis only) drops entry/monitor."""
|
|
orch = _build_orch(tmp_path, flags=RuntimeFlags())
|
|
sched = orch.install_scheduler()
|
|
job_ids = {j.id for j in sched.get_jobs()}
|
|
assert "entry" not in job_ids
|
|
assert "monitor" not in job_ids
|
|
assert "market_snapshot" in job_ids
|