mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-30 06:41:51 +00:00
* ci(tests): install ripgrep from prebuilt tarball instead of apt
apt-get update + install of ripgrep takes ~4 min on the GHA Ubuntu
runners (the apt-get update against archive.ubuntu.com is the slow
part; ripgrep itself is small). Switching to the upstream musl
binary tarball cuts the step to a few seconds.
- Pinned to ripgrep 15.1.0 with sha256 verification (same hash as
published in the releases sha256 sidecar file).
- Drops the `rg` binary into /usr/local/bin so it is on PATH for
every subsequent step without GITHUB_PATH manipulation.
- Applied to both the test and e2e jobs in tests.yml.
* fix(cli): compile syntax check to tempdir, not source __pycache__
`_validate_critical_files_syntax` runs `py_compile.compile()` on each
critical bootstrap file after a successful `git pull`. The default
`py_compile` writes the resulting `.pyc` next to the source under
`__pycache__/`, which causes two real problems:
1. Parallel test workers walking the same source tree (e.g. running
the suite under per-file process isolation) can race against each
other on the `__pycache__` write — manifests as flaky 'directory
not empty' errors during teardown.
2. In production, the post-pull syntax check leaves a `.pyc` behind
that the next interpreter run might pick up — fine when the
interpreter version matches, sketchy if it doesn't.
Fix: write the compiled output to a `tempfile.TemporaryDirectory()`
that's discarded on function exit. We only care about the compile-or-not
signal, not the artifact.
* test(runner): per-file process isolation, drop manual state reset + xdist
Replace fragile manual _reset_module_state test fixtures with robust
per-file subprocess isolation. Each test file runs in a fresh
`python -m pytest <file>` subprocess via ThreadPoolExecutor. No xdist,
no custom pytest plugin, no shared worker state.
Key changes:
* scripts/run_tests_parallel.py — new runner: discovers test files,
runs N in parallel via ThreadPoolExecutor, captures stdout per file,
treats exit code 5 (no tests collected) as pass, kills all children
on exit. Change from cpu_count to cpu_count*2. The runner is
I/O-bound (waiting on subprocess.communicate() from pytest children)
The parent process does almost no CPU work, so 2x oversubscription
keeps more pipes full. When a file fails, immediately show the last
30 lines of pytest output (stack traces + FAILED summary) plus a
ready-to-copy repro command:
python -m pytest tests/agent/test_auxiliary_client.py
* scripts/run_tests.sh — delegates to run_tests_parallel.py
* .github/workflows/tests.yml — test step: python
scripts/run_tests_parallel.py
* pyproject.toml — drop pytest-xdist, pytest-split; simplify addopts
* tests/conftest.py — remove ~200 lines of manual state-reset fixtures
* AGENTS.md — update Testing section for per-file design
* test(runner): speed gateway test antipattern scan up
* fix(test): web search provider plugin test missing xai
* fix(tests): make 14 test files pass under per-file subprocess isolation
Tests that relied on cross-file state pollution from xdist workers
fail when run in isolation (per-file subprocess model). Root causes
and fixes:
Tool registry not populated:
- test_video_generation_tool_surface_matrix: add discover_builtin_tools()
- test_web_providers_brave_free/ddgs/searxng/general: autouse fixtures
registering all 8 bundled web providers, reset after each test
- test_website_policy: same provider registration pattern
- test_web_tools_tavily: same pattern across 3 dispatch test classes
- Also add is_safe_url/check_website_access mocks where SSRF check
blocks example.com (DNS resolution fails in isolated envs)
Stale check_fn cache:
- test_kanban_tools: invalidate_check_fn_cache() + _clear_tool_defs_cache()
in both kanban guidance tests (prior test cached False for kanban_show)
- test_discord_tool: cache invalidation in setup/teardown
- test_homeassistant_tool: invalidate_check_fn_cache() before registry queries
Module-level state pollution:
- test_auxiliary_client: autouse fixture clearing _aux_unhealthy_until cache
- test_skill_commands: set_session_vars() instead of patch.dict(os.environ)
(ContextVar takes precedence over os.environ)
- test_dm_topics: overwrite sys.modules + separate telegram.constants mock
+ force-reimport of gateway.platforms.telegram
- test_terminal_tool_requirements: removed duplicate class declaration,
autouse _clear_caches fixture
* change(tests): run_tests.sh explicitly includes env vars
instead of manually dropping some vars, now we just only include some
* fix(tests): 5 more isolation/NixOS fixes
- test_approval_plugin_hooks: isolate HERMES_HOME so real user's
command_allowlist doesn't short-circuit the approval path
- test_google_chat: skipif when Platform.GOOGLE_CHAT not in enum
(feature not merged on this branch)
- test_write_deny: test systemd prefix against tmp_path instead of
/etc/systemd which resolves to /nix/store on NixOS
- test_pty_bridge: use shutil.which('cat') instead of /bin/cat
(doesn't exist on NixOS)
- profiles.py: rmtree onexc handler chmod's parent dirs too, fixing
profile deletion when copytree preserved read-only modes from
nix store
* fix(tests): clear unhealthy cache in autouse fixture for auxiliary_client
* fix(tests): skip send_message when telegram not installed; handle missing worker_id in browser_supervisor
* fix: py3.11 rmtree onexc compat + belt-and-suspenders unhealthy cache clear for expired codex test
* fix: address PR #29016 review feedback
- Remove tracked .pytest-cache/ artifact and add to .gitignore
- Fix stale 'xdist worker' comment in conftest.py
- Deduplicate web provider registration into tests/tools/conftest.py
shared helper (register_all_web_providers), replacing 8 copy-pasted
blocks across 6 test files
- Update PR description: remove stale recovered-test-files claim,
fix worker count to match code (cpu_count*2)
* fix: eliminate race in stale-cache achievements test
The background scan thread could complete and overwrite _SNAPSHOT_CACHE
before evaluate_all() returned the stale data — only 10 fake sessions
made the scan finish instantly. Added scan_delay param to _FakeSessionDB
and set it to 2s in the stale-cache test so the background thread can't
win the race.
502 lines
19 KiB
Python
502 lines
19 KiB
Python
"""Plugin-side tests for the web search provider migration (PR #25182).
|
|
|
|
Covers:
|
|
|
|
- All eight bundled plugins (brave-free, ddgs, searxng, exa, parallel,
|
|
tavily, firecrawl, xai) instantiate and self-report the expected
|
|
capabilities + ABC-derived defaults.
|
|
- Each plugin's ``is_available()`` correctly reflects env-var presence.
|
|
- The web_search_registry resolves an active provider in the documented
|
|
scenarios (explicit config wins ignoring availability, fallback walks
|
|
legacy preference filtered by availability, unknown name falls back).
|
|
- Plugin response shapes match the legacy bit-for-bit contract.
|
|
|
|
Per the dev skill: these tests use *real* imports from the plugin
|
|
modules — no mocking of provider classes themselves — so the test
|
|
catches drift in the ABC interface, the registry, and the plugin
|
|
glue layer simultaneously.
|
|
"""
|
|
from __future__ import annotations
|
|
|
|
import asyncio
|
|
import inspect
|
|
import os
|
|
import sys
|
|
from typing import Any, Dict, List
|
|
|
|
import pytest
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Helpers
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
def _clear_web_env(monkeypatch: pytest.MonkeyPatch) -> None:
|
|
"""Strip every web-provider env var so is_available() returns False."""
|
|
for k in (
|
|
"BRAVE_SEARCH_API_KEY",
|
|
"SEARXNG_URL",
|
|
"TAVILY_API_KEY",
|
|
"TAVILY_BASE_URL",
|
|
"EXA_API_KEY",
|
|
"PARALLEL_API_KEY",
|
|
"PARALLEL_SEARCH_MODE",
|
|
"FIRECRAWL_API_KEY",
|
|
"FIRECRAWL_API_URL",
|
|
"FIRECRAWL_GATEWAY_URL",
|
|
"TOOL_GATEWAY_DOMAIN",
|
|
"TOOL_GATEWAY_USER_TOKEN",
|
|
"XAI_API_KEY",
|
|
):
|
|
monkeypatch.delenv(k, raising=False)
|
|
|
|
|
|
def _ensure_plugins_loaded() -> None:
|
|
"""Idempotently load plugins so the registry is populated."""
|
|
from hermes_cli.plugins import _ensure_plugins_discovered
|
|
|
|
_ensure_plugins_discovered()
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Per-plugin discovery + capability flags
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def _isolate_env(monkeypatch: pytest.MonkeyPatch) -> None:
|
|
"""Each test starts with a clean web-provider env."""
|
|
_clear_web_env(monkeypatch)
|
|
|
|
|
|
class TestBundledPluginsRegister:
|
|
"""All eight bundled web plugins discover and register correctly."""
|
|
|
|
def test_all_seven_plugins_present_in_registry(self) -> None:
|
|
_ensure_plugins_loaded()
|
|
from agent.web_search_registry import list_providers
|
|
|
|
names = sorted(p.name for p in list_providers())
|
|
assert names == [
|
|
"brave-free",
|
|
"ddgs",
|
|
"exa",
|
|
"firecrawl",
|
|
"parallel",
|
|
"searxng",
|
|
"tavily",
|
|
"xai",
|
|
]
|
|
|
|
@pytest.mark.parametrize(
|
|
"plugin_name,expected_search,expected_extract,expected_crawl",
|
|
[
|
|
("brave-free", True, False, False),
|
|
("ddgs", True, False, False),
|
|
("searxng", True, False, False),
|
|
("exa", True, True, False),
|
|
("parallel", True, True, False),
|
|
("tavily", True, True, True),
|
|
# firecrawl: search + extract + crawl. Crawl was originally
|
|
# disabled in the migration (fell through to a legacy inline
|
|
# path); the follow-up commit enabled it natively.
|
|
("firecrawl", True, True, True),
|
|
# xai: search-only via Grok's agentic web_search tool.
|
|
("xai", True, False, False),
|
|
],
|
|
)
|
|
def test_capability_flags_match_spec(
|
|
self,
|
|
plugin_name: str,
|
|
expected_search: bool,
|
|
expected_extract: bool,
|
|
expected_crawl: bool,
|
|
) -> None:
|
|
_ensure_plugins_loaded()
|
|
from agent.web_search_registry import get_provider
|
|
|
|
provider = get_provider(plugin_name)
|
|
assert provider is not None, f"plugin {plugin_name!r} not registered"
|
|
assert provider.supports_search() is expected_search
|
|
assert provider.supports_extract() is expected_extract
|
|
assert provider.supports_crawl() is expected_crawl
|
|
|
|
@pytest.mark.parametrize(
|
|
"plugin_name",
|
|
["brave-free", "ddgs", "searxng", "exa", "parallel", "tavily", "firecrawl", "xai"],
|
|
)
|
|
def test_each_plugin_has_name_and_display_name(self, plugin_name: str) -> None:
|
|
_ensure_plugins_loaded()
|
|
from agent.web_search_registry import get_provider
|
|
|
|
provider = get_provider(plugin_name)
|
|
assert provider is not None
|
|
assert provider.name == plugin_name
|
|
assert provider.display_name # any non-empty string
|
|
|
|
@pytest.mark.parametrize(
|
|
"plugin_name",
|
|
["brave-free", "ddgs", "searxng", "exa", "parallel", "tavily", "firecrawl", "xai"],
|
|
)
|
|
def test_each_plugin_has_setup_schema(self, plugin_name: str) -> None:
|
|
"""``get_setup_schema()`` returns a dict the picker can consume."""
|
|
_ensure_plugins_loaded()
|
|
from agent.web_search_registry import get_provider
|
|
|
|
provider = get_provider(plugin_name)
|
|
assert provider is not None
|
|
schema = provider.get_setup_schema()
|
|
assert isinstance(schema, dict)
|
|
assert "name" in schema
|
|
assert "env_vars" in schema
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# is_available() behavior
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class TestIsAvailable:
|
|
"""Each plugin's ``is_available()`` returns False without env config."""
|
|
|
|
def test_brave_free_requires_api_key(self, monkeypatch: pytest.MonkeyPatch) -> None:
|
|
_ensure_plugins_loaded()
|
|
from agent.web_search_registry import get_provider
|
|
|
|
p = get_provider("brave-free")
|
|
assert p is not None
|
|
assert p.is_available() is False # no BRAVE_SEARCH_API_KEY
|
|
monkeypatch.setenv("BRAVE_SEARCH_API_KEY", "real")
|
|
assert p.is_available() is True
|
|
|
|
def test_searxng_requires_url(self, monkeypatch: pytest.MonkeyPatch) -> None:
|
|
_ensure_plugins_loaded()
|
|
from agent.web_search_registry import get_provider
|
|
|
|
p = get_provider("searxng")
|
|
assert p is not None
|
|
assert p.is_available() is False
|
|
monkeypatch.setenv("SEARXNG_URL", "http://localhost:8080")
|
|
assert p.is_available() is True
|
|
|
|
def test_tavily_requires_api_key(self, monkeypatch: pytest.MonkeyPatch) -> None:
|
|
_ensure_plugins_loaded()
|
|
from agent.web_search_registry import get_provider
|
|
|
|
p = get_provider("tavily")
|
|
assert p is not None
|
|
assert p.is_available() is False
|
|
monkeypatch.setenv("TAVILY_API_KEY", "real")
|
|
assert p.is_available() is True
|
|
|
|
def test_exa_requires_api_key(self, monkeypatch: pytest.MonkeyPatch) -> None:
|
|
_ensure_plugins_loaded()
|
|
from agent.web_search_registry import get_provider
|
|
|
|
p = get_provider("exa")
|
|
assert p is not None
|
|
assert p.is_available() is False
|
|
monkeypatch.setenv("EXA_API_KEY", "real")
|
|
assert p.is_available() is True
|
|
|
|
def test_parallel_requires_api_key(self, monkeypatch: pytest.MonkeyPatch) -> None:
|
|
_ensure_plugins_loaded()
|
|
from agent.web_search_registry import get_provider
|
|
|
|
p = get_provider("parallel")
|
|
assert p is not None
|
|
assert p.is_available() is False
|
|
monkeypatch.setenv("PARALLEL_API_KEY", "real")
|
|
assert p.is_available() is True
|
|
|
|
def test_firecrawl_requires_either_key_or_url(
|
|
self, monkeypatch: pytest.MonkeyPatch
|
|
) -> None:
|
|
_ensure_plugins_loaded()
|
|
from agent.web_search_registry import get_provider
|
|
|
|
p = get_provider("firecrawl")
|
|
assert p is not None
|
|
assert p.is_available() is False
|
|
|
|
# Either FIRECRAWL_API_KEY or FIRECRAWL_API_URL lights it up.
|
|
monkeypatch.setenv("FIRECRAWL_API_KEY", "real")
|
|
assert p.is_available() is True
|
|
monkeypatch.delenv("FIRECRAWL_API_KEY", raising=False)
|
|
monkeypatch.setenv("FIRECRAWL_API_URL", "http://localhost:3002")
|
|
assert p.is_available() is True
|
|
|
|
def test_ddgs_always_available_when_package_importable(self) -> None:
|
|
"""DDGS is the always-on fallback — no API key required.
|
|
|
|
It may report unavailable if the ``ddgs`` package itself isn't
|
|
installed in the env (legitimate — the plugin's post_setup hook
|
|
triggers pip install on first selection). We only assert that
|
|
is_available() doesn't raise.
|
|
"""
|
|
_ensure_plugins_loaded()
|
|
from agent.web_search_registry import get_provider
|
|
|
|
p = get_provider("ddgs")
|
|
assert p is not None
|
|
# Truthy or falsy, just must not raise.
|
|
_ = bool(p.is_available())
|
|
|
|
def test_xai_requires_api_key_or_oauth(self, monkeypatch: pytest.MonkeyPatch) -> None:
|
|
"""xAI needs XAI_API_KEY or OAuth tokens in auth.json."""
|
|
_ensure_plugins_loaded()
|
|
from agent.web_search_registry import get_provider
|
|
|
|
p = get_provider("xai")
|
|
assert p is not None
|
|
assert p.is_available() is False # no XAI_API_KEY, no auth.json
|
|
monkeypatch.setenv("XAI_API_KEY", "real")
|
|
assert p.is_available() is True
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Registry resolution semantics (Option B — conservative smart fallback)
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class TestRegistryResolution:
|
|
"""``_resolve()`` follows explicit-config + availability-filtered fallback."""
|
|
|
|
def test_explicit_configured_provider_returned_even_when_unavailable(
|
|
self,
|
|
) -> None:
|
|
"""Explicit ``web.search_backend`` wins regardless of is_available().
|
|
|
|
Without availability filtering on the explicit path, the dispatcher
|
|
would silently switch backends; with this check the dispatcher
|
|
surfaces a precise "FOO_API_KEY is not set" error instead.
|
|
"""
|
|
_ensure_plugins_loaded()
|
|
from agent.web_search_registry import _resolve, get_provider
|
|
|
|
# No BRAVE_SEARCH_API_KEY (fixture cleared it).
|
|
result = _resolve("brave-free", capability="search")
|
|
assert result is not None
|
|
assert result.name == "brave-free"
|
|
# Confirm it's the unavailable one — dispatcher will surface
|
|
# a typed credential-missing error to the caller.
|
|
assert result.is_available() is False
|
|
|
|
def test_unknown_configured_name_falls_back_to_available_provider(
|
|
self, monkeypatch: pytest.MonkeyPatch
|
|
) -> None:
|
|
"""Typo / uninstalled plugin → walk legacy preference, pick available."""
|
|
_ensure_plugins_loaded()
|
|
from agent.web_search_registry import _resolve
|
|
|
|
monkeypatch.setenv("EXA_API_KEY", "real")
|
|
result = _resolve("not-a-real-provider", capability="search")
|
|
# Either ddgs (no-key fallback) or exa (the only available
|
|
# premium provider) — both are valid. The point is the unknown
|
|
# name shouldn't return None when SOMETHING is available.
|
|
assert result is not None
|
|
assert result.is_available() is True
|
|
|
|
def test_explicit_search_only_provider_for_extract_falls_back(
|
|
self, monkeypatch: pytest.MonkeyPatch
|
|
) -> None:
|
|
"""Asking for extract via a search-only backend → fall back.
|
|
|
|
``brave-free`` is search-only (``supports_extract() is False``).
|
|
When the registry resolves it for an extract capability, the
|
|
explicit-config branch rejects it as capability-incompatible
|
|
and the fallback walk picks an extract-capable provider.
|
|
"""
|
|
_ensure_plugins_loaded()
|
|
from agent.web_search_registry import _resolve
|
|
|
|
monkeypatch.setenv("EXA_API_KEY", "real")
|
|
result = _resolve("brave-free", capability="extract")
|
|
# Should land on exa (only extract-capable available provider).
|
|
assert result is not None
|
|
assert result.supports_extract() is True
|
|
assert result.is_available() is True
|
|
|
|
def test_no_config_no_credentials_returns_none(
|
|
self,
|
|
) -> None:
|
|
"""No backend configured AND no available providers → typically None.
|
|
|
|
``ddgs`` is the no-credential fallback; if its ``ddgs`` Python
|
|
package is installed in the test env, ddgs will be picked.
|
|
Otherwise the resolver returns None. Either outcome is correct.
|
|
"""
|
|
_ensure_plugins_loaded()
|
|
from agent.web_search_registry import _resolve
|
|
|
|
result = _resolve(None, capability="search")
|
|
if result is not None:
|
|
# The only no-credential provider is ddgs; anything else
|
|
# means an env var leaked in.
|
|
assert result.is_available() is True
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Sync-vs-async extract detection
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class TestAsyncExtractDispatch:
|
|
"""The dispatcher detects async vs sync extract methods correctly."""
|
|
|
|
def test_parallel_extract_is_async(self) -> None:
|
|
_ensure_plugins_loaded()
|
|
from agent.web_search_registry import get_provider
|
|
|
|
p = get_provider("parallel")
|
|
assert p is not None
|
|
assert inspect.iscoroutinefunction(p.extract) is True
|
|
|
|
def test_firecrawl_extract_is_async(self) -> None:
|
|
_ensure_plugins_loaded()
|
|
from agent.web_search_registry import get_provider
|
|
|
|
p = get_provider("firecrawl")
|
|
assert p is not None
|
|
assert inspect.iscoroutinefunction(p.extract) is True
|
|
|
|
def test_exa_extract_is_sync(self) -> None:
|
|
_ensure_plugins_loaded()
|
|
from agent.web_search_registry import get_provider
|
|
|
|
p = get_provider("exa")
|
|
assert p is not None
|
|
assert inspect.iscoroutinefunction(p.extract) is False
|
|
|
|
def test_tavily_extract_is_sync(self) -> None:
|
|
_ensure_plugins_loaded()
|
|
from agent.web_search_registry import get_provider
|
|
|
|
p = get_provider("tavily")
|
|
assert p is not None
|
|
assert inspect.iscoroutinefunction(p.extract) is False
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Error response shape (preserved bit-for-bit from legacy)
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class TestErrorResponseShapes:
|
|
"""When credentials are missing, plugins return typed errors, not raises."""
|
|
|
|
def test_brave_free_returns_error_dict_when_unconfigured(self) -> None:
|
|
_ensure_plugins_loaded()
|
|
from agent.web_search_registry import get_provider
|
|
|
|
p = get_provider("brave-free")
|
|
assert p is not None
|
|
result = p.search("test", limit=5)
|
|
assert isinstance(result, dict)
|
|
assert result.get("success") is False
|
|
assert "error" in result
|
|
|
|
def test_searxng_returns_error_dict_when_unconfigured(self) -> None:
|
|
_ensure_plugins_loaded()
|
|
from agent.web_search_registry import get_provider
|
|
|
|
p = get_provider("searxng")
|
|
assert p is not None
|
|
result = p.search("test", limit=5)
|
|
assert isinstance(result, dict)
|
|
assert result.get("success") is False
|
|
assert "error" in result
|
|
|
|
def test_exa_returns_error_dict_when_unconfigured(self) -> None:
|
|
_ensure_plugins_loaded()
|
|
from agent.web_search_registry import get_provider
|
|
|
|
p = get_provider("exa")
|
|
assert p is not None
|
|
result = p.search("test", limit=5)
|
|
assert isinstance(result, dict)
|
|
assert result.get("success") is False
|
|
assert "error" in result
|
|
|
|
def test_tavily_returns_error_dict_when_unconfigured(self) -> None:
|
|
_ensure_plugins_loaded()
|
|
from agent.web_search_registry import get_provider
|
|
|
|
p = get_provider("tavily")
|
|
assert p is not None
|
|
result = p.search("test", limit=5)
|
|
assert isinstance(result, dict)
|
|
assert result.get("success") is False
|
|
assert "error" in result
|
|
|
|
def test_parallel_extract_returns_per_url_errors_when_unconfigured(self) -> None:
|
|
_ensure_plugins_loaded()
|
|
from agent.web_search_registry import get_provider
|
|
|
|
p = get_provider("parallel")
|
|
assert p is not None
|
|
result = asyncio.run(p.extract(["https://example.com"]))
|
|
assert isinstance(result, list)
|
|
assert len(result) == 1
|
|
assert "error" in result[0]
|
|
assert result[0]["url"] == "https://example.com"
|
|
|
|
def test_firecrawl_extract_returns_per_url_errors_when_unconfigured(self) -> None:
|
|
_ensure_plugins_loaded()
|
|
from agent.web_search_registry import get_provider
|
|
|
|
p = get_provider("firecrawl")
|
|
assert p is not None
|
|
# firecrawl extract returns [] when the website-policy gate rejects
|
|
# the URL, or a per-URL error dict when the gate passes but the
|
|
# firecrawl client fails. Use a URL the policy allows to make sure
|
|
# we hit the credential-missing path.
|
|
result = asyncio.run(p.extract(["https://example.com"]))
|
|
assert isinstance(result, list)
|
|
if result: # if anything came back, it should be an error entry
|
|
assert "error" in result[0]
|
|
|
|
def test_tavily_crawl_returns_error_dict_when_unconfigured(self) -> None:
|
|
_ensure_plugins_loaded()
|
|
from agent.web_search_registry import get_provider
|
|
|
|
p = get_provider("tavily")
|
|
assert p is not None
|
|
result = p.crawl("https://example.com")
|
|
assert isinstance(result, dict)
|
|
assert "results" in result
|
|
assert isinstance(result["results"], list)
|
|
if result["results"]:
|
|
assert "error" in result["results"][0]
|
|
|
|
def test_firecrawl_crawl_returns_error_dict_when_unconfigured(self):
|
|
"""firecrawl crawl is async (wraps SDK in to_thread); error must be
|
|
surfaced via the per-page result shape, not raised."""
|
|
_ensure_plugins_loaded()
|
|
from agent.web_search_registry import get_provider
|
|
|
|
p = get_provider("firecrawl")
|
|
assert p is not None
|
|
assert inspect.iscoroutinefunction(p.crawl)
|
|
result = asyncio.run(p.crawl("https://example.com"))
|
|
assert isinstance(result, dict)
|
|
assert "results" in result
|
|
assert isinstance(result["results"], list)
|
|
# Without FIRECRAWL_API_KEY, the plugin's _get_firecrawl_client()
|
|
# raises ValueError which is caught and returned as a per-page error.
|
|
assert len(result["results"]) >= 1
|
|
assert "error" in result["results"][0]
|
|
assert result["results"][0]["url"] == "https://example.com"
|
|
|
|
def test_xai_search_returns_error_dict_when_unconfigured(self) -> None:
|
|
"""xAI returns a typed error dict (no XAI_API_KEY)."""
|
|
_ensure_plugins_loaded()
|
|
from agent.web_search_registry import get_provider
|
|
|
|
p = get_provider("xai")
|
|
assert p is not None
|
|
result = p.search("test", limit=5)
|
|
assert isinstance(result, dict)
|
|
assert result.get("success") is False
|
|
assert "error" in result
|