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

推荐订阅源

A
About on SuperTechFans
小众软件
小众软件
WordPress大学
WordPress大学
Microsoft Azure Blog
Microsoft Azure Blog
Recent Announcements
Recent Announcements
博客园 - 三生石上(FineUI控件)
博客园_首页
N
Netflix TechBlog - Medium
IT之家
IT之家
H
Help Net Security
博客园 - 聂微东
Google DeepMind News
Google DeepMind News
罗磊的独立博客
T
Tailwind CSS Blog
F
Fortinet All Blogs
Hugging Face - Blog
Hugging Face - Blog
MongoDB | Blog
MongoDB | Blog
V
V2EX
量子位
云风的 BLOG
云风的 BLOG
爱范儿
爱范儿
博客园 - 司徒正美
The Cloudflare Blog
Engineering at Meta
Engineering at Meta

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 context assembly assertions · o...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -1592,38 +1592,32 @@ describe("diagnostics-otel service", () => {

15921592

});

15931593

await flushDiagnosticEvents();

159415941595-

const contextCall = telemetryState.tracer.startSpan.mock.calls.find(

1596-

(call) => call[0] === "openclaw.context.assembled",

1597-

);

1595+

const contextCall = startedSpanCall("openclaw.context.assembled");

1596+

const contextOptions = contextCall?.[1];

15981597

const runSpan = telemetryState.spans.find((span) => span.name === "openclaw.run");

15991598

const runSpanId = runSpan?.spanContext.mock.results[0]?.value?.spanId;

1600-

expect(contextCall?.[1]).toMatchObject({

1601-

attributes: {

1602-

"openclaw.provider": "openai",

1603-

"openclaw.model": "gpt-5.4",

1604-

"openclaw.channel": "webchat",

1605-

"openclaw.trigger": "message",

1606-

"openclaw.context.message_count": 12,

1607-

"openclaw.context.history_text_chars": 1234,

1608-

"openclaw.context.history_image_blocks": 2,

1609-

"openclaw.context.max_message_text_chars": 456,

1610-

"openclaw.context.system_prompt_chars": 789,

1611-

"openclaw.context.prompt_chars": 42,

1612-

"openclaw.context.prompt_images": 1,

1613-

"openclaw.context.token_budget": 128_000,

1614-

"openclaw.context.reserve_tokens": 4096,

1615-

},

1616-

});

1617-

expect(contextCall?.[1]).toEqual({

1618-

attributes: expect.any(Object),

1619-

startTime: expect.any(Number),

1620-

});

1599+

expect(contextOptions?.attributes?.["openclaw.provider"]).toBe("openai");

1600+

expect(contextOptions?.attributes?.["openclaw.model"]).toBe("gpt-5.4");

1601+

expect(contextOptions?.attributes?.["openclaw.channel"]).toBe("webchat");

1602+

expect(contextOptions?.attributes?.["openclaw.trigger"]).toBe("message");

1603+

expect(contextOptions?.attributes?.["openclaw.context.message_count"]).toBe(12);

1604+

expect(contextOptions?.attributes?.["openclaw.context.history_text_chars"]).toBe(1234);

1605+

expect(contextOptions?.attributes?.["openclaw.context.history_image_blocks"]).toBe(2);

1606+

expect(contextOptions?.attributes?.["openclaw.context.max_message_text_chars"]).toBe(456);

1607+

expect(contextOptions?.attributes?.["openclaw.context.system_prompt_chars"]).toBe(789);

1608+

expect(contextOptions?.attributes?.["openclaw.context.prompt_chars"]).toBe(42);

1609+

expect(contextOptions?.attributes?.["openclaw.context.prompt_images"]).toBe(1);

1610+

expect(contextOptions?.attributes?.["openclaw.context.token_budget"]).toBe(128_000);

1611+

expect(contextOptions?.attributes?.["openclaw.context.reserve_tokens"]).toBe(4096);

1612+

expect(contextOptions?.attributes).toBeTypeOf("object");

1613+

expect(contextOptions?.startTime).toBeTypeOf("number");

16211614

expect(JSON.stringify(contextCall)).not.toContain("session-key");

16221615

expect(JSON.stringify(contextCall)).not.toContain("prompt text");

1623-

expect(telemetryState.tracer.setSpanContext).toHaveBeenCalledWith(

1624-

expect.anything(),

1625-

expect.objectContaining({ traceId: TRACE_ID, spanId: runSpanId }),

1626-

);

1616+

const linkedSpanContext = telemetryState.tracer.setSpanContext.mock.calls[0]?.[1] as

1617+

| Record<string, unknown>

1618+

| undefined;

1619+

expect(linkedSpanContext?.traceId).toBe(TRACE_ID);

1620+

expect(linkedSpanContext?.spanId).toBe(runSpanId);

16271621

expect(

16281622

(contextCall?.[2] as { spanContext?: { spanId?: string } } | undefined)?.spanContext?.spanId,

16291623

).toBe(runSpanId);

@@ -1657,19 +1651,14 @@ describe("diagnostics-otel service", () => {

16571651

"openclaw.loop.count": 20,

16581652

"openclaw.loop.paired_tool": "read",

16591653

});

1660-

const loopSpanCall = telemetryState.tracer.startSpan.mock.calls.find(

1661-

(call) => call[0] === "openclaw.tool.loop",

1662-

);

1663-

expect(loopSpanCall?.[1]).toMatchObject({

1664-

attributes: {

1665-

"openclaw.toolName": "process",

1666-

"openclaw.loop.level": "critical",

1667-

"openclaw.loop.action": "block",

1668-

"openclaw.loop.detector": "known_poll_no_progress",

1669-

"openclaw.loop.count": 20,

1670-

"openclaw.loop.paired_tool": "read",

1671-

},

1672-

});

1654+

const loopSpanCall = startedSpanCall("openclaw.tool.loop");

1655+

const loopOptions = loopSpanCall?.[1];

1656+

expect(loopOptions?.attributes?.["openclaw.toolName"]).toBe("process");

1657+

expect(loopOptions?.attributes?.["openclaw.loop.level"]).toBe("critical");

1658+

expect(loopOptions?.attributes?.["openclaw.loop.action"]).toBe("block");

1659+

expect(loopOptions?.attributes?.["openclaw.loop.detector"]).toBe("known_poll_no_progress");

1660+

expect(loopOptions?.attributes?.["openclaw.loop.count"]).toBe(20);

1661+

expect(loopOptions?.attributes?.["openclaw.loop.paired_tool"]).toBe("read");

16731662

const loopSpan = telemetryState.spans.find((span) => span.name === "openclaw.tool.loop");

16741663

expect(loopSpan?.setStatus).toHaveBeenCalledWith({

16751664

code: 2,