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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
The GitHub Blog
The GitHub Blog
J
Java Code Geeks
Engineering at Meta
Engineering at Meta
N
Netflix TechBlog - Medium
A
About on SuperTechFans
博客园 - 三生石上(FineUI控件)
罗磊的独立博客
MongoDB | Blog
MongoDB | Blog
B
Blog RSS Feed
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
T
Tailwind CSS Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Vercel News
Vercel News
腾讯CDC
博客园 - 聂微东
The Cloudflare Blog
F
Fortinet All Blogs
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
Visual Studio Blog
Last Week in AI
Last Week in AI
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
fix(gateway): repair usage cost aggregation across agents...
openclaw-clo · 2026-06-15 · via Recent Commits to openclaw:main

@@ -37,6 +37,39 @@ import { testApi, usageHandlers } from "./usage.js";

37373838

describe("gateway usage helpers", () => {

3939

const dayMs = 24 * 60 * 60 * 1000;

40+

const costSummary = (params: { date?: string; totalTokens: number; totalCost: number }) => ({

41+

updatedAt: Date.now(),

42+

days: 1,

43+

daily: [

44+

{

45+

date: params.date ?? "2026-02-01",

46+

input: params.totalTokens,

47+

output: 0,

48+

cacheRead: 0,

49+

cacheWrite: 0,

50+

totalTokens: params.totalTokens,

51+

totalCost: params.totalCost,

52+

inputCost: params.totalCost,

53+

outputCost: 0,

54+

cacheReadCost: 0,

55+

cacheWriteCost: 0,

56+

missingCostEntries: 0,

57+

},

58+

],

59+

totals: {

60+

input: params.totalTokens,

61+

output: 0,

62+

cacheRead: 0,

63+

cacheWrite: 0,

64+

totalTokens: params.totalTokens,

65+

totalCost: params.totalCost,

66+

inputCost: params.totalCost,

67+

outputCost: 0,

68+

cacheReadCost: 0,

69+

cacheWriteCost: 0,

70+

missingCostEntries: 0,

71+

},

72+

});

40734174

function expectUtcDateRange(

4275

range: ReturnType<typeof testApi.parseDateRange>,

@@ -257,4 +290,64 @@ describe("gateway usage helpers", () => {

257290

expect.objectContaining({ agentId: "research" }),

258291

);

259292

});

293+294+

it("aggregates usage.cost only for explicit all-agent scope", async () => {

295+

vi.mocked(loadCostUsageSummaryFromCache).mockImplementation(async (params) =>

296+

params?.agentId === "opus"

297+

? costSummary({ totalTokens: 20, totalCost: 2 })

298+

: costSummary({ totalTokens: 10, totalCost: 1 }),

299+

);

300+301+

const config = {

302+

agents: { list: [{ id: "main" }, { id: "opus" }] },

303+

session: {},

304+

} as OpenClawConfig;

305+

const context = { getRuntimeConfig: () => config };

306+

const params = { startDate: "2026-02-01", endDate: "2026-02-01", mode: "utc" };

307+308+

const defaultRespond = vi.fn();

309+

await usageHandlers["usage.cost"]({

310+

respond: defaultRespond,

311+

params,

312+

context,

313+

} as unknown as Parameters<(typeof usageHandlers)["usage.cost"]>[0]);

314+315+

expect(vi.mocked(loadCostUsageSummaryFromCache)).toHaveBeenCalledTimes(1);

316+

expect(vi.mocked(loadCostUsageSummaryFromCache).mock.calls[0]?.[0]?.agentId).toBeUndefined();

317+

expect(defaultRespond.mock.calls[0]?.[1]).toMatchObject({

318+

totals: { totalTokens: 10, totalCost: 1 },

319+

});

320+321+

const aggregateRespond = vi.fn();

322+

await usageHandlers["usage.cost"]({

323+

respond: aggregateRespond,

324+

params: { ...params, agentScope: "all" },

325+

context,

326+

} as unknown as Parameters<(typeof usageHandlers)["usage.cost"]>[0]);

327+328+

expect(vi.mocked(loadCostUsageSummaryFromCache)).toHaveBeenCalledTimes(3);

329+

expect(

330+

vi.mocked(loadCostUsageSummaryFromCache)

331+

.mock.calls.slice(1)

332+

.map((call) => call[0]?.agentId),

333+

).toEqual(["main", "opus"]);

334+

expect(aggregateRespond.mock.calls[0]?.[0]).toBe(true);

335+

expect(aggregateRespond.mock.calls[0]?.[1]).toMatchObject({

336+

totals: { totalTokens: 30, totalCost: 3 },

337+

daily: [{ date: "2026-02-01", totalTokens: 30, totalCost: 3 }],

338+

});

339+340+

const mainRespond = vi.fn();

341+

await usageHandlers["usage.cost"]({

342+

respond: mainRespond,

343+

params: { ...params, agentId: "main" },

344+

context,

345+

} as unknown as Parameters<(typeof usageHandlers)["usage.cost"]>[0]);

346+347+

expect(vi.mocked(loadCostUsageSummaryFromCache)).toHaveBeenCalledTimes(4);

348+

expect(vi.mocked(loadCostUsageSummaryFromCache).mock.calls[3]?.[0]?.agentId).toBe("main");

349+

expect(mainRespond.mock.calls[0]?.[1]).toMatchObject({

350+

totals: { totalTokens: 10, totalCost: 1 },

351+

});

352+

});

260353

});