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

推荐订阅源

Google DeepMind News
Google DeepMind News
B
Blog RSS Feed
量子位
aimingoo的专栏
aimingoo的专栏
V
Visual Studio Blog
Y
Y Combinator Blog
Vercel News
Vercel News
云风的 BLOG
云风的 BLOG
宝玉的分享
宝玉的分享
Engineering at Meta
Engineering at Meta
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
Stack Overflow Blog
Stack Overflow Blog
大猫的无限游戏
大猫的无限游戏
Microsoft Security Blog
Microsoft Security Blog
B
Blog
Last Week in AI
Last Week in AI
有赞技术团队
有赞技术团队
博客园 - 聂微东
腾讯CDC
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks

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: clear runtime llm broad matchers · openclaw/opencla...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -60,6 +60,52 @@ function createLogger(): RuntimeLogger {

6060

};

6161

}

626263+

type MockCalls = {

64+

mock: { calls: unknown[][] };

65+

};

66+67+

function requireRecord(value: unknown, label: string): Record<string, unknown> {

68+

expect(typeof value, label).toBe("object");

69+

expect(value, label).not.toBeNull();

70+

return value as Record<string, unknown>;

71+

}

72+73+

function requireArray(value: unknown, label: string): unknown[] {

74+

expect(Array.isArray(value), label).toBe(true);

75+

return value as unknown[];

76+

}

77+78+

function expectFields(record: Record<string, unknown>, expected: Record<string, unknown>) {

79+

for (const [key, value] of Object.entries(expected)) {

80+

expect(record[key], key).toEqual(value);

81+

}

82+

}

83+84+

function expectSingleCallFirstArg(

85+

mock: MockCalls,

86+

expected: Record<string, unknown>,

87+

label = "mock first argument",

88+

): Record<string, unknown> {

89+

expect(mock.mock.calls).toHaveLength(1);

90+

const [firstArg] = mock.mock.calls[0] ?? [];

91+

const record = requireRecord(firstArg, label);

92+

expectFields(record, expected);

93+

return record;

94+

}

95+96+

function expectSingleLogPayload(

97+

loggerMethod: MockCalls,

98+

message: string,

99+

expected: Record<string, unknown>,

100+

): Record<string, unknown> {

101+

expect(loggerMethod.mock.calls).toHaveLength(1);

102+

const [actualMessage, payload] = loggerMethod.mock.calls[0] ?? [];

103+

expect(actualMessage).toBe(message);

104+

const payloadRecord = requireRecord(payload, "log payload");

105+

expectFields(payloadRecord, expected);

106+

return payloadRecord;

107+

}

108+63109

