mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-07-09 16:08:31 +00:00
* feat: add assistant turn branching * fix(threads): skip workspace clone when branching from historical turn Workspace files are not checkpointed, so cloning them onto a branch rooted at an older assistant turn leaked files created in a later timeline. Restrict the best-effort workspace copy to branches taken from the latest turn; historical-turn branches now report workspace_clone_mode="skipped_historical_turn" and keep only the restored message history. * style(frontend): fix prettier formatting in e2e mock-api Collapse the branch-title normalization chain onto a single line to satisfy the frontend lint (prettier --check) CI gate. --------- Co-authored-by: Willem Jiang <willem.jiang@gmail.com>
114 lines
2.9 KiB
TypeScript
114 lines
2.9 KiB
TypeScript
import { beforeEach, expect, test, rs } from "@rstest/core";
|
|
|
|
const fetchWithAuth = rs.fn();
|
|
|
|
rs.mock("@/core/api/fetcher", () => ({
|
|
fetch: fetchWithAuth,
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fetchWithAuth.mockReset();
|
|
});
|
|
|
|
test("fetchThreadTokenUsage uses shared auth fetch without JSON GET headers", async () => {
|
|
fetchWithAuth.mockResolvedValue({
|
|
ok: true,
|
|
json: async () => ({
|
|
thread_id: "thread-1",
|
|
total_input_tokens: 3,
|
|
total_output_tokens: 4,
|
|
total_tokens: 7,
|
|
total_runs: 1,
|
|
by_model: { unknown: { tokens: 7, runs: 1 } },
|
|
by_caller: {
|
|
lead_agent: 0,
|
|
subagent: 0,
|
|
middleware: 0,
|
|
},
|
|
}),
|
|
});
|
|
|
|
const { fetchThreadTokenUsage } = await import("@/core/threads/api");
|
|
|
|
await expect(fetchThreadTokenUsage("thread-1")).resolves.toMatchObject({
|
|
thread_id: "thread-1",
|
|
total_tokens: 7,
|
|
});
|
|
|
|
expect(fetchWithAuth).toHaveBeenCalledWith(
|
|
expect.stringContaining("/api/threads/thread-1/token-usage"),
|
|
{
|
|
method: "GET",
|
|
},
|
|
);
|
|
});
|
|
|
|
test("fetchThreadTokenUsage returns null for unavailable token usage", async () => {
|
|
fetchWithAuth.mockResolvedValue({
|
|
ok: false,
|
|
status: 404,
|
|
});
|
|
|
|
const { fetchThreadTokenUsage } = await import("@/core/threads/api");
|
|
|
|
await expect(fetchThreadTokenUsage("thread-1")).resolves.toBeNull();
|
|
});
|
|
|
|
test("branchThreadFromTurn posts the selected turn ids to the gateway", async () => {
|
|
fetchWithAuth.mockResolvedValue({
|
|
ok: true,
|
|
json: async () => ({
|
|
thread_id: "branch-thread",
|
|
parent_thread_id: "thread/1",
|
|
parent_checkpoint_id: "checkpoint-2",
|
|
branched_from_message_id: "ai-2",
|
|
workspace_clone_mode: "current_thread_best_effort",
|
|
}),
|
|
});
|
|
|
|
const { branchThreadFromTurn } = await import("@/core/threads/api");
|
|
|
|
await expect(
|
|
branchThreadFromTurn("thread/1", {
|
|
messageId: "ai-2",
|
|
messageIds: ["ai-1", "ai-2"],
|
|
title: "Branch: original",
|
|
}),
|
|
).resolves.toMatchObject({
|
|
thread_id: "branch-thread",
|
|
parent_checkpoint_id: "checkpoint-2",
|
|
});
|
|
|
|
expect(fetchWithAuth).toHaveBeenCalledWith(
|
|
expect.stringContaining("/api/threads/thread%2F1/branches"),
|
|
{
|
|
method: "POST",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
},
|
|
body: JSON.stringify({
|
|
message_id: "ai-2",
|
|
message_ids: ["ai-1", "ai-2"],
|
|
title: "Branch: original",
|
|
}),
|
|
},
|
|
);
|
|
});
|
|
|
|
test("branchThreadFromTurn surfaces gateway detail on failure", async () => {
|
|
fetchWithAuth.mockResolvedValue({
|
|
ok: false,
|
|
json: async () => ({
|
|
detail: "This turn can no longer be branched from.",
|
|
}),
|
|
});
|
|
|
|
const { branchThreadFromTurn } = await import("@/core/threads/api");
|
|
|
|
await expect(
|
|
branchThreadFromTurn("thread-1", {
|
|
messageId: "ai-2",
|
|
messageIds: ["ai-2"],
|
|
}),
|
|
).rejects.toThrow("This turn can no longer be branched from.");
|
|
});
|