惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
MyScale Blog
MyScale Blog
U
Unit 42
M
MIT News - Artificial intelligence
小众软件
小众软件
P
Proofpoint News Feed
雷峰网
雷峰网
L
LangChain Blog
S
SegmentFault 最新的问题
腾讯CDC
F
Fortinet All Blogs
A
About on SuperTechFans
WordPress大学
WordPress大学
Vercel News
Vercel News
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
G
Google Developers Blog
大猫的无限游戏
大猫的无限游戏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
D
Docker
N
Netflix TechBlog - Medium
Apple Machine Learning Research
Apple Machine Learning Research
Recent Announcements
Recent Announcements
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
test(tasks): cover task domain view mappers (#86755) · op...
leno23 · 2026-05-31 · via Recent Commits to openclaw:main

@@ -0,0 +1,212 @@

1+

import { describe, expect, it } from "vitest";

2+3+

import type { TaskFlowRecord } from "./task-flow-registry.types.js";

4+

import type { TaskRecord, TaskRegistrySummary } from "./task-registry.types.js";

5+6+

import {

7+

mapTaskFlowDetail,

8+

mapTaskFlowView,

9+

mapTaskRunAggregateSummary,

10+

mapTaskRunDetail,

11+

mapTaskRunView,

12+

} from "./task-domain-views.js";

13+14+

function makeTask(overrides: Partial<TaskRecord> = {}): TaskRecord {

15+

return {

16+

taskId: "task-1",

17+

runtime: "subagent",

18+

requesterSessionKey: "agent:main:main",

19+

ownerKey: "agent:main:main",

20+

scopeKind: "session",

21+

task: "Investigate flaky delivery",

22+

status: "running",

23+

deliveryStatus: "pending",

24+

notifyPolicy: "done_only",

25+

createdAt: 100,

26+

...overrides,

27+

};

28+

}

29+30+

function makeFlow(overrides: Partial<TaskFlowRecord> = {}): TaskFlowRecord {

31+

return {

32+

flowId: "flow-1",

33+

syncMode: "managed",

34+

ownerKey: "agent:main:main",

35+

revision: 3,

36+

status: "waiting",

37+

notifyPolicy: "state_changes",

38+

goal: "Ship a safe fix",

39+

createdAt: 10,

40+

updatedAt: 20,

41+

...overrides,

42+

};

43+

}

44+45+

function makeSummary(overrides: Partial<TaskRegistrySummary> = {}): TaskRegistrySummary {

46+

return {

47+

total: 2,

48+

active: 1,

49+

terminal: 1,

50+

failures: 1,

51+

byStatus: {

52+

queued: 0,

53+

running: 1,

54+

succeeded: 0,

55+

failed: 1,

56+

timed_out: 0,

57+

cancelled: 0,

58+

lost: 0,

59+

},

60+

byRuntime: {

61+

subagent: 1,

62+

acp: 0,

63+

cli: 1,

64+

cron: 0,

65+

},

66+

...overrides,

67+

};

68+

}

69+70+

describe("task domain view mappers", () => {

71+

it("maps task registry summaries without sharing mutable count objects", () => {

72+

const summary = makeSummary();

73+74+

const view = mapTaskRunAggregateSummary(summary);

75+76+

expect(view).toEqual(summary);

77+

expect(view.byStatus).not.toBe(summary.byStatus);

78+

expect(view.byRuntime).not.toBe(summary.byRuntime);

79+

});

80+81+

it("maps task run records to the public task run view contract", () => {

82+

const task = makeTask({

83+

taskId: "task-full",

84+

runtime: "cli",

85+

sourceId: "source-1",

86+

requesterSessionKey: "agent:main:telegram:chat-1",

87+

ownerKey: "agent:main:main",

88+

scopeKind: "system",

89+

childSessionKey: "agent:main:subagent:child-1",

90+

parentFlowId: "flow-1",

91+

parentTaskId: "task-parent",

92+

agentId: "main",

93+

runId: "run-1",

94+

label: "diagnostics",

95+

task: "Run diagnostics",

96+

status: "failed",

97+

deliveryStatus: "failed",

98+

notifyPolicy: "state_changes",

99+

createdAt: 100,

100+

startedAt: 110,

101+

endedAt: 200,

102+

lastEventAt: 190,

103+

cleanupAfter: 1_000,

104+

error: "Command failed",

105+

progressSummary: "Checking logs",

106+

terminalSummary: "Diagnostics failed",

107+

terminalOutcome: "blocked",

108+

});

109+110+

expect(mapTaskRunView(task)).toEqual({

111+

id: "task-full",

112+

runtime: "cli",

113+

sourceId: "source-1",

114+

sessionKey: "agent:main:telegram:chat-1",

115+

ownerKey: "agent:main:main",

116+

scope: "system",

117+

childSessionKey: "agent:main:subagent:child-1",

118+

flowId: "flow-1",

119+

parentTaskId: "task-parent",

120+

agentId: "main",

121+

runId: "run-1",

122+

label: "diagnostics",

123+

title: "Run diagnostics",

124+

status: "failed",

125+

deliveryStatus: "failed",

126+

notifyPolicy: "state_changes",

127+

createdAt: 100,

128+

startedAt: 110,

129+

endedAt: 200,

130+

lastEventAt: 190,

131+

cleanupAfter: 1_000,

132+

error: "Command failed",

133+

progressSummary: "Checking logs",

134+

terminalSummary: "Diagnostics failed",

135+

terminalOutcome: "blocked",

136+

});

137+

});

138+139+

it("keeps task run detail aligned with the task run view shape", () => {

140+

const task = makeTask({ taskId: "task-detail", runId: "run-detail" });

141+142+

expect(mapTaskRunDetail(task)).toEqual(mapTaskRunView(task));

143+

});

144+145+

it("maps task flow records to public flow views without sharing requester origins", () => {

146+

const requesterOrigin = {

147+

channel: "telegram",

148+

to: "chat-1",

149+

threadId: 123,

150+

deliveryIntent: { id: "intent-1", kind: "outbound_queue" as const },

151+

};

152+

const flow = makeFlow({

153+

requesterOrigin,

154+

currentStep: "wait_for_task",

155+

cancelRequestedAt: 18,

156+

endedAt: 30,

157+

});

158+159+

const view = mapTaskFlowView(flow);

160+161+

expect(view).toEqual({

162+

id: "flow-1",

163+

ownerKey: "agent:main:main",

164+

requesterOrigin,

165+

status: "waiting",

166+

notifyPolicy: "state_changes",

167+

goal: "Ship a safe fix",

168+

currentStep: "wait_for_task",

169+

cancelRequestedAt: 18,

170+

createdAt: 10,

171+

updatedAt: 20,

172+

endedAt: 30,

173+

});

174+

expect(view.requesterOrigin).not.toBe(requesterOrigin);

175+

});

176+177+

it("maps flow details with supplied task summary and nested task views", () => {

178+

const task = makeTask({ taskId: "task-child", parentFlowId: "flow-1" });

179+

const summary = makeSummary();

180+

const flow = makeFlow({

181+

stateJson: { phase: "waiting" },

182+

waitJson: { kind: "task", taskId: "task-child" },

183+

blockedTaskId: "task-child",

184+

blockedSummary: "Waiting for child task",

185+

});

186+187+

const detail = mapTaskFlowDetail({ flow, tasks: [task], summary });

188+189+

expect(detail).toEqual({

190+

...mapTaskFlowView(flow),

191+

state: { phase: "waiting" },

192+

wait: { kind: "task", taskId: "task-child" },

193+

blocked: {

194+

taskId: "task-child",

195+

summary: "Waiting for child task",

196+

},

197+

tasks: [mapTaskRunView(task)],

198+

taskSummary: mapTaskRunAggregateSummary(summary),

199+

});

200+

expect(detail.taskSummary.byStatus).not.toBe(summary.byStatus);

201+

expect(detail.taskSummary.byRuntime).not.toBe(summary.byRuntime);

202+

});

203+204+

it("summarizes nested tasks when flow detail callers do not provide a summary", () => {

205+

const running = makeTask({ taskId: "task-running", status: "running", runtime: "subagent" });

206+

const failed = makeTask({ taskId: "task-failed", status: "failed", runtime: "cli" });

207+208+

const detail = mapTaskFlowDetail({ flow: makeFlow(), tasks: [running, failed] });

209+210+

expect(detail.taskSummary).toEqual(makeSummary());

211+

});

212+

});