Sweep operator runbooks (docs/QUICKSTART, docs/HEADLESS_USAGE, docs/architecture, docs/sample-data, docs/agent-workspace-prompt, docs/metrics/metrics.yml, dev_docs/server, dev_docs/disaster-recovery), the corporate-memory service README, the jira connector README + backfill scripts, the deploy skill, and test docstrings. Replaces `da sync` → `agnes pull`, `da analyst setup` → `agnes init`, `da metrics ...` → `agnes catalog --metrics` / `agnes admin metrics ...`, `da fetch` → `agnes snapshot create`, plus the matching docker-compose admin invocations. Vendor-specific `/opt/data-analyst/` install paths in jira backfill / consistency scripts and operator docs are replaced with the placeholder `<install-dir>` and a new `AGNES_ENV_FILE` env-var override that lets a deployment inject its actual install path without a code change. Aligns with the OSS vendor-agnostic policy in CLAUDE.md. CHANGELOG `### Internal` entry summarizes the audit and reaffirms the intentional stale-marker tuples (`_LEGACY_STRINGS`, `_OUR_COMMAND_MARKERS`) that must keep referencing `da sync` / `da fetch` / etc. for hook upgrade and override-detection logic.
28 lines
906 B
Python
28 lines
906 B
Python
"""Tests for `agnes catalog --metrics`."""
|
|
|
|
from typer.testing import CliRunner
|
|
|
|
# CI-safety: Typer/rich emits ANSI escapes in --help output. Strip before asserts.
|
|
_ANSI_RE = __import__("re").compile(r"\x1b\[[0-9;]*m")
|
|
def _clean(s: str) -> str:
|
|
return _ANSI_RE.sub("", s)
|
|
|
|
from cli.commands.catalog import catalog_app
|
|
|
|
|
|
def test_catalog_metrics_help():
|
|
runner = CliRunner()
|
|
result = runner.invoke(catalog_app, ["--help"])
|
|
assert result.exit_code == 0
|
|
assert "--metrics" in _clean(result.output)
|
|
assert "--show" in _clean(result.output)
|
|
|
|
|
|
def test_catalog_default_still_works():
|
|
"""Existing `agnes catalog` (no flags) behavior unchanged."""
|
|
runner = CliRunner()
|
|
# Help should still mention the default tables view
|
|
result = runner.invoke(catalog_app, ["--help"])
|
|
assert result.exit_code == 0
|
|
# No traceback
|
|
assert "Traceback" not in _clean(result.output)
|