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

推荐订阅源

量子位
Vercel News
Vercel News
Microsoft Azure Blog
Microsoft Azure Blog
爱范儿
爱范儿
N
Netflix TechBlog - Medium
Google DeepMind News
Google DeepMind News
H
Help Net Security
罗磊的独立博客
The Cloudflare Blog
J
Java Code Geeks
博客园 - 叶小钗
I
InfoQ
B
Blog
Blog — PlanetScale
Blog — PlanetScale
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
腾讯CDC
月光博客
月光博客
博客园_首页
雷峰网
雷峰网
M
MIT News - Artificial intelligence
博客园 - 【当耐特】
美团技术团队
T
The Blog of Author Tim Ferriss
博客园 - 司徒正美

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: tighten task registry store assertions · openclaw/o...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -21,7 +21,10 @@ import type { TaskRecord } from "./task-registry.types.js";

21212222

const ORIGINAL_STATE_DIR = process.env.OPENCLAW_STATE_DIR;

232324-

function requireFirstUpsertParams(upsertTaskWithDeliveryState: ReturnType<typeof vi.fn>): unknown {

24+

function requireFirstUpsertParams(upsertTaskWithDeliveryState: ReturnType<typeof vi.fn>): {

25+

task?: { taskId?: string };

26+

deliveryState?: { lastNotifiedEventAt?: number };

27+

} {

2528

const params = upsertTaskWithDeliveryState.mock.calls[0]?.[0];

2629

if (!params) {

2730

throw new Error("expected task upsert params");

@@ -73,10 +76,9 @@ describe("task-registry store runtime", () => {

7376

},

7477

});

757876-

expect(findTaskByRunId("run-restored")).toMatchObject({

77-

taskId: "task-restored",

78-

task: "Restored task",

79-

});

79+

const restored = findTaskByRunId("run-restored");

80+

expect(restored?.taskId).toBe("task-restored");

81+

expect(restored?.task).toBe("Restored task");

8082

expect(loadSnapshot).toHaveBeenCalledTimes(1);

81838284

createTaskRecord({

@@ -115,11 +117,10 @@ describe("task-registry store runtime", () => {

115117

},

116118

});

117119118-

expect(findTaskByRunId("run-restored")).toMatchObject({

119-

runId: "run-restored",

120-

taskId: "task-restored",

121-

task: "Restored task",

122-

});

120+

const restored = findTaskByRunId("run-restored");

121+

expect(restored?.runId).toBe("run-restored");

122+

expect(restored?.taskId).toBe("task-restored");

123+

expect(restored?.task).toBe("Restored task");

123124

const created = createTaskRecord({

124125

runtime: "acp",

125126

ownerKey: "agent:main:main",

@@ -133,18 +134,26 @@ describe("task-registry store runtime", () => {

133134

expect(deleteTaskRecordById(created.taskId)).toBe(true);

134135135136

expect(events.map((event) => event.kind)).toEqual(["restored", "upserted", "deleted"]);

136-

expect(events[0]).toMatchObject({

137-

kind: "restored",

138-

tasks: [expect.objectContaining({ taskId: "task-restored" })],

139-

});

140-

expect(events[1]).toMatchObject({

141-

kind: "upserted",

142-

task: expect.objectContaining({ taskId: created.taskId }),

143-

});

144-

expect(events[2]).toMatchObject({

145-

kind: "deleted",

146-

taskId: created.taskId,

147-

});

137+

const restoredEvent = events[0];

138+

expect(restoredEvent?.kind).toBe("restored");

139+

if (restoredEvent?.kind !== "restored") {

140+

throw new Error("Expected restored observer event");

141+

}

142+

expect(restoredEvent.tasks.map((task) => task.taskId)).toEqual(["task-restored"]);

143+144+

const upsertedEvent = events[1];

145+

expect(upsertedEvent?.kind).toBe("upserted");

146+

if (upsertedEvent?.kind !== "upserted") {

147+

throw new Error("Expected upserted observer event");

148+

}

149+

expect(upsertedEvent.task.taskId).toBe(created.taskId);

150+151+

const deletedEvent = events[2];

152+

expect(deletedEvent?.kind).toBe("deleted");

153+

if (deletedEvent?.kind !== "deleted") {

154+

throw new Error("Expected deleted observer event");

155+

}

156+

expect(deletedEvent.taskId).toBe(created.taskId);

148157

});

149158150159

it("uses atomic task-plus-delivery store methods when available", async () => {

@@ -182,11 +191,7 @@ describe("task-registry store runtime", () => {

182191

expect(deleteTaskRecordById(created.taskId)).toBe(true);

183192184193

expect(upsertTaskWithDeliveryState).toHaveBeenCalled();

185-

expect(requireFirstUpsertParams(upsertTaskWithDeliveryState)).toMatchObject({

186-

task: expect.objectContaining({

187-

taskId: created.taskId,

188-

}),

189-

});

194+

expect(requireFirstUpsertParams(upsertTaskWithDeliveryState).task?.taskId).toBe(created.taskId);

190195

expect(

191196

upsertTaskWithDeliveryState.mock.calls.some((call) => {

192197

const params = call[0] as { deliveryState?: { lastNotifiedEventAt?: number } };

@@ -211,11 +216,10 @@ describe("task-registry store runtime", () => {

211216212217

resetTaskRegistryForTests({ persist: false });

213218214-

expect(findTaskByRunId("run-sqlite")).toMatchObject({

215-

taskId: created.taskId,

216-

sourceId: "job-123",

217-

task: "Run nightly cron",

218-

});

219+

const restored = findTaskByRunId("run-sqlite");

220+

expect(restored?.taskId).toBe(created.taskId);

221+

expect(restored?.sourceId).toBe("job-123");

222+

expect(restored?.task).toBe("Run nightly cron");

219223

});

220224221225

it("persists parentFlowId with task rows", () => {

@@ -238,10 +242,9 @@ describe("task-registry store runtime", () => {

238242239243

resetTaskRegistryForTests({ persist: false });

240244241-

expect(findTaskByRunId("run-flow-linked")).toMatchObject({

242-

taskId: created.taskId,

243-

parentFlowId: flow.flowId,

244-

});

245+

const restored = findTaskByRunId("run-flow-linked");

246+

expect(restored?.taskId).toBe(created.taskId);

247+

expect(restored?.parentFlowId).toBe(flow.flowId);

245248

});

246249247250

it("preserves requesterSessionKey when it differs from ownerKey across sqlite restore", () => {

@@ -260,12 +263,11 @@ describe("task-registry store runtime", () => {

260263261264

resetTaskRegistryForTests({ persist: false });

262265263-

expect(findTaskByRunId("run-requester-session-restore")).toMatchObject({

264-

taskId: created.taskId,

265-

requesterSessionKey: "agent:main:workspace:channel:C1234567890",

266-

ownerKey: "agent:main:main",

267-

childSessionKey: "agent:main:workspace:channel:C1234567890",

268-

});

266+

const restored = findTaskByRunId("run-requester-session-restore");

267+

expect(restored?.taskId).toBe(created.taskId);

268+

expect(restored?.requesterSessionKey).toBe("agent:main:workspace:channel:C1234567890");

269+

expect(restored?.ownerKey).toBe("agent:main:main");

270+

expect(restored?.childSessionKey).toBe("agent:main:workspace:channel:C1234567890");

269271

});

270272271273

it("preserves taskKind across sqlite restore", () => {

@@ -284,11 +286,10 @@ describe("task-registry store runtime", () => {

284286285287

resetTaskRegistryForTests({ persist: false });

286288287-

expect(findTaskByRunId("run-task-kind-restore")).toMatchObject({

288-

taskId: created.taskId,

289-

taskKind: "video_generation",

290-

runId: "run-task-kind-restore",

291-

});

289+

const restored = findTaskByRunId("run-task-kind-restore");

290+

expect(restored?.taskId).toBe(created.taskId);

291+

expect(restored?.taskKind).toBe("video_generation");

292+

expect(restored?.runId).toBe("run-task-kind-restore");

292293

});

293294294295

it("hardens the sqlite task store directory and file modes", async () => {

@@ -392,13 +393,12 @@ describe("task-registry store runtime", () => {

392393393394

resetTaskRegistryForTests({ persist: false });

394395395-

expect(findTaskByRunId("legacy-cron-run")).toMatchObject({

396-

taskId: "legacy-cron-task",

397-

ownerKey: "system:cron:nightly-digest",

398-

scopeKind: "system",

399-

deliveryStatus: "not_applicable",

400-

notifyPolicy: "silent",

401-

});

396+

const restored = findTaskByRunId("legacy-cron-run");

397+

expect(restored?.taskId).toBe("legacy-cron-task");

398+

expect(restored?.ownerKey).toBe("system:cron:nightly-digest");

399+

expect(restored?.scopeKind).toBe("system");

400+

expect(restored?.deliveryStatus).toBe("not_applicable");

401+

expect(restored?.notifyPolicy).toBe("silent");

402402

},

403403

);

404404

});

@@ -473,23 +473,19 @@ describe("task-registry store runtime", () => {

473473474474

resetTaskRegistryForTests({ persist: false });

475475476-

expect(

477-

markTaskLostById({

478-

taskId: "legacy-session-task",

479-

endedAt: 200,

480-

lastEventAt: 200,

481-

error: "session missing",

482-

}),

483-

).toMatchObject({

484-

taskId: "legacy-session-task",

485-

status: "lost",

486-

error: "session missing",

487-

});

488-

expect(findTaskByRunId("legacy-session-run")).toMatchObject({

476+

const lost = markTaskLostById({

489477

taskId: "legacy-session-task",

490-

status: "lost",

478+

endedAt: 200,

479+

lastEventAt: 200,

491480

error: "session missing",

492481

});

482+

expect(lost?.taskId).toBe("legacy-session-task");

483+

expect(lost?.status).toBe("lost");

484+

expect(lost?.error).toBe("session missing");

485+

const restored = findTaskByRunId("legacy-session-run");

486+

expect(restored?.taskId).toBe("legacy-session-task");

487+

expect(restored?.status).toBe("lost");

488+

expect(restored?.error).toBe("session missing");

493489

},

494490

);

495491

});