function primeCompletionMocks() {

64110

hoisted.prepareSimpleCompletionModelForAgent.mockResolvedValue(createPreparedModel());

65111

hoisted.resolveSimpleCompletionSelectionForAgent.mockImplementation(

@@ -112,15 +158,13 @@ describe("runtime.llm.complete", () => {

112158

purpose: "memory-maintenance",

113159

});

114160115-

expect(hoisted.prepareSimpleCompletionModelForAgent).toHaveBeenCalledWith(

116-

expect.objectContaining({

117-

cfg,

118-

agentId: "ada",

119-

allowMissingApiKeyModes: ["aws-sdk"],

120-

}),

121-

);

161+

expectSingleCallFirstArg(hoisted.prepareSimpleCompletionModelForAgent, {

162+

cfg,

163+

agentId: "ada",

164+

allowMissingApiKeyModes: ["aws-sdk"],

165+

});

122166

expect(result.agentId).toBe("ada");

123-

expect(result.audit).toMatchObject({

167+

expectFields(requireRecord(result.audit, "audit"), {

124168

caller: { kind: "context-engine", id: "context-engine.after-turn" },

125169

purpose: "memory-maintenance",

126170

sessionKey: "agent:ada:session:abc",

@@ -220,13 +264,11 @@ describe("runtime.llm.complete", () => {

220264

messages: [{ role: "user", content: "summarize" }],

221265

});

222266223-

expect(hoisted.prepareSimpleCompletionModelForAgent).toHaveBeenCalledWith(

224-

expect.objectContaining({

225-

agentId: "main",

226-

modelRef: "openai-codex/gpt-5.4-mini",

227-

}),

228-

);

229-

expect(result.audit).toMatchObject({

267+

expectSingleCallFirstArg(hoisted.prepareSimpleCompletionModelForAgent, {

268+

agentId: "main",

269+

modelRef: "openai-codex/gpt-5.4-mini",

270+

});

271+

expectFields(requireRecord(result.audit, "audit"), {

230272

caller: { kind: "context-engine", id: "context-engine.compaction" },

231273

sessionKey: "agent:main:session:abc",

232274

});

@@ -297,11 +339,9 @@ describe("runtime.llm.complete", () => {

297339

kind: "context-engine",

298340

id: "context-engine.compaction",

299341

});

300-

expect(hoisted.prepareSimpleCompletionModelForAgent).toHaveBeenCalledWith(

301-

expect.objectContaining({

302-

modelRef: "openai-codex/gpt-5.4-mini",

303-

}),

304-

);

342+

expectSingleCallFirstArg(hoisted.prepareSimpleCompletionModelForAgent, {

343+

modelRef: "openai-codex/gpt-5.4-mini",

344+

});

305345

});

306346307347

it("allows the bound context-engine agent and denies cross-agent overrides", async () => {

@@ -315,11 +355,9 @@ describe("runtime.llm.complete", () => {

315355

agentId: "main",

316356

messages: [{ role: "user", content: "summarize" }],

317357

});

318-

expect(hoisted.prepareSimpleCompletionModelForAgent).toHaveBeenCalledWith(

319-

expect.objectContaining({

320-

agentId: "main",

321-

}),

322-

);

358+

expectSingleCallFirstArg(hoisted.prepareSimpleCompletionModelForAgent, {

359+

agentId: "main",

360+

});

323361324362

await expect(

325363

runtimeContext.llm!.complete({

@@ -346,12 +384,10 @@ describe("runtime.llm.complete", () => {

346384

messages: [{ role: "user", content: "draft" }],

347385

});

348386349-

expect(hoisted.prepareSimpleCompletionModelForAgent).toHaveBeenCalledWith(

350-

expect.objectContaining({

351-

cfg,

352-

agentId: "worker",

353-

}),

354-

);

387+

expectSingleCallFirstArg(hoisted.prepareSimpleCompletionModelForAgent, {

388+

cfg,

389+

agentId: "worker",

390+

});

355391

});

356392357393

it("allows host model overrides only when explicit authority allowlists the model", async () => {

@@ -369,11 +405,9 @@ describe("runtime.llm.complete", () => {

369405

model: "openai/gpt-5.4",

370406

messages: [{ role: "user", content: "Ping" }],

371407

});

372-

expect(hoisted.prepareSimpleCompletionModelForAgent).toHaveBeenCalledWith(

373-

expect.objectContaining({

374-

modelRef: "openai/gpt-5.4",

375-

}),

376-

);

408+

expectSingleCallFirstArg(hoisted.prepareSimpleCompletionModelForAgent, {

409+

modelRef: "openai/gpt-5.4",

410+

});

377411378412

await expect(

379413

llm.complete({

@@ -404,43 +438,49 @@ describe("runtime.llm.complete", () => {

404438

purpose: "test-purpose",

405439

});

406440407-

expect(hoisted.prepareSimpleCompletionModelForAgent).toHaveBeenCalledWith(

408-

expect.objectContaining({ cfg, agentId: "main" }),

409-

);

410-

expect(hoisted.completeWithPreparedSimpleCompletionModel).toHaveBeenCalledWith(

411-

expect.objectContaining({

441+

expectSingleCallFirstArg(hoisted.prepareSimpleCompletionModelForAgent, {

442+

cfg,

443+

agentId: "main",

444+

});

445+

const completionArg = expectSingleCallFirstArg(

446+

hoisted.completeWithPreparedSimpleCompletionModel,

447+

{

412448

cfg,

413-

context: expect.objectContaining({

414-

systemPrompt: "Be terse.",

415-

messages: [expect.objectContaining({ role: "user", content: "Ping" })],

416-

}),

417-

options: expect.objectContaining({

418-

maxTokens: 64,

419-

temperature: 0.2,

420-

}),

421-

}),

449+

},

422450

);

423-

expect(result).toMatchObject({

451+

const context = requireRecord(completionArg.context, "completion context");

452+

expect(context.systemPrompt).toBe("Be terse.");

453+

const [message] = requireArray(context.messages, "completion messages");

454+

expectFields(requireRecord(message, "completion message"), {

455+

role: "user",

456+

content: "Ping",

457+

});

458+

expectFields(requireRecord(completionArg.options, "completion options"), {

459+

maxTokens: 64,

460+

temperature: 0.2,

461+

});

462+

expectFields(requireRecord(result, "completion result"), {

424463

text: "done",

425464

provider: "openai",

426465

model: "gpt-5.5",

427-

usage: {

428-

inputTokens: 11,

429-

outputTokens: 7,

430-

cacheReadTokens: 5,

431-

cacheWriteTokens: 2,

432-

totalTokens: 25,

433-

costUsd: 0.0042,

434-

},

435466

});

436-

expect(logger.info).toHaveBeenCalledWith(

467+

expectFields(requireRecord(result.usage, "completion usage"), {

468+

inputTokens: 11,

469+

outputTokens: 7,

470+

cacheReadTokens: 5,

471+

cacheWriteTokens: 2,

472+

totalTokens: 25,

473+

costUsd: 0.0042,

474+

});

475+

const logPayload = expectSingleLogPayload(

476+

logger.info as unknown as MockCalls,

437477

"plugin llm completion",

438-

expect.objectContaining({

478+

{

439479

caller: { kind: "host", id: "runtime-test" },

440480

purpose: "test-purpose",

441-

usage: expect.objectContaining({ costUsd: 0.0042 }),

442-

}),

481+

},

443482

);

483+

expectFields(requireRecord(logPayload.usage, "log usage"), { costUsd: 0.0042 });

444484

});

445485446486

it("uses scoped plugin identity and ignores caller-shaped spoofing input", async () => {

@@ -463,13 +503,10 @@ describe("runtime.llm.complete", () => {

463503

);

464504465505

expect(result.audit.caller).toEqual({ kind: "plugin", id: "trusted-plugin" });

466-

expect(logger.info).toHaveBeenCalledWith(

467-

"plugin llm completion",

468-

expect.objectContaining({

469-

caller: { kind: "plugin", id: "trusted-plugin" },

470-

purpose: "identity-test",

471-

}),

472-

);

506+

expectSingleLogPayload(logger.info as unknown as MockCalls, "plugin llm completion", {

507+

caller: { kind: "plugin", id: "trusted-plugin" },

508+

purpose: "identity-test",

509+

});

473510

});

474511475512

it("denies plugin model overrides by default", async () => {

@@ -532,11 +569,9 @@ describe("runtime.llm.complete", () => {

532569

messages: [{ role: "user", content: "Ping" }],

533570

}),

534571

);

535-

expect(hoisted.prepareSimpleCompletionModelForAgent).toHaveBeenCalledWith(

536-

expect.objectContaining({

537-

agentId: "worker",

538-

}),

539-

);

572+

expectSingleCallFirstArg(hoisted.prepareSimpleCompletionModelForAgent, {

573+

agentId: "worker",

574+

});

540575

});

541576542577

it("allows plugin model overrides only when configured and allowlisted", async () => {

@@ -565,12 +600,10 @@ describe("runtime.llm.complete", () => {

565600

messages: [{ role: "user", content: "Ping" }],

566601

}),

567602

);

568-

expect(hoisted.prepareSimpleCompletionModelForAgent).toHaveBeenCalledWith(

569-

expect.objectContaining({

570-

agentId: "main",

571-

modelRef: "openai/gpt-5.4",

572-

}),

573-

);

603+

expectSingleCallFirstArg(hoisted.prepareSimpleCompletionModelForAgent, {

604+

agentId: "main",

605+

modelRef: "openai/gpt-5.4",

606+

});

574607575608

await expect(

576609

withPluginRuntimePluginIdScope("trusted-plugin", () =>

@@ -599,9 +632,8 @@ describe("runtime.llm.complete", () => {

599632

}),

600633

).rejects.toThrow("Plugin LLM completion denied: not trusted");

601634

expect(hoisted.prepareSimpleCompletionModelForAgent).not.toHaveBeenCalled();

602-

expect(logger.warn).toHaveBeenCalledWith(

603-

"plugin llm completion denied",

604-

expect.objectContaining({ reason: "not trusted" }),

605-

);

635+

expectSingleLogPayload(logger.warn as unknown as MockCalls, "plugin llm completion denied", {

636+

reason: "not trusted",

637+

});

606638

});

607639

});