Files
hermes-webui/tests/test_cancelled_turn_status.py
nesquena-hermes e3a7c93dc6
Some checks failed
Release & Docker / release (push) Has been cancelled
[HELD — independent review pending] Release v0.51.294 — stage-3401 (live-to-final redesign #3401 + 4 deep-review fixes) (#3741)
* Harden interrupted recovery control filtering

* Redesign live-to-final assistant replies

* Fix live activity anchor test fixture

* Fix CI lint issues for live reply tests

* Strengthen live progress prompt contract

* Recover PR #3401 refresh on origin/master

* Repair live-to-final refresh regressions

* Fix live worklog refresh regressions

* Show live footer timer on initial stream start

* Restore live stream shell after reload

* Preserve per-frame live SSE replay cursors

* Preserve reasoning as Worklog Thinking cards

* Quiet Worklog Thinking card styling

* Align Worklog Thinking card styling

* Scope live Worklog Thinking cards by segment

* Suppress exact duplicate settled Thinking

* Close #3401 merge review test gaps

* fix(#3401): resolve 4 deep-review regressions (inline-think, reconnect-dup, neon skin, busy-gate worklog)

Deep review (Codex diff-vs-master + live-browser drive) of the live-to-final refactor
surfaced 4 regressions vs master that the rewritten suite no longer guarded:

1. Inline <think>…</think>answer reasoning vanished — _assistantReasoningPayloadText
   used $-anchored regexes so a leading think block + visible answer extracted nothing
   and the Thinking card never rendered. Removed the 3 $ anchors to match the
   (non-anchored) display stripper. Live: inline-think thinking-only turn now renders.
2. (CORE) reconnect/reload duplicated the live reply — _rememberRunJournalCursor advanced
   a closure-local seq but never wrote INFLIGHT[activeSid].lastRunJournalSeq, so a reload
   replayed the journal from after_seq=0 over restored lastAssistantText. Now mirrors the
   cursor onto INFLIGHT + schedules a throttled persist.
3. Neon skin silently broke — PR deleted the :root[data-skin="neon"] CSS but left Neon in
   the picker. Restored the neon CSS block from master.
4. Settled tool-worklog rebuild gated purely on !S.busy — dropped every prior settled
   turn's worklog when renderMessages re-ran during an active stream (switch-back to an
   in-progress session). Restored master's !S.busy || (S.toolCalls && S.toolCalls.length).
   Live: busy re-render now preserves tool cards (4→4, was 4→0).

Live-verified all 4 + confirmed #3709/#3592 invariants still hold (1 thinking card, none
below footer; distinct siblings preserved). + tests/test_issue3401_deep_review_fixes.py (7).

