deerflow2/frontend/tests/unit/core
Xinmin Zeng 503eeac788
fix(frontend): render user messages as plain text and cap blockquote nesting (#3502)
* fix(frontend): render user messages as plain text and cap blockquote nesting

User messages are typed or pasted plain text, not authored Markdown, but
they were rendered through the full Streamdown pipeline. Pasted source
files got fragmented (indented chunks become code blocks, paragraphs
collapse and lose indentation), "$...$" spans were KaTeX-ified, and a
message with thousands of nested ">" markers overflowed the call stack
in marked's recursive blockquote lexer, permanently crashing the thread
on every load.

Render human message content verbatim with pre-wrap instead, and cap
blockquote nesting at 100 levels at the Streamdown chokepoint so model
output cannot trigger the same recursion either.

Closes #3500

* fix(frontend): absorb marked lexer crashes with a render fallback boundary

Review found two gaps in the nesting cap: marked's list and blockquote
tokenizers are mutually recursive, so a list marker in front of the
quote chain ("- > > > ...") bypassed the blockquote-only regex and
still overflowed the stack; and the line-based rewrite was fence-blind,
silently truncating literal ">" runs inside code blocks.

Add an error boundary around Streamdown that renders the raw content as
plain pre-wrap text when rendering throws (retrying on the next content
change), keep the cap as a fast path for the dominant pure-">" case,
and make it skip fenced and indented code lines.
2026-06-12 16:15:40 +08:00
..
agents fix(frontend): surface backend detail when agent name check fails (#3048) 2026-05-28 18:38:45 +08:00
api fix: ignore stale run reconnect conflicts (#3284) 2026-05-28 17:29:30 +08:00
artifacts Stabilize write artifact previews (#3172) 2026-05-23 16:56:14 +08:00
auth fix(frontend): keep workspace interactive when SSR auth probe cannot reach gateway (#3493) (#3495) 2026-06-11 21:14:49 +08:00
channels feat(im): Add user-owned IM channel connections (#3487) 2026-06-12 15:24:58 +08:00
messages fix(skills): harden slash skill activation across chat channels (#3466) 2026-06-09 23:07:17 +08:00
settings enable token usage by default (#2841) 2026-05-10 22:00:57 +08:00
streamdown fix(frontend): render user messages as plain text and cap blockquote nesting (#3502) 2026-06-12 16:15:40 +08:00
tasks fix(subagent): structured subagent_status field over text parsing (#3146) (#3154) 2026-06-07 22:49:55 +08:00
threads feat(im): Add user-owned IM channel connections (#3487) 2026-06-12 15:24:58 +08:00
uploads feat(frontend): set up Vitest frontend testing infrastructure with CI workflow (#2147) 2026-04-12 18:00:43 +08:00
clipboard.test.ts fix(frontend): fallback Streamdown clipboard copy (#3397) 2026-06-09 22:09:13 +08:00
reasoning-trigger.test.ts Fix invalid HTML nesting in reasoning trigger during complex task rendering (#2382) 2026-04-21 09:41:28 +08:00