feat: map codex realtime thread status
This commit is contained in:
@@ -154,3 +154,67 @@ test("POST task progress preserves Codex approval, warning, and file-change summ
|
||||
assert.equal(progress?.warnings?.[0]?.message, "检测到需要用户确认的命令执行。");
|
||||
assert.equal(progress?.fileChanges?.[0]?.path, "src/app/page.tsx");
|
||||
});
|
||||
|
||||
test("POST task progress preserves Codex thread status and realtime summaries", async () => {
|
||||
const task = await data.queueMasterAgentTask({
|
||||
taskId: "route-progress-realtime-task",
|
||||
projectId: "group-progress-test",
|
||||
taskType: "dispatch_execution",
|
||||
requestMessageId: "msg-route-progress-realtime",
|
||||
requestText: "让目标线程继续开发并回写实时状态",
|
||||
executionPrompt: "让目标线程继续开发并回写实时状态",
|
||||
requestedBy: "krisolo",
|
||||
requestedByAccount: "krisolo",
|
||||
deviceId: "mac-studio",
|
||||
targetProjectId: "master-agent",
|
||||
targetThreadId: "master-agent-thread",
|
||||
});
|
||||
await data.claimNextMasterAgentTask("mac-studio");
|
||||
|
||||
const response = await postProgress(
|
||||
new NextRequest(`http://127.0.0.1:3000/api/v1/master-agent/tasks/${task.taskId}/progress`, {
|
||||
method: "POST",
|
||||
headers: {
|
||||
"content-type": "application/json",
|
||||
"x-boss-device-token": "boss-mac-studio-token",
|
||||
},
|
||||
body: JSON.stringify({
|
||||
deviceId: "mac-studio",
|
||||
status: "running",
|
||||
executionProgress: {
|
||||
steps: [{ text: "监听 Codex realtime 事件", status: "running" }],
|
||||
threadStatus: {
|
||||
type: "active",
|
||||
activeFlags: ["waitingOnApproval", "waitingOnUserInput"],
|
||||
waitingOnApproval: true,
|
||||
waitingOnUserInput: true,
|
||||
},
|
||||
realtime: {
|
||||
status: "streaming",
|
||||
sessionId: "rt-session-1",
|
||||
version: "v2",
|
||||
transcriptRole: "assistant",
|
||||
transcriptPreview: "正在分析 Codex App Server 实时事件。",
|
||||
audioChunkCount: 1,
|
||||
itemCount: 1,
|
||||
},
|
||||
},
|
||||
}),
|
||||
}),
|
||||
{ params: Promise.resolve({ taskId: task.taskId }) },
|
||||
);
|
||||
|
||||
assert.equal(response.status, 200);
|
||||
|
||||
const state = await data.readState();
|
||||
const progress = state.projects
|
||||
.find((project) => project.id === "master-agent")
|
||||
?.messages.find((message) => message.executionProgress?.taskId === task.taskId)
|
||||
?.executionProgress;
|
||||
assert.equal(progress?.threadStatus?.type, "active");
|
||||
assert.equal(progress?.threadStatus?.waitingOnApproval, true);
|
||||
assert.equal(progress?.threadStatus?.waitingOnUserInput, true);
|
||||
assert.equal(progress?.realtime?.status, "streaming");
|
||||
assert.equal(progress?.realtime?.transcriptPreview, "正在分析 Codex App Server 实时事件。");
|
||||
assert.equal(progress?.realtime?.audioChunkCount, 1);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user