* test(#3401): realign 3 stale source-shape assertions to the deep-review fixes

Fix commit changed two source literals that existing stage tests scanned for:
- test_live_activity_timeline.py (x2): split anchor 'if(!S.busy){' → the restored
  'if(!S.busy || (S.toolCalls&&S.toolCalls.length)){' guard (fix 4).
- test_run_journal_frontend_static.py: 'after_seq=0' not in source — fix 2's comment
  contained that literal; rephrased the comment to 'the zero floor (after_seq of 0)'.
Intent of all three assertions unchanged; only the matched string updated. No code
behavior change.

* docs(changelog): v0.51.294 — Release JJ (stage-3401, #3401 live-to-final redesign)

---------

Co-authored-by: Frank Song <franksong2702@gmail.com>
Co-authored-by: Nathan-Hermes <nesquena-hermes@users.noreply.github.com>
Co-authored-by: nesquena-hermes <[email protected]>
2026-06-06 12:12:37 -07:00

202 lines
9.1 KiB
Python

"""Regression tests for accurate cancelled/interrupted turn status.
A user pressing Stop/Cancel must not be shown provider-empty guidance like
"No response from provider". Provider-empty remains valid only when there was
no explicit cancel/interruption signal.
"""
from __future__ import annotations
import pathlib
from api.streaming import (
_CANCEL_MARKER_PATTERNS,
_cancelled_turn_content,
_classify_provider_error,
_finalize_cancelled_turn,
)
REPO_ROOT = pathlib.Path(__file__).parent.parent.resolve()
def _read(rel_path: str) -> str:
return (REPO_ROOT / rel_path).read_text(encoding="utf-8")
class _DummySession:
def __init__(self, path: str = ''):
self.path = path
self.messages = []
self.active_stream_id = 'stream-1'
self.pending_user_message = 'hello'
self.pending_attachments = ['a.txt']
self.pending_started_at = 123
self.saved = 0
def save(self, *args, **kwargs):
self.saved += 1
class TestCancelledTurnClassification:
def test_user_cancelled_error_is_not_provider_no_response(self):
result = _classify_provider_error("Cancelled by user", Exception("Cancelled by user"))
assert result["type"] == "cancelled"
assert result["label"] == "Task cancelled"
assert "provider returned no content" not in result.get("hint", "").lower()
assert "rate limit" not in result.get("hint", "").lower()
assert "no provider failure" in result.get("hint", "").lower()
def test_string_only_cancelled_error_repr_is_cancelled(self):
result = _classify_provider_error("<CancelledError>", None, silent_failure=True)
assert result["type"] == "cancelled"
assert result["label"] == "Task cancelled"
assert "provider returned no content" not in result.get("hint", "").lower()
def test_interrupted_or_aborted_error_is_not_provider_no_response(self):
for text in (
"Interrupted by user",
"Operation aborted before provider response completed",
"AbortError: request was aborted",
):
result = _classify_provider_error(text, RuntimeError(text))
assert result["type"] == "interrupted", text
assert result["label"] == "Response interrupted", text
assert "provider returned no content" not in result.get("hint", "").lower()
def test_provider_empty_response_still_uses_no_response(self):
result = _classify_provider_error("", None, silent_failure=True)
assert result["type"] == "no_response"
assert result["label"] == "No response from provider"
assert "provider returned no content" in result.get("hint", "").lower()
class TestCancelledTurnFinalizer:
def test_persistent_cancel_finalizer_clears_pending_and_saves_cancel_marker(self):
session = _DummySession()
_finalize_cancelled_turn(session, ephemeral=False)
assert session.active_stream_id is None
assert session.pending_user_message is None
assert session.pending_attachments == []
assert session.pending_started_at is None
assert session.saved == 1
assert session.messages[-1]['content'] == _cancelled_turn_content('Task cancelled.')
assert '**Task cancelled:** Task cancelled.' in session.messages[-1]['content']
assert 'No provider failure occurred' in session.messages[-1]['content']
assert session.messages[-1]['provider_details'] == 'Task cancelled.'
assert session.messages[-1]['provider_details_label'] == 'Cancellation details'
assert session.messages[-1]['_error'] is True
def test_ephemeral_cancel_finalizer_unlinks_temp_session_without_saving_error_marker(self, tmp_path):
temp_session = tmp_path / 'btw-session.json'
temp_session.write_text('{}', encoding='utf-8')
session = _DummySession(str(temp_session))
_finalize_cancelled_turn(session, ephemeral=True)
assert session.active_stream_id is None
assert session.pending_user_message is None
assert session.pending_attachments == []
assert session.pending_started_at is None
assert session.saved == 0
assert session.messages == []
assert not temp_session.exists()
def test_message_renderer_allows_non_provider_details_label(self):
src = _read("static/ui.js")
assert "provider_details_label||'Provider details'" in src
assert "provider-error-details" in src
class TestCancelledTurnPersistenceGuards:
def test_cancel_marker_patterns_are_centralized_for_dedupe(self):
assert _CANCEL_MARKER_PATTERNS == ('task cancelled', 'task canceled', 'response interrupted')
src = _read("api/streaming.py")
assert "any(pattern in normalized for pattern in _CANCEL_MARKER_PATTERNS)" in src
assert "any(pattern in _content for pattern in _CANCEL_MARKER_PATTERNS)" in src
def test_silent_failure_path_checks_cancel_event_before_persisting_provider_error(self):
src = _read("api/streaming.py")
silent_idx = src.find("# ── Detect silent agent failure")
if silent_idx == -1:
silent_idx = src.find("# ── Detect missing final assistant reply")
assert silent_idx != -1, "silent-failure block not found"
apperror_idx = src.find("put('apperror', _error_payload)", silent_idx)
assert apperror_idx != -1, "silent-failure apperror emission not found"
block = src[silent_idx:apperror_idx]
assert "cancel_event.is_set()" in block, (
"When a user cancels and the interrupted agent returns no assistant text, "
"the silent-failure path must not persist a provider no_response error."
)
assert "cancelled" in block.lower(), (
"The cancellation guard should persist/report a cancelled turn, not silently drop state."
)
def test_streamed_progress_without_final_assistant_still_reports_error(self):
src = _read("api/streaming.py")
failure_idx = src.find("_terminal_failure = (")
assert failure_idx != -1, "terminal-failure guard not found"
apperror_idx = src.find("put('apperror', _error_payload)", failure_idx)
assert apperror_idx != -1, "terminal-failure guard must emit apperror"
block = src[failure_idx:apperror_idx]
assert "_agent_result_terminal_failure(result)" in block
assert "if _terminal_failure or (not _assistant_added and not _token_sent):" in block, (
"Explicit terminal failures, including compression/tool-tail failures, must report "
"an error even when interim progress already streamed."
)
def test_exception_path_classifies_after_cancel_event_before_generic_error(self):
src = _read("api/streaming.py")
except_idx = src.find("print('[webui] stream error:")
assert except_idx != -1, "stream exception handler not found"
classify_idx = src.find("_classify_provider_error", except_idx)
generic_idx = src.find("_exc_label, _exc_type, _exc_hint = 'Error', 'error', ''", except_idx)
assert classify_idx != -1 and generic_idx != -1
block = src[except_idx:generic_idx]
assert "cancel_event.is_set()" in block, (
"Exception handling must distinguish user-cancelled/aborted runs before generic errors."
)
assert "cancelled" in block.lower() or "interrupted" in block.lower()
assert "provider_details_label" in src
assert "Cancellation details" in src
assert "Interruption details" in src
def test_post_run_cancel_guard_runs_before_normal_success_merge(self):
src = _read("api/streaming.py")
run_idx = src.find("result = agent.run_conversation(")
merge_idx = src.find("_result_messages = result.get", run_idx)
assert run_idx != -1 and merge_idx != -1, "run/merge path not found"
block = src[run_idx:merge_idx]
assert "cancel_event.is_set()" in block, (
"If cancellation arrives after tokens streamed but before run_conversation returns, "
"the worker must emit/persist cancel before normal merge/save/completed handling."
)
assert "put('cancel'" in block
assert "_cleanup_ephemeral_cancelled_turn" in block or "_finalize_cancelled_turn" in block, (
"Ephemeral cancels must clean up their temporary session before returning."
)
assert "return" in block
def test_frontend_has_cancelled_and_interrupted_labels_for_apperror_fallbacks(self):
src = _read("static/messages.js")
start = src.find("source.addEventListener('apperror'")
end = src.find("source.addEventListener('warning'", start)
assert start != -1 and end != -1, "apperror handler not found"
block = src[start:end]
assert "d.type==='cancelled'" in block or 'd.type==="cancelled"' in block
assert "d.type==='interrupted'" in block or 'd.type==="interrupted"' in block
assert "Task cancelled" in block
assert "Response interrupted" in block
assert "No response from provider" in block
assert "Cancellation details" in block
assert "Interruption details" in block