deer-flow/frontend/tests/unit/core/projects/documents-api.test.ts
Zeren Wang a58ab484a6
feat(projects): Projects MVP Phase 2 — instructions, document shelf, promotion, trash (#5443)
* 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.
2026-09-16 18:46:18 +08:00

402 lines
12 KiB
TypeScript

import { beforeEach, describe, expect, it, rs } from "@rstest/core";
rs.mock("@/core/api/fetcher", () => ({
fetch: rs.fn(),
}));
rs.mock("@/core/config", () => ({
getBackendBaseURL: () => "/backend",
}));
import { fetch as fetcher } from "@/core/api/fetcher";
import { ARTIFACT_PREVIEW_MAX_BYTES } from "@/core/artifacts/loader";
import {
attachProjectDocument,
deleteProjectDocument,
fetchProjectDocumentPreview,
listProjectDocuments,
listProjectThreadFiles,
ProjectDocumentContentMissingError,
promoteThreadFile,
uploadProjectDocument,
} from "@/core/projects/api";
const mockedFetch = rs.mocked(fetcher);
const SAMPLE_DOCUMENT = {
id: "doc-1",
name: "q3-report.pdf",
size_bytes: 1024,
sha256: "abc123",
content_missing: false,
source_thread_id: null,
source_kind: null,
source_name: null,
created_at: "2026-09-10T00:00:00+00:00",
updated_at: "2026-09-10T00:00:00+00:00",
};
function jsonResponse(status: number, body: unknown): Response {
return new Response(JSON.stringify(body), { status });
}
function lastCall(): { url: string; init: RequestInit } {
const [url, init] = mockedFetch.mock.calls.at(-1) as [string, RequestInit];
return { url, init };
}
beforeEach(() => {
mockedFetch.mockReset();
});
describe("project documents api", () => {
it("lists documents with limit/offset query params", async () => {
mockedFetch.mockResolvedValueOnce(
jsonResponse(200, {
documents: [SAMPLE_DOCUMENT],
total: 1,
limit: 50,
offset: 10,
}),
);
const result = await listProjectDocuments("proj-1", {
limit: 50,
offset: 10,
});
const { url, init } = lastCall();
expect(url).toBe(
"/backend/api/projects/proj-1/documents?limit=50&offset=10",
);
expect(init.method).toBe("GET");
expect(result.total).toBe(1);
expect(result.documents[0]?.id).toBe("doc-1");
});
it("lists documents without query params when none given", async () => {
mockedFetch.mockResolvedValueOnce(
jsonResponse(200, { documents: [], total: 0, limit: 100, offset: 0 }),
);
await listProjectDocuments("proj-1");
expect(lastCall().url).toBe("/backend/api/projects/proj-1/documents");
});
it("encodes the project id in document URLs", async () => {
mockedFetch.mockResolvedValueOnce(
jsonResponse(200, { documents: [], total: 0, limit: 100, offset: 0 }),
);
await listProjectDocuments("proj/ect 1");
expect(lastCall().url).toBe(
"/backend/api/projects/proj%2Fect%201/documents",
);
});
it("uploads exactly one multipart file plus an optional name", async () => {
mockedFetch.mockResolvedValueOnce(
jsonResponse(201, { document: SAMPLE_DOCUMENT, deduplicated: false }),
);
const file = new File(["hello"], "notes.txt", { type: "text/plain" });
const result = await uploadProjectDocument("proj-1", {
file,
name: "renamed.txt",
});
const { url, init } = lastCall();
expect(url).toBe("/backend/api/projects/proj-1/documents");
expect(init.method).toBe("POST");
const body = init.body as FormData;
expect(body).toBeInstanceOf(FormData);
expect((body.get("file") as File).name).toBe("notes.txt");
expect(body.get("name")).toBe("renamed.txt");
// JSON content type must not be set; the browser sets the multipart boundary.
expect(
(init.headers as Record<string, string> | undefined)?.["Content-Type"],
).toBeUndefined();
expect(result.deduplicated).toBe(false);
});
it("omits the name field when not provided", async () => {
mockedFetch.mockResolvedValueOnce(
jsonResponse(200, { document: SAMPLE_DOCUMENT, deduplicated: true }),
);
const file = new File(["hello"], "notes.txt");
const result = await uploadProjectDocument("proj-1", { file });
const body = lastCall().init.body as FormData;
expect(body.get("name")).toBeNull();
// A 200 dedup hit is success, not an error.
expect(result.deduplicated).toBe(true);
});
it("promotes a thread file with the frozen from-thread body", async () => {
mockedFetch.mockResolvedValueOnce(
jsonResponse(201, { document: SAMPLE_DOCUMENT, deduplicated: false }),
);
await promoteThreadFile("proj-1", {
thread_id: "thread-1",
kind: "output",
name: "report.md",
shelf_name: "Q3 report.md",
});
const { url, init } = lastCall();
expect(url).toBe("/backend/api/projects/proj-1/documents/from-thread");
expect(init.method).toBe("POST");
expect(JSON.parse(init.body as string)).toEqual({
thread_id: "thread-1",
kind: "output",
name: "report.md",
shelf_name: "Q3 report.md",
});
});
it("omits shelf_name from the from-thread body when undefined", async () => {
mockedFetch.mockResolvedValueOnce(
jsonResponse(200, { document: SAMPLE_DOCUMENT, deduplicated: true }),
);
await promoteThreadFile("proj-1", {
thread_id: "thread-1",
kind: "upload",
name: "input.csv",
});
expect(JSON.parse(lastCall().init.body as string)).toEqual({
thread_id: "thread-1",
kind: "upload",
name: "input.csv",
});
});
it("attaches a document to a thread and returns the upload descriptor", async () => {
const attached = {
filename: "q3-report.pdf",
size_bytes: 1024,
virtual_path: "/mnt/user-data/uploads/q3-report.pdf",
artifact_url:
"/api/threads/thread-1/artifacts/mnt/user-data/uploads/q3-report.pdf",
};
mockedFetch.mockResolvedValueOnce(jsonResponse(200, attached));
const result = await attachProjectDocument("proj-1", "doc 1", "thread/1");
const { url, init } = lastCall();
expect(url).toBe(
"/backend/api/projects/proj-1/documents/doc%201/attach-to-thread/thread%2F1",
);
expect(init.method).toBe("POST");
expect(result).toEqual(attached);
});
it("deletes a document with an encoded path", async () => {
mockedFetch.mockResolvedValueOnce(new Response(null, { status: 204 }));
await deleteProjectDocument("proj-1", "doc 1");
const { url, init } = lastCall();
expect(url).toBe("/backend/api/projects/proj-1/documents/doc%201");
expect(init.method).toBe("DELETE");
});
it("lists thread files with cursor and limit params", async () => {
mockedFetch.mockResolvedValueOnce(
jsonResponse(200, { groups: [], next_offset: null, truncated: false }),
);
const result = await listProjectThreadFiles("proj-1", {
offset: 20,
thread_limit: 10,
file_limit: 25,
});
const { url, init } = lastCall();
expect(url).toBe(
"/backend/api/projects/proj-1/thread-files?offset=20&thread_limit=10&file_limit=25",
);
expect(init.method).toBe("GET");
expect(result.next_offset).toBeNull();
});
it("surfaces the server error detail", async () => {
mockedFetch.mockResolvedValueOnce(
jsonResponse(404, { detail: "Project document not found" }),
);
await expect(deleteProjectDocument("proj-1", "doc-x")).rejects.toThrow(
"Project document not found",
);
});
it("falls back to a generic message for non-JSON errors", async () => {
mockedFetch.mockResolvedValueOnce(
new Response("gateway down", { status: 502 }),
);
await expect(listProjectDocuments("proj-1")).rejects.toThrow(
"Failed to load project documents.",
);
});
});
describe("fetchProjectDocumentPreview", () => {
it("requests a bounded byte range and marks a 206 text prefix truncated", async () => {
mockedFetch.mockResolvedValueOnce(
new Response("# partial", {
status: 206,
headers: {
"Content-Type": "text/markdown; charset=utf-8",
"Content-Range": `bytes 0-${ARTIFACT_PREVIEW_MAX_BYTES - 1}/${ARTIFACT_PREVIEW_MAX_BYTES * 50}`,
},
}),
);
const preview = await fetchProjectDocumentPreview("proj-1", "doc-1");
const { url, init } = lastCall();
expect(url).toBe("/backend/api/projects/proj-1/documents/doc-1/content");
expect((init.headers as Record<string, string>).Range).toBe(
`bytes=0-${ARTIFACT_PREVIEW_MAX_BYTES - 1}`,
);
expect(preview).toEqual({
kind: "text",
content: "# partial",
truncated: true,
previewBytes: 9,
totalBytes: ARTIFACT_PREVIEW_MAX_BYTES * 50,
});
});
it("marks an untruncated 200 with an oversized Content-Length truncated", async () => {
// The content endpoint normally honors Range (Starlette FileResponse);
// if a proxy strips it, the advertised length still forces the
// truncation UI instead of rendering a prefix as the whole file.
mockedFetch.mockResolvedValueOnce(
new Response("plain body", {
status: 200,
headers: {
"Content-Type": "text/plain",
"Content-Length": String(ARTIFACT_PREVIEW_MAX_BYTES * 50),
},
}),
);
const preview = await fetchProjectDocumentPreview("proj-1", "doc-1");
expect((lastCall().init.headers as Record<string, string>).Range).toBe(
`bytes=0-${ARTIFACT_PREVIEW_MAX_BYTES - 1}`,
);
expect(preview.kind).toBe("text");
expect(preview.kind === "text" && preview.truncated).toBe(true);
});
it("returns a small 200 text document whole", async () => {
mockedFetch.mockResolvedValueOnce(
new Response("hello", {
status: 200,
headers: {
"Content-Type": "text/plain",
"Content-Length": "5",
},
}),
);
const preview = await fetchProjectDocumentPreview("proj-1", "doc-1");
expect(preview).toEqual({
kind: "text",
content: "hello",
truncated: false,
previewBytes: 5,
totalBytes: 5,
});
});
it("routes a PDF to its own preview kind without decoding it", async () => {
const response = new Response("%PDF-1.7 binary", {
status: 200,
headers: { "Content-Type": "application/pdf" },
});
const textSpy = rs.spyOn(response, "text");
const arrayBufferSpy = rs.spyOn(response, "arrayBuffer");
mockedFetch.mockResolvedValueOnce(response);
const preview = await fetchProjectDocumentPreview("proj-1", "doc-1");
expect(preview).toEqual({ kind: "pdf" });
expect(textSpy).not.toHaveBeenCalled();
expect(arrayBufferSpy).not.toHaveBeenCalled();
});
it("returns the unsupported fallback for non-viewable binary content", async () => {
const response = new Response("PK zip bytes", {
status: 200,
headers: {
"Content-Type":
"application/vnd.openxmlformats-officedocument.wordprocessingml.document",
},
});
const textSpy = rs.spyOn(response, "text");
mockedFetch.mockResolvedValueOnce(response);
const preview = await fetchProjectDocumentPreview("proj-1", "doc-1");
expect(preview).toEqual({ kind: "unsupported" });
expect(textSpy).not.toHaveBeenCalled();
});
it.each(["image/svg+xml", "application/xhtml+xml", "application/rss+xml"])(
"keeps active content (%s) out of the iframe branch",
async (contentType) => {
// The endpoint serves the XML family as an attachment; the sandboxed
// iframe would block that download and render a blank frame, so these
// must land in the unsupported fallback with its download action.
// (``text/*`` members of the family — html/xml/xsl — take the safe
// text-decode branch instead, exactly like artifact text previews.)
const response = new Response("<svg xmlns='x'><script/></svg>", {
status: 200,
headers: { "Content-Type": contentType },
});
const textSpy = rs.spyOn(response, "text");
mockedFetch.mockResolvedValueOnce(response);
const preview = await fetchProjectDocumentPreview("proj-1", "doc-1");
expect(preview).toEqual({ kind: "unsupported" });
expect(textSpy).not.toHaveBeenCalled();
},
);
it.each(["image/png", "video/mp4", "audio/mpeg"])(
"keeps passive binaries (%s) on the iframe branch",
async (contentType) => {
mockedFetch.mockResolvedValueOnce(
new Response("binary", {
status: 200,
headers: { "Content-Type": contentType },
}),
);
const preview = await fetchProjectDocumentPreview("proj-1", "doc-1");
expect(preview).toEqual({ kind: "binary" });
},
);
it("throws the content-missing error on a 409", async () => {
mockedFetch.mockResolvedValueOnce(
jsonResponse(409, { detail: { code: "content_missing" } }),
);
await expect(
fetchProjectDocumentPreview("proj-1", "doc-1"),
).rejects.toBeInstanceOf(ProjectDocumentContentMissingError);
});
});