mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-09-19 19:16:17 +00:00
* feat(projects): Projects MVP Phase 2 — instructions, document shelf, promotion, trash Implements docs/superpowers/specs/2026-09-12-projects-mvp-phase2-design.md (issue #5160, tracker #5129) in the slice order of the spec's §16. Slices: - A: ProjectsConfig + write-time 422 UTF-8 byte cap; PROJECT_CONTEXT_KEY admission pinning (both server-owned sets + worker hoist); latest-only request-scoped <project> block via DynamicContextMiddleware wrap_model_call/awrap_model_call (idempotent reassembly, reserved ID prefix + marker + provenance, never persisted); journal audit fingerprints; Instructions tab. - B: ProjectDocumentRow + migration 0023; ProjectDocumentRepository with locked check-and-set; hash-qualified immutable shelf storage with Paths helpers; upload/list/content/delete-to-trash routes; project delete trashes the shelf in-transaction; request-scoped bounded <documents> index with honest count/shown + actionable overflow note; list_project_documents/read_project_document tools registered only on pinned runs; PAT allowlist + drift guards; blocking-IO anchors. - C: shared thread-upload ingestion service (uploads router refactored to parity); POST from-thread with provenance; attach-to-thread with lock-staged copy (archived source allowed); read-only thread-files view with per-group truncation reporting. - D: restore (restored/merged/not_found/no_target/content_missing; no file moves), purge (continuous row lock across unlink/delete/commit, retryable on FS errors), retention sweep (lazy + startup, 24h orphan guard, row-side reconciliation never deletes). - E: Documents tab (shelf + conversation-files browser, provenance, archived banner, content-missing rows), /workspace/trash route, sidebar entry, composer attach handoff, i18n (en-US/zh-CN), e2e mocks + specs. Review hardening folded in (10 rounds, all with tests): - force active shelf content (HTML/XML family) to download; nosniff on artifact + content responses; unified unsandboxed-iframe PDF preview (fixes the pre-existing Chromium sandbox blank in the artifact viewer) - scope document trash to the URL project under the document lock - atomic no-overwrite filename reservation for ALL ingestion (seeded claims + os.link commit with suffix retry; same-name re-upload now unique-names instead of replacing); hidden staging only, no visible placeholders; lease cleanup on setup failure - serialize conversion under the document lock with post-lock active revalidation; drain locked filesystem work on cancellation; preserve bytes when an insert's commit state is uncertain (including trashed rows) - original-integrity checks before serving text or cached conversions; content_missing surfaced in list responses (UI reads the flag, no 409-probe); downloads always serve original bytes - bounded streaming document reads with cached char counts; shelf limits declared in middleware release identity - thread-root confinement for from-thread sources; config fallback rejects fractional/infinite values; composer counts staged attachments; pending attachments persist until submission or removal; in-flight instruction/rename edits survive save refetches; shelf and trash pagination; conversation-file and thread-files pages stay subscribed to refetches Docs: README/README_zh, backend API.md/ARCHITECTURE.md, AGENTS.md contracts, config.example.yaml projects block. Review follow-ups (head b4807477 → this revision): - The trash retention sweep is split so repeated lazy triggers stay bounded: the indexed expiry purge still runs on every trigger (GET /api/trash/documents, POST /api/trash/purge) while the O(all rows + all files) reconciliation is throttled to one run per user per 15 minutes (process-local, per-user window). The startup sweep now runs as a background task instead of blocking gateway readiness, and shutdown awaits it (bounded). - The export scrub (stripInternalMarkers) is fence- and indentation-aware like the render path, so a pasted, fenced <project>/<documents> snippet survives markdown export while real injected blocks (never fenced) are still removed. Fence regexes moved to a dependency-free leaf module to avoid the messages↔streamdown import cycle. - The artifact viewer's PDF iframe no longer carries an added title attribute (the upstream e2e contract locates it via :not([title])), and the upstream artifact-preview spec now pins the new contract: PDFs render unsandboxed, images keep sandbox="". * fix(projects): round-2 review — cancel an overrun trash sweep, restore the PDF frame title - Shutdown cancelled only the shield around the background startup sweep, so an all-users reconciliation that outlived the 5s budget kept walking rows and files while the document repo and DB engine were disposed underneath it. The wait now lives in `_shutdown_startup_trash_sweep`, which cancels the task and drains it before worker exit: the shield keeps the wait bounded, the cancel makes it final (CancelledError lands at the sweep's next await, and `_run_startup_trash_sweep` only catches `Exception`, so nothing swallows it). - The browser-preview iframe lost `title={getFileName(filepath)}` in the previous fix round, leaving the PDF frame without an accessible name while its siblings keep theirs. Restore it (WCAG frame titles), assert it in the DOM test, and anchor the e2e on `iframe[title="report.pdf"]` instead of `iframe:not([title])`. * fix(projects): round-3 review — report the sweep's late finish, not a phantom cancel `Task.cancel()` returns False when the sweep already finished inside the window between the deadline firing and the cancel, so the shutdown log claimed a cancellation that never happened. Branch on that outcome: the warning stays for a real cancel, a late finish is logged at info, and both paths still reap the task before worker exit. * fix(projects): round-4 review — make Empty trash delete what it confirms `POST /api/trash/purge` only ran the retention sweep, and the sweep's candidate selection is age-gated, so a freshly trashed document survived "Empty trash" even though the confirmation promises that every listed document is permanently deleted. With one trashed row the route answered `{"purged": 0}` and left it in place; `GET /api/trash/documents` sweeps expired rows before listing, so the visible rows were normally ineligible for the action by construction. Empty trash now drives `purge_all_trashed`: the caller's trashed rows (`list_all_trashed`, no age filter) each go through the same guarded, row-locked `purge` as the single-document delete — bytes first, then the row, in one transaction — so a row restored mid-flight is skipped instead of force-deleted, and an unlink failure rolls that row back and answers 500 with a retryable message. Retention expiry stays where it was: the sweep's `purge_candidates` is now the only age-gated selection, and the lazy retention sweep still runs on the listing and at startup. Tests: the router suite replaces the retention-gated expectation with the reviewer's repro (fresh row purged, bytes unlinked, shelf and other users' trash untouched, a failing unlink stays retryable and 500); a blocking-I/O anchor drives the new entry point through the offload; the mocked e2e covers the action end to end; a new real-backend spec performs it against the real gateway and re-reads `GET /api/trash/documents`. README, API, ARCHITECTURE and the phase-2 design docs (en+zh) state the age-independent contract.
465 lines
14 KiB
TypeScript
465 lines
14 KiB
TypeScript
import { expect, test } from "@rstest/core";
|
|
|
|
import {
|
|
capBlockquoteNesting,
|
|
capListNesting,
|
|
capMarkdownNesting,
|
|
compactDisplayMathBlocks,
|
|
normalizeStreamdownMathMarkdown,
|
|
preprocessStreamdownMarkdown,
|
|
stripLeakedSystemTags,
|
|
} from "@/core/streamdown/preprocess";
|
|
|
|
test("capBlockquoteNesting returns normal content unchanged", () => {
|
|
const input = "# Title\n\n> a quote\n>> nested\n\nsome `code`";
|
|
expect(capBlockquoteNesting(input)).toBe(input);
|
|
});
|
|
|
|
test("capBlockquoteNesting keeps nesting at or below the cap untouched", () => {
|
|
const input = "> ".repeat(100) + "hi";
|
|
expect(capBlockquoteNesting(input)).toBe(input);
|
|
});
|
|
|
|
test("capBlockquoteNesting caps pathological nesting and preserves content", () => {
|
|
const result = capBlockquoteNesting("> ".repeat(5000) + "hi");
|
|
expect((result.match(/>/g) ?? []).length).toBe(100);
|
|
expect(result.endsWith("hi")).toBe(true);
|
|
});
|
|
|
|
test("capBlockquoteNesting handles markers without spaces", () => {
|
|
const result = capBlockquoteNesting(">".repeat(5000) + "hi");
|
|
expect((result.match(/>/g) ?? []).length).toBe(100);
|
|
expect(result.endsWith("hi")).toBe(true);
|
|
});
|
|
|
|
test("capBlockquoteNesting leaves fenced code content untouched", () => {
|
|
const literal = ">".repeat(150);
|
|
const input = `${"> ".repeat(3000)}hi\n\`\`\`text\n${literal}\n\`\`\``;
|
|
const result = capBlockquoteNesting(input);
|
|
expect(result.split("\n")[2]).toBe(literal);
|
|
});
|
|
|
|
test("capBlockquoteNesting leaves indented code blocks untouched", () => {
|
|
const literal = " " + ">".repeat(150);
|
|
const input = `${"> ".repeat(3000)}hi\n\n${literal}`;
|
|
const result = capBlockquoteNesting(input);
|
|
expect(result.split("\n")[2]).toBe(literal);
|
|
});
|
|
|
|
test("capBlockquoteNesting only rewrites pathological lines", () => {
|
|
const normal = "> normal quote";
|
|
const deep = "> ".repeat(3000) + "deep";
|
|
const result = capBlockquoteNesting(`${normal}\n${deep}\nplain`);
|
|
const lines = result.split("\n");
|
|
expect(lines[0]).toBe(normal);
|
|
expect((lines[1]?.match(/>/g) ?? []).length).toBe(100);
|
|
expect(lines[2]).toBe("plain");
|
|
});
|
|
|
|
test("capListNesting returns normally indented content unchanged", () => {
|
|
const input = "- a\n - b\n - c\n\n code continuation";
|
|
expect(capListNesting(input)).toBe(input);
|
|
});
|
|
|
|
test("capListNesting caps pathologically deep list indentation", () => {
|
|
const deep = " ".repeat(2000) + "- x";
|
|
const result = capListNesting(deep);
|
|
const indent = /^[ \t]*/.exec(result)![0];
|
|
expect(indent.length).toBe(200);
|
|
expect(result.endsWith("- x")).toBe(true);
|
|
});
|
|
|
|
test("capListNesting leaves fenced code content untouched", () => {
|
|
const literal = " ".repeat(400) + "deeply indented ascii art";
|
|
const input = `\`\`\`text\n${literal}\n\`\`\``;
|
|
expect(capListNesting(input).split("\n")[1]).toBe(literal);
|
|
});
|
|
|
|
// Outside a fence, deep indentation is capped regardless of blank-line context:
|
|
// we cannot tell an indented-code line from deeply nested list content (both can
|
|
// follow a blank line), and exempting either reopens the crash — blank-separated
|
|
// deep-indent lists otherwise blow up marked just like contiguous ones.
|
|
test("capListNesting caps deep indentation even after a blank line", () => {
|
|
const input = `- a\n\n${" ".repeat(500)}- deep`;
|
|
const lines = capListNesting(input).split("\n");
|
|
expect(/^[ \t]*/.exec(lines[2]!)![0].length).toBe(200);
|
|
});
|
|
|
|
test("capListNesting only rewrites pathological lines", () => {
|
|
const normal = " indented paragraph";
|
|
const deep = " ".repeat(500) + "- deep";
|
|
const result = capListNesting(`${normal}\n${deep}\nplain`);
|
|
const lines = result.split("\n");
|
|
expect(lines[0]).toBe(normal);
|
|
expect(/^[ \t]*/.exec(lines[1]!)![0].length).toBe(200);
|
|
expect(lines[2]).toBe("plain");
|
|
});
|
|
|
|
test("capMarkdownNesting caps both blockquote and list nesting", () => {
|
|
const input = `${"> ".repeat(3000)}quote\n${" ".repeat(500)}- item`;
|
|
const result = capMarkdownNesting(input);
|
|
const lines = result.split("\n");
|
|
expect((lines[0]?.match(/>/g) ?? []).length).toBe(100);
|
|
expect(/^[ \t]*/.exec(lines[1]!)![0].length).toBe(200);
|
|
});
|
|
|
|
test("normalizeStreamdownMathMarkdown converts inline math delimiters", () => {
|
|
expect(
|
|
normalizeStreamdownMathMarkdown("Given \\(x\\), compute \\(x^2\\)."),
|
|
).toBe("Given $x$, compute $x^2$.");
|
|
});
|
|
|
|
test("normalizeStreamdownMathMarkdown converts multiline display math delimiters", () => {
|
|
const input = [
|
|
"Before",
|
|
"\\[",
|
|
"\\begin{aligned}",
|
|
"x_t &= \\sqrt{\\bar{\\alpha}_t}x_0 + \\sqrt{1-\\bar{\\alpha}_t}\\epsilon, \\\\",
|
|
"\\hat{x}_0 &= x_t",
|
|
"\\end{aligned}",
|
|
"\\]",
|
|
"After",
|
|
].join("\n");
|
|
const expected = [
|
|
"Before",
|
|
"$$",
|
|
"\\begin{aligned} x_t &= \\sqrt{\\bar{\\alpha}_t}x_0 + \\sqrt{1-\\bar{\\alpha}_t}\\epsilon, \\\\ \\hat{x}_0 &= x_t \\end{aligned}",
|
|
"$$",
|
|
"After",
|
|
].join("\n");
|
|
expect(normalizeStreamdownMathMarkdown(input)).toBe(expected);
|
|
});
|
|
|
|
test("normalizeStreamdownMathMarkdown leaves fenced and indented code untouched", () => {
|
|
const input = [
|
|
"Text \\(x\\)",
|
|
"```tex",
|
|
"\\[",
|
|
"x^2",
|
|
"\\]",
|
|
"```",
|
|
" \\(literal\\)",
|
|
].join("\n");
|
|
const expected = [
|
|
"Text $x$",
|
|
"```tex",
|
|
"\\[",
|
|
"x^2",
|
|
"\\]",
|
|
"```",
|
|
" \\(literal\\)",
|
|
].join("\n");
|
|
expect(normalizeStreamdownMathMarkdown(input)).toBe(expected);
|
|
});
|
|
|
|
test("compactDisplayMathBlocks keeps display math as display math", () => {
|
|
const input = ["Before", "$$", "x", "=", "y", "$$", "After"].join("\n");
|
|
const expected = ["Before", "$$", "x = y", "$$", "After"].join("\n");
|
|
expect(compactDisplayMathBlocks(input)).toBe(expected);
|
|
});
|
|
|
|
test("compactDisplayMathBlocks preserves TeX comments in display math", () => {
|
|
const input = ["Before", "$$", "a % step 1", "+ b", "$$", "After"].join("\n");
|
|
expect(compactDisplayMathBlocks(input)).toBe(input);
|
|
});
|
|
|
|
test("compactDisplayMathBlocks compacts escaped percent in display math", () => {
|
|
const input = ["Before", "$$", "a \\% step 1", "+ b", "$$", "After"].join(
|
|
"\n",
|
|
);
|
|
const expected = ["Before", "$$", "a \\% step 1 + b", "$$", "After"].join(
|
|
"\n",
|
|
);
|
|
expect(compactDisplayMathBlocks(input)).toBe(expected);
|
|
});
|
|
|
|
test("compactDisplayMathBlocks leaves fenced code content untouched", () => {
|
|
const input = [
|
|
"```md",
|
|
"$$",
|
|
"x = y",
|
|
"$$",
|
|
"```",
|
|
"$$",
|
|
"a",
|
|
"=",
|
|
"b",
|
|
"$$",
|
|
].join("\n");
|
|
const expected = [
|
|
"```md",
|
|
"$$",
|
|
"x = y",
|
|
"$$",
|
|
"```",
|
|
"$$",
|
|
"a = b",
|
|
"$$",
|
|
].join("\n");
|
|
expect(compactDisplayMathBlocks(input)).toBe(expected);
|
|
});
|
|
|
|
test("preprocessStreamdownMarkdown applies only Mermaid fixes (not math)", () => {
|
|
const input = [
|
|
"Before \\(x\\)",
|
|
"```mermaid",
|
|
"graph TD",
|
|
" A -.-> B",
|
|
"```",
|
|
].join("\n");
|
|
const expected = [
|
|
"Before \\(x\\)",
|
|
"```mermaid",
|
|
"graph TD",
|
|
" A -.-> B",
|
|
"```",
|
|
].join("\n");
|
|
expect(preprocessStreamdownMarkdown(input)).toBe(expected);
|
|
});
|
|
|
|
test("normalizeStreamdownMathMarkdown preserves escaped backslash before parens", () => {
|
|
// When the backslash itself is escaped (\\), the following ( is not a math open
|
|
const input = "Use \\\\( to start inline math.";
|
|
expect(normalizeStreamdownMathMarkdown(input)).toBe(
|
|
"Use \\\\( to start inline math.",
|
|
);
|
|
});
|
|
|
|
test("normalizeStreamdownMathMarkdown preserves escaped backslash before brackets", () => {
|
|
const input = "Escape: \\\\[ is not math.";
|
|
expect(normalizeStreamdownMathMarkdown(input)).toBe(
|
|
"Escape: \\\\[ is not math.",
|
|
);
|
|
});
|
|
|
|
test("normalizeStreamdownMathMarkdown preserves delimiters inside multi-line code spans", () => {
|
|
// A backtick code span opened on line 1 should protect line 2 content
|
|
const input = ["`code span", "with \\(x\\) inside`"].join("\n");
|
|
expect(normalizeStreamdownMathMarkdown(input)).toBe(input);
|
|
});
|
|
|
|
test("normalizeStreamdownMathMarkdown preserves delimiters inside multi-backtick code spans", () => {
|
|
const input = "Use ``\\(literal\\)`` here";
|
|
expect(normalizeStreamdownMathMarkdown(input)).toBe(input);
|
|
});
|
|
|
|
test("normalizeStreamdownMathMarkdown requires matching backtick run to close code spans", () => {
|
|
const input = "Use ``\\(literal\\)` and still code`` then \\(x\\)";
|
|
const expected = "Use ``\\(literal\\)` and still code`` then $x$";
|
|
expect(normalizeStreamdownMathMarkdown(input)).toBe(expected);
|
|
});
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// stripLeakedSystemTags
|
|
// ---------------------------------------------------------------------------
|
|
|
|
test("stripLeakedSystemTags strips <memory> tags preserving content", () => {
|
|
expect(stripLeakedSystemTags("<memory>hello</memory>")).toBe("hello");
|
|
});
|
|
|
|
test("stripLeakedSystemTags strips all internal marker tags", () => {
|
|
expect(
|
|
stripLeakedSystemTags(
|
|
"<system-reminder>reminder</system-reminder> <current_date>2024</current_date>",
|
|
),
|
|
).toBe("reminder 2024");
|
|
});
|
|
|
|
test("stripLeakedSystemTags strips self-closing tags", () => {
|
|
expect(stripLeakedSystemTags("text<memory/>more")).toBe("textmore");
|
|
});
|
|
|
|
test("stripLeakedSystemTags strips tags with attributes", () => {
|
|
expect(stripLeakedSystemTags('<memory class="x">text</memory>')).toBe("text");
|
|
});
|
|
|
|
test("stripLeakedSystemTags strips project context tags with attributes", () => {
|
|
expect(
|
|
stripLeakedSystemTags(
|
|
'<project name="Roadmap">instructions</project><documents count="1" shown="1">- id=abc | a.pdf</documents>',
|
|
),
|
|
).toBe("instructions- id=abc | a.pdf");
|
|
});
|
|
|
|
test("stripLeakedSystemTags handles multiple occurrences", () => {
|
|
expect(
|
|
stripLeakedSystemTags(
|
|
"<memory>a</memory> <memory>b</memory> <memory>c</memory>",
|
|
),
|
|
).toBe("a b c");
|
|
});
|
|
|
|
test("stripLeakedSystemTags leaves fenced code content untouched", () => {
|
|
const input = [
|
|
"<memory>outside</memory>",
|
|
"```text",
|
|
"<memory>inside code</memory>",
|
|
"```",
|
|
"<memory>after</memory>",
|
|
].join("\n");
|
|
const expected = [
|
|
"outside",
|
|
"```text",
|
|
"<memory>inside code</memory>",
|
|
"```",
|
|
"after",
|
|
].join("\n");
|
|
expect(stripLeakedSystemTags(input)).toBe(expected);
|
|
});
|
|
|
|
test("stripLeakedSystemTags leaves indented code content untouched", () => {
|
|
const input = [
|
|
"<memory>outside</memory>",
|
|
" <memory>indented code</memory>",
|
|
].join("\n");
|
|
const expected = ["outside", " <memory>indented code</memory>"].join("\n");
|
|
expect(stripLeakedSystemTags(input)).toBe(expected);
|
|
});
|
|
|
|
test("stripLeakedSystemTags passes plain text unchanged", () => {
|
|
expect(stripLeakedSystemTags("plain text")).toBe("plain text");
|
|
});
|
|
|
|
test("stripLeakedSystemTags returns empty string unchanged", () => {
|
|
expect(stripLeakedSystemTags("")).toBe("");
|
|
});
|
|
|
|
test("stripLeakedSystemTags handles no tags present", () => {
|
|
const input = "normal text with **bold** and `code`";
|
|
expect(stripLeakedSystemTags(input)).toBe(input);
|
|
});
|
|
|
|
test("stripLeakedSystemTags strips <current_uploads> tag", () => {
|
|
expect(
|
|
stripLeakedSystemTags("<current_uploads>file.pdf</current_uploads>"),
|
|
).toBe("file.pdf");
|
|
});
|
|
|
|
test("stripLeakedSystemTags strips legacy <uploaded_files> tag", () => {
|
|
// Display-only backward compatibility (#4212): pre-#4174 history still
|
|
// carries <uploaded_files> blocks; the leaked-tag stripper keeps handling
|
|
// the legacy spelling so old threads do not render raw XML.
|
|
expect(
|
|
stripLeakedSystemTags("<uploaded_files>file.pdf</uploaded_files>"),
|
|
).toBe("file.pdf");
|
|
});
|
|
|
|
test("stripLeakedSystemTags strips <slash_skill_activation> tag", () => {
|
|
expect(
|
|
stripLeakedSystemTags(
|
|
"<slash_skill_activation>skill</slash_skill_activation>",
|
|
),
|
|
).toBe("skill");
|
|
});
|
|
|
|
test("stripLeakedSystemTags handles mixed tags on same line", () => {
|
|
expect(
|
|
stripLeakedSystemTags(
|
|
"<memory>a</memory><system-reminder>b</system-reminder>",
|
|
),
|
|
).toBe("ab");
|
|
});
|
|
|
|
test("stripLeakedSystemTags handles multiple fences correctly", () => {
|
|
const input = [
|
|
"<memory>a</memory>",
|
|
"```",
|
|
"<memory>inside 1</memory>",
|
|
"```",
|
|
"<memory>b</memory>",
|
|
"```",
|
|
"<memory>inside 2</memory>",
|
|
"```",
|
|
].join("\n");
|
|
const expected = [
|
|
"a",
|
|
"```",
|
|
"<memory>inside 1</memory>",
|
|
"```",
|
|
"b",
|
|
"```",
|
|
"<memory>inside 2</memory>",
|
|
"```",
|
|
].join("\n");
|
|
expect(stripLeakedSystemTags(input)).toBe(expected);
|
|
});
|
|
|
|
test("stripLeakedSystemTags preserves tags inside tilde fence with inner backtick fence", () => {
|
|
const input = [
|
|
"<memory>outside</memory>",
|
|
"~~~~",
|
|
"```",
|
|
"<memory>inside tilde</memory>",
|
|
"```",
|
|
"~~~~",
|
|
"<memory>after</memory>",
|
|
].join("\n");
|
|
const expected = [
|
|
"outside",
|
|
"~~~~",
|
|
"```",
|
|
"<memory>inside tilde</memory>",
|
|
"```",
|
|
"~~~~",
|
|
"after",
|
|
].join("\n");
|
|
expect(stripLeakedSystemTags(input)).toBe(expected);
|
|
});
|
|
|
|
test("stripLeakedSystemTags preserves tags inside 4-backtick fence with inner 3-backtick fence", () => {
|
|
const input = [
|
|
"<memory>outside</memory>",
|
|
"````",
|
|
"```",
|
|
"<memory>inside 4-backtick</memory>",
|
|
"```",
|
|
"````",
|
|
"<memory>after</memory>",
|
|
].join("\n");
|
|
const expected = [
|
|
"outside",
|
|
"````",
|
|
"```",
|
|
"<memory>inside 4-backtick</memory>",
|
|
"```",
|
|
"````",
|
|
"after",
|
|
].join("\n");
|
|
expect(stripLeakedSystemTags(input)).toBe(expected);
|
|
});
|
|
|
|
test("stripLeakedSystemTags handles backtick fence inside tilde fence with shorter tilde closing", () => {
|
|
// A 4-tilde fence containing a 3-backtick sub-fence; the closing tilde run
|
|
// is shorter (3 vs 4) so it should NOT close the fence.
|
|
const input = [
|
|
"<memory>outside</memory>",
|
|
"~~~~",
|
|
"```",
|
|
"<memory>inside</memory>",
|
|
"```",
|
|
"~~~",
|
|
].join("\n");
|
|
const expected = [
|
|
"outside",
|
|
"~~~~",
|
|
"```",
|
|
"<memory>inside</memory>",
|
|
"```",
|
|
"~~~",
|
|
].join("\n");
|
|
expect(stripLeakedSystemTags(input)).toBe(expected);
|
|
});
|
|
|
|
test("stripLeakedSystemTags strips tags after real closing fence", () => {
|
|
const input = [
|
|
"~~~~",
|
|
"<memory>inside</memory>",
|
|
"~~~~",
|
|
"<memory>after</memory>",
|
|
].join("\n");
|
|
const expected = ["~~~~", "<memory>inside</memory>", "~~~~", "after"].join(
|
|
"\n",
|
|
);
|
|
expect(stripLeakedSystemTags(input)).toBe(expected);
|
|
});
|