hermes-agent/tests/hermes_cli/test_timestamps_command.py
Teknium 6b81590c55
test: prune low-value tests suite-wide (wave 1) — 46,820 → 28,106 test functions
Systematic prune per AGENTS.md test policy, one pass over every major
test tree (gateway, hermes_cli, tools, agent, run_agent, plugins, cli,
cron, tui_gateway, honcho/openviking, root-level):

- DELETE: source-reading tests (read_text/getsource on prod files),
  change-detector tests (exact catalog counts, model-name snapshots,
  config version literals), mock-echo tests (assert a mock returns what
  it was told), assertion-free/trivial tests, near-duplicate
  parametrizations (boundaries + one representative kept), async/sync
  twin duplicates, cosmetic within-file variations.
- KEEP (mandatory): security/redaction/approval guards, message-role
  alternation invariants, prompt-caching/deterministic-call-id
  invariants, issue-number regression tests (deduped), E2E tests.
- 6 test files deleted outright (script-style/no-assert or fully
  redundant); conftest.py, fakes/, fixtures/ untouched.
- tests/acp/conftest.py added: autouse fixture stubs the live
  models.dev/GitHub/Copilot/Anthropic inventory fetches that ACP server
  tests performed on every session create — test_server.py 147s → 3.4s,
  and the tests are now genuinely hermetic.
- Sleep-based slowness shrunk where safe (codex_ttfb_watchdog,
  compression_concurrent_fork, etc.); no wall-clock assertion tightened.

Verification: full hermetic suite via scripts/run_tests.sh —
2439 files, 31,130 tests passed, 0 failed, 0 flaky retries, 315s wall
(baseline: 583s wall, 13,564s subprocess CPU).
2026-07-29 13:10:23 -07:00

75 lines
2.2 KiB
Python

"""Tests for the CLI `/timestamps` toggle and timestamps in `/history`.
`display.timestamps` already drove the live `[HH:MM]` label suffix on
submitted/streamed messages but had no runtime toggle and `/history`
ignored it. These assert the new `/timestamps` command flips and persists
the flag and that `/history` renders `[HH:MM]` only for turns that carry a
stored unix `timestamp` (never fabricating one for live unsaved turns).
"""
import io
import sys
import time
from datetime import datetime
import yaml
from hermes_cli.cli_commands_mixin import CLICommandsMixin
class _Stub(CLICommandsMixin):
def __init__(self):
self.show_timestamps = False
def _seed(tmp_path, monkeypatch, value=False):
hh = tmp_path / ".hermes"
hh.mkdir()
(hh / "config.yaml").write_text(f"display:\n timestamps: {str(value).lower()}\n")
monkeypatch.setenv("HERMES_HOME", str(hh))
import cli
monkeypatch.setattr(cli, "_hermes_home", hh, raising=False)
return hh
def test_timestamps_on_sets_and_persists(tmp_path, monkeypatch):
hh = _seed(tmp_path, monkeypatch)
s = _Stub()
s._handle_timestamps_command("/timestamps on")
assert s.show_timestamps is True
assert yaml.safe_load((hh / "config.yaml").read_text())["display"]["timestamps"] is True
def _render_history(history, show_ts):
from cli import HermesCLI
h = HermesCLI.__new__(HermesCLI)
h.show_timestamps = show_ts
h.conversation_history = history
h._show_recent_sessions = lambda reason="history", limit=10: True
buf = io.StringIO()
old = sys.stdout
sys.stdout = buf
try:
h.show_history()
finally:
sys.stdout = old
return buf.getvalue()
def test_history_shows_timestamp_for_stored_turns():
ts = time.time()
hist = [
{"role": "user", "content": "hello", "timestamp": ts},
{"role": "assistant", "content": "hi", "timestamp": ts + 60},
{"role": "user", "content": "live turn, no ts"},
]
out = _render_history(hist, show_ts=True)
hhmm = datetime.fromtimestamp(ts).strftime("%H:%M")
assert f"[You #1] [{hhmm}]" in out
assert "[Hermes #2] [" in out
# a turn with no stored timestamp must NOT get a fabricated time
assert "[You #3]\n" in out