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

推荐订阅源

云风的 BLOG
云风的 BLOG
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
F
Fortinet All Blogs
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 叶小钗
爱范儿
爱范儿
美团技术团队
H
Hackread – Cybersecurity News, Data Breaches, AI and More
有赞技术团队
有赞技术团队
博客园_首页
T
The Blog of Author Tim Ferriss
T
Tailwind CSS Blog
V
Visual Studio Blog
Jina AI
Jina AI
博客园 - Franky
量子位
MongoDB | Blog
MongoDB | Blog
L
LangChain Blog
Apple Machine Learning Research
Apple Machine Learning Research
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
aimingoo的专栏
aimingoo的专栏
M
MIT News - Artificial intelligence

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 diagnostics timeline assertions · openclaw/...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -35,6 +35,19 @@ async function readTimeline(path: string) {

3535

.map((line) => JSON.parse(line) as Record<string, unknown>);

3636

}

373738+

function eventRecord(events: Record<string, unknown>[], index: number): Record<string, unknown> {

39+

const event = events[index];

40+

expect(event).toBeTruthy();

41+

return event;

42+

}

43+44+

function attributesRecord(event: Record<string, unknown>): Record<string, unknown> {

45+

expect(event.attributes).toBeTruthy();

46+

expect(typeof event.attributes).toBe("object");

47+

expect(Array.isArray(event.attributes)).toBe(false);

48+

return event.attributes as Record<string, unknown>;

49+

}

50+3851

afterEach(async () => {

3952

await Promise.all(tempDirs.splice(0).map((dir) => rm(dir, { recursive: true, force: true })));

4053

});

@@ -122,21 +135,18 @@ describe("diagnostics timeline", () => {

122135

);

123136124137

const [event] = await readTimeline(path);

125-

expect(event).toMatchObject({

126-

schemaVersion: "openclaw.diagnostics.v1",

127-

type: "mark",

128-

name: "gateway.ready",

129-

runId: "run-1",

130-

envName: "env-1",

131-

phase: "startup",

132-

attributes: {

133-

ok: true,

134-

count: 2,

135-

},

136-

});

138+

expect(event?.schemaVersion).toBe("openclaw.diagnostics.v1");

139+

expect(event?.type).toBe("mark");

140+

expect(event?.name).toBe("gateway.ready");

141+

expect(event?.runId).toBe("run-1");

142+

expect(event?.envName).toBe("env-1");

143+

expect(event?.phase).toBe("startup");

144+

const attributes = attributesRecord(event ?? {});

145+

expect(attributes.ok).toBe(true);

146+

expect(attributes.count).toBe(2);

137147

expect(event?.timestamp).toMatch(/^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z$/u);

138148

expect(event?.pid).toBe(process.pid);

139-

expect((event?.attributes as Record<string, unknown>).ignored).toBeUndefined();

149+

expect(attributes.ignored).toBeUndefined();

140150

});

141151142152

