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

推荐订阅源

月光博客
月光博客
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
阮一峰的网络日志
阮一峰的网络日志
罗磊的独立博客
T
Tailwind CSS Blog
博客园_首页
博客园 - 司徒正美
Google DeepMind News
Google DeepMind News
Hugging Face - Blog
Hugging Face - Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
V2EX
J
Java Code Geeks
量子位
D
DataBreaches.Net
MongoDB | Blog
MongoDB | Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Microsoft Azure Blog
Microsoft Azure Blog
P
Proofpoint News Feed
C
Check Point Blog
V
Visual Studio Blog
H
Help Net Security
Recent Announcements
Recent Announcements
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: clear reply directive target session matchers · ope...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -113,6 +113,28 @@ function parseInlineDirectivesForTest(body: string) {

113113

};

114114

}

115115116+

function mockCallInput(mock: { mock: { calls: unknown[][] } }, index = 0): Record<string, unknown> {

117+

const call = mock.mock.calls[index];

118+

expect(call).toBeDefined();

119+

const input = call?.[0];

120+

expect(typeof input).toBe("object");

121+

expect(input).not.toBeNull();

122+

return input as Record<string, unknown>;

123+

}

124+125+

function expectContinueResult(

126+

value: Awaited<ReturnType<typeof resolveReplyDirectives>>,

127+

fields: Record<string, unknown>,

128+

) {

129+

expect(value.kind).toBe("continue");

130+

if (value.kind !== "continue") {

131+

throw new Error(`expected continue result, got ${value.kind}`);

132+

}

133+

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

134+

expect(value.result[key as keyof typeof value.result]).toEqual(expected);

135+

}

136+

}

137+116138

