GitHub Actions runners don't have gh CLI pre-installed, so the doctor check returns 'warn' instead of 'ok'. Allow both in the test assertion.
37 lines
1.3 KiB
Python
37 lines
1.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
"""Tests for doctor module."""
|
|
|
|
import pytest
|
|
from agent_reach.config import Config
|
|
from agent_reach.doctor import check_all, format_report
|
|
|
|
|
|
@pytest.fixture
|
|
def tmp_config(tmp_path):
|
|
return Config(config_path=tmp_path / "config.yaml")
|
|
|
|
|
|
class TestDoctor:
|
|
def test_zero_config_channels_ok(self, tmp_config):
|
|
results = check_all(tmp_config)
|
|
assert results["web"]["status"] == "ok"
|
|
assert results["github"]["status"] in ("ok", "warn") # warn if gh CLI not installed
|
|
assert results["bilibili"]["status"] in ("ok", "warn") # warn on servers
|
|
assert results["rss"]["status"] == "ok"
|
|
|
|
def test_exa_off_without_key(self, tmp_config):
|
|
results = check_all(tmp_config)
|
|
assert results["exa_search"]["status"] == "off"
|
|
|
|
def test_exa_key_does_not_force_enabled(self, tmp_config):
|
|
# Exa availability is determined by mcporter runtime/config state.
|
|
tmp_config.set("exa_api_key", "test-key")
|
|
results = check_all(tmp_config)
|
|
assert results["exa_search"]["status"] in ("off", "ok")
|
|
|
|
def test_format_report(self, tmp_config):
|
|
results = check_all(tmp_config)
|
|
report = format_report(results)
|
|
assert "Agent Reach" in report
|
|
assert "✅" in report
|
|
assert "渠道可用" in report
|