it("records span start and end events around successful work", async () => {

@@ -155,20 +165,18 @@ describe("diagnostics timeline", () => {

155165156166

const events = await readTimeline(path);

157167

expect(events).toHaveLength(2);

158-

expect(events[0]).toMatchObject({

159-

type: "span.start",

160-

name: "runtimeDeps.stage",

161-

phase: "startup",

162-

attributes: { pluginCount: 3 },

163-

});

164-

expect(events[1]).toMatchObject({

165-

type: "span.end",

166-

name: "runtimeDeps.stage",

167-

phase: "startup",

168-

attributes: { pluginCount: 3 },

169-

});

170-

expect(events[1]?.spanId).toBe(events[0]?.spanId);

171-

expect(events[1]?.durationMs).toBeGreaterThanOrEqual(0);

168+

const start = eventRecord(events, 0);

169+

const end = eventRecord(events, 1);

170+

expect(start.type).toBe("span.start");

171+

expect(start.name).toBe("runtimeDeps.stage");

172+

expect(start.phase).toBe("startup");

173+

expect(attributesRecord(start).pluginCount).toBe(3);

174+

expect(end.type).toBe("span.end");

175+

expect(end.name).toBe("runtimeDeps.stage");

176+

expect(end.phase).toBe("startup");

177+

expect(attributesRecord(end).pluginCount).toBe(3);

178+

expect(end.spanId).toBe(start.spanId);

179+

expect(end.durationMs).toBeGreaterThanOrEqual(0);

172180

});

173181174182

it("records span error events and rethrows failures", async () => {

@@ -186,13 +194,12 @@ describe("diagnostics timeline", () => {

186194187195

const events = await readTimeline(path);

188196

expect(events).toHaveLength(2);

189-

expect(events[1]).toMatchObject({

190-

type: "span.error",

191-

name: "plugins.load",

192-

phase: "startup",

193-

errorName: "TypeError",

194-

errorMessage: "bad plugin",

195-

});

197+

const errorEvent = eventRecord(events, 1);

198+

expect(errorEvent.type).toBe("span.error");

199+

expect(errorEvent.name).toBe("plugins.load");

200+

expect(errorEvent.phase).toBe("startup");

201+

expect(errorEvent.errorName).toBe("TypeError");

202+

expect(errorEvent.errorMessage).toBe("bad plugin");

196203

});

197204198205

it("records synchronous spans", async () => {

@@ -206,14 +213,12 @@ describe("diagnostics timeline", () => {

206213

expect(result).toBe(42);

207214

const events = await readTimeline(path);

208215

expect(events).toHaveLength(2);

209-

expect(events[0]).toMatchObject({

210-

type: "span.start",

211-

name: "plugins.metadata.scan",

212-

});

213-

expect(events[1]).toMatchObject({

214-

type: "span.end",

215-

name: "plugins.metadata.scan",

216-

});

216+

const start = eventRecord(events, 0);

217+

const end = eventRecord(events, 1);

218+

expect(start.type).toBe("span.start");

219+

expect(start.name).toBe("plugins.metadata.scan");

220+

expect(end.type).toBe("span.end");

221+

expect(end.name).toBe("plugins.metadata.scan");

217222

});

218223219224

it("lets nested spans inherit the active timeline phase and parent span", async () => {

@@ -235,27 +240,19 @@ describe("diagnostics timeline", () => {

235240

const events = await readTimeline(path);

236241

expect(events).toHaveLength(4);

237242

const [parentStart, childStart, childEnd, parentEnd] = events;

238-

expect(parentStart).toMatchObject({

239-

type: "span.start",

240-

name: "reply.run_agent_turn",

241-

phase: "agent-turn",

242-

});

243-

expect(childStart).toMatchObject({

244-

type: "span.start",

245-

name: "plugins.metadata.scan",

246-

phase: "agent-turn",

247-

parentSpanId: parentStart?.spanId,

248-

});

249-

expect(childEnd).toMatchObject({

250-

type: "span.end",

251-

name: "plugins.metadata.scan",

252-

phase: "agent-turn",

253-

parentSpanId: parentStart?.spanId,

254-

});

255-

expect(parentEnd).toMatchObject({

256-

type: "span.end",

257-

name: "reply.run_agent_turn",

258-

phase: "agent-turn",

259-

});

243+

expect(parentStart?.type).toBe("span.start");

244+

expect(parentStart?.name).toBe("reply.run_agent_turn");

245+

expect(parentStart?.phase).toBe("agent-turn");

246+

expect(childStart?.type).toBe("span.start");

247+

expect(childStart?.name).toBe("plugins.metadata.scan");

248+

expect(childStart?.phase).toBe("agent-turn");

249+

expect(childStart?.parentSpanId).toBe(parentStart?.spanId);

250+

expect(childEnd?.type).toBe("span.end");

251+

expect(childEnd?.name).toBe("plugins.metadata.scan");

252+

expect(childEnd?.phase).toBe("agent-turn");

253+

expect(childEnd?.parentSpanId).toBe(parentStart?.spanId);

254+

expect(parentEnd?.type).toBe("span.end");

255+

expect(parentEnd?.name).toBe("reply.run_agent_turn");

256+

expect(parentEnd?.phase).toBe("agent-turn");

260257

});

261258

});