Files
hermes-webui/tests/test_issue3875_blank_transcript_failsafe.py
T
nesquena-hermes e8d71a2fb8 Release v0.51.347 — Release LK (streaming & render reliability cluster #3892 #3898 #3885 #3882 #3868) (#3902)
* stage v0.51.347: render/stream cluster (#3892 #3898 #3885 #3882 #3868) + 2 Opus SHOULD-FIX

* stage v0.51.347: trim #3885 error-guard comment to fit diagnostic-test window

* Stamp v0.51.347 — Release LK (streaming & render reliability cluster)

* Remove stray uv.lock accidentally staged (not part of any cluster PR)

---------

Co-authored-by: nesquena-hermes <[email protected]>
2026-06-09 17:02:35 -07:00

147 lines
7.6 KiB
Python

"""Regression coverage for #3875 — chat transcript renders as only date separators.
#3875 (BUG: messages stopped displaying correctly): the chat transcript rendered as
nothing but a stack of date-change separators (SUNDAY / SATURDAY / dates) with no
message bodies between them. Two users confirmed it; only a restart appeared to help
(it didn't — it was a render-state bug, not server state).
Root cause: the live-to-final / Worklog redesign (#3401, v0.51.294) folds intermediate
assistant segments into a collapsed Worklog card and hides the source segment via the
``assistant-segment-worklog-source`` class (``display:none``). That is correct WHEN the
turn also has a visible final answer. But when a turn's ONLY content is folded into a
collapsed Worklog — e.g. an autonomous/interrupted run whose final assistant message is
empty, or a reload where ``S.toolCalls`` did not hydrate so the Worklog card has no
expandable tool steps — every segment is hidden and the turn paints as nothing, leaving
the transcript a bare stack of date separators.
The fix is a defensive fail-safe at the END of ``renderMessages``: a settled assistant
turn must never render with ZERO visible content. When a turn has no visible segment,
its folded Worklog group is expanded (or, as a last resort, its hidden worklog-source
segments are un-hidden) so the content is never silently swallowed. The fail-safe never
touches a turn that already has any visible segment, so the intended collapsed-Worklog
UX is preserved whenever a visible answer exists.
These are static source-structure assertions over the shipped ``renderMessages`` so the
invariant cannot silently regress.
"""
from __future__ import annotations
from pathlib import Path
REPO = Path(__file__).resolve().parent.parent
UI_JS = (REPO / "static" / "ui.js").read_text(encoding="utf-8")
def _function_body(src: str, name: str) -> str:
marker = f"function {name}("
start = src.find(marker)
assert start != -1, f"{name} not found"
brace = src.find("{", start)
assert brace != -1, f"{name} body not found"
depth = 0
for idx in range(brace, len(src)):
ch = src[idx]
if ch == "{":
depth += 1
elif ch == "}":
depth -= 1
if depth == 0:
return src[brace + 1 : idx]
raise AssertionError(f"{name} body not closed")
def test_render_messages_has_blank_turn_failsafe():
"""#3875: renderMessages must carry the no-blank-turn fail-safe invariant."""
body = _function_body(UI_JS, "renderMessages")
# The fail-safe is anchored by its issue tag so it is greppable + intentional.
assert "Fail-safe invariant (#3875)" in body, (
"the #3875 no-blank-turn fail-safe is missing from renderMessages"
)
def test_failsafe_reveals_folded_worklog_for_blank_turns():
"""The fail-safe must expand the folded Worklog group when a turn has no visible content."""
body = _function_body(UI_JS, "renderMessages")
# It must scan turns and skip any turn that already has visible content.
assert "_turnHasVisibleContent" in body
# A turn is only acted on when it lacks visible content (the skip-guard).
assert "if(_turnHasVisibleContent(turn)) continue;" in body
# The reveal action removes the collapsed class on the Worklog group.
assert "tool-call-group-collapsed" in body
assert "removeAttribute('aria-hidden')" in body
def test_failsafe_preserves_collapsed_worklog_when_visible_answer_exists():
"""The fail-safe must NOT touch turns that already render visible content.
The skip-guard (`if(_turnHasVisibleContent(turn)) continue;`) is what preserves the
intended collapsed-Worklog UX: a turn with any visible answer is left untouched, so
this fix only ever ADDS visibility to otherwise-blank turns and can never re-expand a
Worklog the user expects collapsed.
"""
body = _function_body(UI_JS, "renderMessages")
# The visible-content check skips worklog-source (folded) + anchor-only placeholder
# segments, and treats any other non-empty segment as "visible".
failsafe = body[body.find("Fail-safe invariant (#3875)") :]
assert "assistant-segment-worklog-source" in failsafe
assert "assistant-segment-anchor" in failsafe
# The live turn drives its own state and must be excluded from the sweep.
assert "liveAssistantTurn" in failsafe
def test_render_surfaces_reasoning_field_for_empty_content_turn():
"""#3875 (real reporter case): an assistant turn with empty visible content but
a separate `reasoning` field must surface that reasoning as a Thinking card.
The per-segment inline thinkingText extraction only mines <think>/channel/turn
tags out of `content`; it must NOT read `m.reasoning` (that constraint is
enforced by #2565 — reasoning metadata stays low-priority Worklog detail, never
inline-content extraction). So a run-journal-recovered anchor (empty content +
reasoning + `_recovered_from_run_journal`) extracted no thinkingText, rendered no
Thinking card, and collapsed to an empty hidden anchor — a session of such rows
painted blank (only date separators). The fix, at the segment-emission point
(AFTER the #2565-guarded inline extraction block, in LEGACY mode only), falls
back to `_assistantReasoningPayloadText(m)` and reuses `thinkingText` ONLY when
there is no inline thinkingText AND no visible content/files/status — keeping
reasoning out of the forbidden extraction block while ensuring the turn is never
blank. Legacy-only because the simplified/Worklog path already derives reasoning
(with an exact-visible-answer echo-strip) higher up.
"""
body = _function_body(UI_JS, "renderMessages")
# The fallback exists at emission time (after the #2565-guarded inline
# extraction block), reusing thinkingText but sourced from the reasoning payload.
assert "_assistantReasoningPayloadText(m)" in body, (
"the empty-turn path must fall back to the message's reasoning payload"
)
# It is scoped to LEGACY mode (simplified path already derives reasoning with
# echo-strip) AND empty-content turns with no inline thinkingText, so an
# answer-bearing message's rendering is unchanged and a Worklog echo is not
# double-rendered (Codex gate catch).
assert "!isUser&&!m._live&&!isSimplifiedToolCalling()&&!thinkingText&&!String(content||'').trim()&&!filesHtml&&!statusHtml" in body, (
"the reasoning fallback must be scoped to legacy-mode empty-content/no-inline-thinking turns"
)
def test_reasoning_fallback_stays_out_of_inline_extraction_block_2565():
"""Guard against regressing #2565: the reasoning fallback must NOT live in the
inline-content `thinkingText` extraction block (between `let thinkingText='';`
and `const isUser=...`). That block must never reference `m.reasoning`."""
src = UI_JS
extraction = src.split("let thinkingText='';", 1)[1].split("const isUser=m.role==='user';", 1)[0]
assert "m.reasoning" not in extraction
assert "m.reasoning_content" not in extraction
assert "_assistantReasoningPayloadText" not in extraction, (
"the reasoning fallback must live at the segment-emission point, not inside "
"the inline-content extraction block (#2565)"
)
def test_assistant_reasoning_payload_reads_reasoning_fields():
"""The fallback relies on `_assistantReasoningPayloadText` reading the message's
`reasoning` / `reasoning_content` fields (not just inline content tags)."""
payload_fn = _function_body(UI_JS, "_assistantReasoningPayloadText")
# Reads the direct reasoning fields off the message object.
assert "m.reasoning_content||m.reasoning||m.thinking||m._reasoning" in payload_fn