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

推荐订阅源

WordPress大学
WordPress大学
Microsoft Azure Blog
Microsoft Azure Blog
aimingoo的专栏
aimingoo的专栏
Vercel News
Vercel News
U
Unit 42
L
LangChain Blog
J
Java Code Geeks
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
The Cloudflare Blog
F
Fortinet All Blogs
小众软件
小众软件
I
InfoQ
P
Proofpoint News Feed
D
DataBreaches.Net
Martin Fowler
Martin Fowler
H
Help Net Security
T
Tailwind CSS Blog
N
Netflix TechBlog - Medium
有赞技术团队
有赞技术团队
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
B
Blog RSS Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
B
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: guard detached task runtime calls · openclaw/opencl...
steipete · 2026-05-12 · via Recent Commits to openclaw:main

@@ -58,6 +58,21 @@ function findWarningPayload(message: string): Record<string, unknown> | undefine

5858

return payload && typeof payload === "object" ? (payload as Record<string, unknown>) : undefined;

5959

}

606061+

function requireFirstCallArg(

62+

mock: { mock: { calls: readonly unknown[][] } },

63+

label: string,

64+

): Record<string, unknown> {

65+

const [call] = mock.mock.calls;

66+

if (!call) {

67+

throw new Error(`expected ${label} call`);

68+

}

69+

const [arg] = call;

70+

if (typeof arg !== "object" || arg === null || Array.isArray(arg)) {

71+

throw new Error(`expected ${label} params to be an object`);

72+

}

73+

return arg as Record<string, unknown>;

74+

}

75+6176

describe("detached-task-runtime", () => {

6277

afterEach(() => {

6378

resetDetachedTaskLifecycleRuntimeForTests();

@@ -130,32 +145,38 @@ describe("detached-task-runtime", () => {

130145

taskId: runningTask.taskId,

131146

});

132147133-

const queuedArgs = vi.mocked(fakeRuntime.createQueuedTaskRun).mock.calls[0]?.[0];

134-

expect(queuedArgs?.runId).toBe("run-queued");

135-

expect(queuedArgs?.task).toBe("Queue task");

136-

const runningArgs = vi.mocked(fakeRuntime.createRunningTaskRun).mock.calls[0]?.[0];

137-

expect(runningArgs?.runId).toBe("run-running");

138-

expect(runningArgs?.task).toBe("Run task");

139-

const startArgs = vi.mocked(fakeRuntime.startTaskRunByRunId).mock.calls[0]?.[0];

140-

expect(startArgs?.runId).toBe("run-running");

141-

expect(startArgs?.startedAt).toBe(10);

142-

const progressArgs = vi.mocked(fakeRuntime.recordTaskRunProgressByRunId).mock.calls[0]?.[0];

143-

expect(progressArgs?.runId).toBe("run-running");

144-

expect(progressArgs?.lastEventAt).toBe(20);

148+

const queuedArgs = requireFirstCallArg(vi.mocked(fakeRuntime.createQueuedTaskRun), "queued");

149+

expect(queuedArgs.runId).toBe("run-queued");

150+

expect(queuedArgs.task).toBe("Queue task");

151+

const runningArgs = requireFirstCallArg(vi.mocked(fakeRuntime.createRunningTaskRun), "running");

152+

expect(runningArgs.runId).toBe("run-running");

153+

expect(runningArgs.task).toBe("Run task");

154+

const startArgs = requireFirstCallArg(vi.mocked(fakeRuntime.startTaskRunByRunId), "start");

155+

expect(startArgs.runId).toBe("run-running");

156+

expect(startArgs.startedAt).toBe(10);

157+

const progressArgs = requireFirstCallArg(

158+

vi.mocked(fakeRuntime.recordTaskRunProgressByRunId),

159+

"progress",

160+

);

161+

expect(progressArgs.runId).toBe("run-running");

162+

expect(progressArgs.lastEventAt).toBe(20);

145163

const finalizeMock = fakeRuntime.finalizeTaskRunByRunId;

146164

if (!finalizeMock) {

147165

throw new Error("Expected fake runtime finalizer");

148166

}

149-

const finalizeArgs = vi.mocked(finalizeMock).mock.calls[0]?.[0];

150-

expect(finalizeArgs?.runId).toBe("run-running");

151-

expect(finalizeArgs?.status).toBe("succeeded");

152-

expect(finalizeArgs?.endedAt).toBe(25);

153-

const completeArgs = vi.mocked(fakeRuntime.completeTaskRunByRunId).mock.calls[0]?.[0];

154-

expect(completeArgs?.runId).toBe("run-running");

155-

expect(completeArgs?.endedAt).toBe(30);

156-

const failArgs = vi.mocked(fakeRuntime.failTaskRunByRunId).mock.calls[0]?.[0];

157-

expect(failArgs?.runId).toBe("run-running");

158-

expect(failArgs?.endedAt).toBe(40);

167+

const finalizeArgs = requireFirstCallArg(vi.mocked(finalizeMock), "finalize");

168+

expect(finalizeArgs.runId).toBe("run-running");

169+

expect(finalizeArgs.status).toBe("succeeded");

170+

expect(finalizeArgs.endedAt).toBe(25);

171+

const completeArgs = requireFirstCallArg(

172+

vi.mocked(fakeRuntime.completeTaskRunByRunId),

173+

"complete",

174+

);

175+

expect(completeArgs.runId).toBe("run-running");

176+

expect(completeArgs.endedAt).toBe(30);

177+

const failArgs = requireFirstCallArg(vi.mocked(fakeRuntime.failTaskRunByRunId), "fail");

178+

expect(failArgs.runId).toBe("run-running");

179+

expect(failArgs.endedAt).toBe(40);

159180

const deliveryArgs = vi.mocked(fakeRuntime.setDetachedTaskDeliveryStatusByRunId).mock

160181

.calls[0]?.[0];

161182

expect(deliveryArgs?.runId).toBe("run-running");

@@ -200,16 +221,14 @@ describe("detached-task-runtime", () => {

200221

finalizeTaskRunByRunId({ runId: "legacy-ok", status: "succeeded", endedAt: 10 });

201222

finalizeTaskRunByRunId({ runId: "legacy-timeout", status: "timed_out", endedAt: 20 });

202223203-

const completeArgs = completeTaskRunByRunIdSpy.mock.calls[0]?.[0] as

204-

| Parameters<typeof finalizeTaskRunByRunId>[0]

205-

| undefined;

206-

expect(completeArgs?.runId).toBe("legacy-ok");

207-

expect(completeArgs?.status).toBe("succeeded");

208-

expect(completeArgs?.endedAt).toBe(10);

209-

const failArgs = failTaskRunByRunIdSpy.mock.calls[0]?.[0];

210-

expect(failArgs?.runId).toBe("legacy-timeout");

211-

expect(failArgs?.status).toBe("timed_out");

212-

expect(failArgs?.endedAt).toBe(20);

224+

const completeArgs = requireFirstCallArg(completeTaskRunByRunIdSpy, "legacy complete");

225+

expect(completeArgs.runId).toBe("legacy-ok");

226+

expect(completeArgs.status).toBe("succeeded");

227+

expect(completeArgs.endedAt).toBe(10);

228+

const failArgs = requireFirstCallArg(failTaskRunByRunIdSpy, "legacy fail");

229+

expect(failArgs.runId).toBe("legacy-timeout");

230+

expect(failArgs.status).toBe("timed_out");

231+

expect(failArgs.endedAt).toBe(20);

213232

});

214233215234

describe("tryRecoverTaskBeforeMarkLost", () => {