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

推荐订阅源

博客园_首页
J
Java Code Geeks
博客园 - 聂微东
量子位
C
Check Point Blog
T
The Blog of Author Tim Ferriss
T
Tailwind CSS Blog
G
Google Developers Blog
Google DeepMind News
Google DeepMind News
B
Blog
罗磊的独立博客
腾讯CDC
GbyAI
GbyAI
博客园 - 【当耐特】
A
About on SuperTechFans
M
MIT News - Artificial intelligence
U
Unit 42
D
Docker
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
S
SegmentFault 最新的问题
有赞技术团队
有赞技术团队

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,agent): only enforce session sendPolicy=deny ...
clawsweeper · 2026-05-03 · via Recent Commits to openclaw:main

@@ -36,6 +36,7 @@ const mocks = vi.hoisted(() => ({

3636

loadConfigReturn: {} as Record<string, unknown>,

3737

loadVoiceWakeRoutingConfig: vi.fn(),

3838

resolveVoiceWakeRouteByTrigger: vi.fn(),

39+

resolveSendPolicy: vi.fn(() => "allow"),

3940

}));

40414142

vi.mock("../session-utils.js", async () => {

@@ -128,7 +129,8 @@ vi.mock("../../infra/voicewake-routing.js", () => ({

128129

}));

129130130131

vi.mock("../../sessions/send-policy.js", () => ({

131-

resolveSendPolicy: () => "allow",

132+

resolveSendPolicy: (...args: unknown[]) =>

133+

(mocks.resolveSendPolicy as (...args: unknown[]) => unknown)(...args),

132134

}));

133135134136

vi.mock("../../utils/delivery-context.js", async () => {

@@ -410,6 +412,7 @@ describe("gateway agent handler", () => {

410412

mocks.resolveExplicitAgentSessionKey.mockReset().mockReturnValue(undefined);

411413

mocks.resolveBareResetBootstrapFileAccess.mockReset().mockReturnValue(true);

412414

mocks.listAgentIds.mockReset().mockReturnValue(["main"]);

415+

mocks.resolveSendPolicy.mockReset().mockReturnValue("allow");

413416

});

414417415418

it("preserves ACP metadata from the current stored session entry", async () => {

@@ -2792,6 +2795,53 @@ describe("gateway agent handler", () => {

27922795

);

27932796

});

279427972798+

it("allows non-delivery agent invocations when sendPolicy is deny", async () => {

2799+

mocks.agentCommand.mockClear();

2800+

primeMainAgentRun();

2801+

mocks.resolveSendPolicy.mockReturnValue("deny");

2802+2803+

const respond = await runMainAgent("smoke", "non-delivery-deny");

2804+2805+

expect(mocks.resolveSendPolicy).not.toHaveBeenCalled();

2806+

expect(respond).not.toHaveBeenCalledWith(

2807+

false,

2808+

undefined,

2809+

expect.objectContaining({ message: "send blocked by session policy" }),

2810+

);

2811+

await waitForAssertion(() => expect(mocks.agentCommand).toHaveBeenCalledTimes(1));

2812+

});

2813+2814+

it("blocks delivery agent invocations when sendPolicy is deny", async () => {

2815+

primeMainAgentRun();

2816+

mocks.resolveSendPolicy.mockReturnValue("deny");

2817+

mocks.agentCommand.mockClear();

2818+2819+

const respond = vi.fn();

2820+

await invokeAgent(

2821+

{

2822+

message: "smoke",

2823+

agentId: "main",

2824+

sessionKey: "agent:main:main",

2825+

idempotencyKey: "delivery-deny",

2826+

deliver: true,

2827+

},

2828+

{ respond, reqId: "delivery-deny" },

2829+

);

2830+2831+

expect(respond).toHaveBeenCalledWith(

2832+

false,

2833+

undefined,

2834+

expect.objectContaining({ message: "send blocked by session policy" }),

2835+

);

2836+

expect(mocks.resolveSendPolicy).toHaveBeenCalledWith(

2837+

expect.objectContaining({

2838+

entry: expect.objectContaining({ sessionId: "existing-session-id" }),

2839+

sessionKey: "agent:main:main",

2840+

}),

2841+

);

2842+

expect(mocks.agentCommand).not.toHaveBeenCalled();

2843+

});

2844+27952845

describe("groupId session-entry persistence validation", () => {

27962846

async function captureGroupEntryFields(

27972847

sessionKey: string,