async function resolveHelloWithModelDefaults(params: {

117139

defaultThinking: "off" | "low";

118140

defaultReasoning: "on";

@@ -357,36 +379,20 @@ describe("resolveReplyDirectives", () => {

357379

skillFilter: undefined,

358380

});

359381360-

expect(mocks.resolveFastModeState).toHaveBeenCalledWith(

361-

expect.objectContaining({

362-

sessionEntry: targetSessionEntry,

363-

}),

364-

);

365-

expect(mocks.createModelSelectionState).toHaveBeenCalledWith(

366-

expect.objectContaining({

367-

sessionEntry: targetSessionEntry,

368-

parentSessionKey: "target-parent",

369-

}),

370-

);

371-

expect(mocks.applyInlineDirectiveOverrides).toHaveBeenCalledWith(

372-

expect.objectContaining({

373-

sessionEntry: targetSessionEntry,

374-

}),

375-

);

376-

expect(mocks.resolveReplyExecOverrides).toHaveBeenCalledWith(

377-

expect.objectContaining({

378-

sessionEntry: targetSessionEntry,

379-

}),

382+

expect(mockCallInput(mocks.resolveFastModeState).sessionEntry).toBe(targetSessionEntry);

383+

const modelSelectionInput = mockCallInput(mocks.createModelSelectionState);

384+

expect(modelSelectionInput.sessionEntry).toBe(targetSessionEntry);

385+

expect(modelSelectionInput.parentSessionKey).toBe("target-parent");

386+

expect(mockCallInput(mocks.applyInlineDirectiveOverrides).sessionEntry).toBe(

387+

targetSessionEntry,

380388

);

381-

expect(result).toEqual({

382-

kind: "continue",

383-

result: expect.objectContaining({

384-

resolvedThinkLevel: "high",

385-

resolvedFastMode: true,

386-

resolvedVerboseLevel: "full",

387-

resolvedReasoningLevel: "high",

388-

resolvedElevatedLevel: "on",

389-

}),

389+

expect(mockCallInput(mocks.resolveReplyExecOverrides).sessionEntry).toBe(targetSessionEntry);

390+

expectContinueResult(result, {

391+

resolvedThinkLevel: "high",

392+

resolvedFastMode: true,

393+

resolvedVerboseLevel: "full",

394+

resolvedReasoningLevel: "high",

395+

resolvedElevatedLevel: "on",

390396

});

391397

});

392398

@@ -454,12 +460,9 @@ describe("resolveReplyDirectives", () => {

454460

defaultReasoning: "on",

455461

});

456462457-

expect(result).toEqual({

458-

kind: "continue",

459-

result: expect.objectContaining({

460-

resolvedThinkLevel: "off",

461-

resolvedReasoningLevel: "on",

462-

}),

463+

expectContinueResult(result, {

464+

resolvedThinkLevel: "off",

465+

resolvedReasoningLevel: "on",

463466

});

464467

expect(resolveDefaultReasoningLevel).toHaveBeenCalledOnce();

465468

});

@@ -471,12 +474,9 @@ describe("resolveReplyDirectives", () => {

471474

sessionEntry: makeSessionEntry({ thinkingLevel: "off" }),

472475

});

473476474-

expect(result).toEqual({

475-

kind: "continue",

476-

result: expect.objectContaining({

477-

resolvedThinkLevel: "off",

478-

resolvedReasoningLevel: "off",

479-

}),

477+

expectContinueResult(result, {

478+

resolvedThinkLevel: "off",

479+

resolvedReasoningLevel: "off",

480480

});

481481

expect(resolveDefaultReasoningLevel).not.toHaveBeenCalled();

482482

});

@@ -487,12 +487,9 @@ describe("resolveReplyDirectives", () => {

487487

defaultReasoning: "on",

488488

});

489489490-

expect(result).toEqual({

491-

kind: "continue",

492-

result: expect.objectContaining({

493-

resolvedThinkLevel: "low",

494-

resolvedReasoningLevel: "off",

495-

}),

490+

expectContinueResult(result, {

491+

resolvedThinkLevel: "low",

492+

resolvedReasoningLevel: "off",

496493

});

497494

expect(resolveDefaultReasoningLevel).not.toHaveBeenCalled();

498495

});

@@ -504,12 +501,9 @@ describe("resolveReplyDirectives", () => {

504501

agentCfg: { reasoningDefault: "off" },

505502

});

506503507-

expect(result).toEqual({

508-

kind: "continue",

509-

result: expect.objectContaining({

510-

resolvedThinkLevel: "off",

511-

resolvedReasoningLevel: "off",

512-

}),

504+

expectContinueResult(result, {

505+

resolvedThinkLevel: "off",

506+

resolvedReasoningLevel: "off",

513507

});

514508

expect(resolveDefaultReasoningLevel).not.toHaveBeenCalled();

515509

});

@@ -521,11 +515,8 @@ describe("resolveReplyDirectives", () => {

521515

agentCfg: { reasoningDefault: "stream" },

522516

});

523517524-

expect(result).toEqual({

525-

kind: "continue",

526-

result: expect.objectContaining({

527-

resolvedReasoningLevel: "off",

528-

}),

518+

expectContinueResult(result, {

519+

resolvedReasoningLevel: "off",

529520

});

530521

expect(resolveDefaultReasoningLevel).not.toHaveBeenCalled();

531522

});

@@ -537,11 +528,8 @@ describe("resolveReplyDirectives", () => {

537528

defaultReasoning: "on",

538529

});

539530540-

expect(result).toEqual({

541-

kind: "continue",

542-

result: expect.objectContaining({

543-

resolvedReasoningLevel: "off",

544-

}),

531+

expectContinueResult(result, {

532+

resolvedReasoningLevel: "off",

545533

});

546534

expect(resolveDefaultReasoningLevel).not.toHaveBeenCalled();

547535

});

@@ -553,11 +541,8 @@ describe("resolveReplyDirectives", () => {

553541

sessionEntry: makeSessionEntry({ reasoningLevel: "stream" }),

554542

});

555543556-

expect(result).toEqual({

557-

kind: "continue",

558-

result: expect.objectContaining({

559-

resolvedReasoningLevel: "off",

560-

}),

544+

expectContinueResult(result, {

545+

resolvedReasoningLevel: "off",

561546

});

562547

expect(resolveDefaultReasoningLevel).not.toHaveBeenCalled();

563548

});

@@ -570,11 +555,8 @@ describe("resolveReplyDirectives", () => {

570555

commandAuthorized: true,

571556

});

572557573-

expect(result).toEqual({

574-

kind: "continue",

575-

result: expect.objectContaining({

576-

resolvedReasoningLevel: "stream",

577-

}),

558+

expectContinueResult(result, {

559+

resolvedReasoningLevel: "stream",

578560

});

579561

expect(resolveDefaultReasoningLevel).not.toHaveBeenCalled();

580562

});

@@ -587,11 +569,8 @@ describe("resolveReplyDirectives", () => {

587569

ctx: { GatewayClientScopes: ["operator.admin"] },

588570

});

589571590-

expect(result).toEqual({

591-

kind: "continue",

592-

result: expect.objectContaining({

593-

resolvedReasoningLevel: "stream",

594-

}),

572+

expectContinueResult(result, {

573+

resolvedReasoningLevel: "stream",

595574

});

596575

expect(resolveDefaultReasoningLevel).not.toHaveBeenCalled();

597576

});

@@ -604,11 +583,8 @@ describe("resolveReplyDirectives", () => {

604583

commandAuthorized: true,

605584

});

606585607-

expect(result).toEqual({

608-

kind: "continue",

609-

result: expect.objectContaining({

610-

resolvedReasoningLevel: "stream",

611-

}),

586+

expectContinueResult(result, {

587+

resolvedReasoningLevel: "stream",

612588

});

613589

expect(resolveDefaultReasoningLevel).not.toHaveBeenCalled();

614590

});

@@ -667,11 +643,8 @@ describe("resolveReplyDirectives", () => {

667643

skillFilter: undefined,

668644

});

669645670-

expect(result).toEqual({

671-

kind: "continue",

672-

result: expect.objectContaining({

673-

cleanedBody: "",

674-

}),

646+

expectContinueResult(result, {

647+

cleanedBody: "",

675648

});

676649

expect(sessionCtx.Body).toBe("");

677650

expect(sessionCtx.BodyForAgent).toBe("");