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

推荐订阅源

IT之家
IT之家
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
A
About on SuperTechFans
博客园 - 聂微东
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
B
Blog RSS Feed
U
Unit 42
Stack Overflow Blog
Stack Overflow Blog
Recent Announcements
Recent Announcements
雷峰网
雷峰网
罗磊的独立博客
Microsoft Security Blog
Microsoft Security Blog
Hugging Face - Blog
Hugging Face - Blog
L
LangChain Blog
人人都是产品经理
人人都是产品经理
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
H
Help Net Security
P
Proofpoint News Feed
The Cloudflare Blog
D
Docker
大猫的无限游戏
大猫的无限游戏

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
refactor: share node invoke approval test helpers · openc...
vincentkoc · 2026-06-02 · via Recent Commits to openclaw:main

@@ -51,6 +51,38 @@ async function expectNoForwardedInvoke(hasInvoke: () => boolean): Promise<void>

5151

expect(hasInvoke()).toBe(false);

5252

}

535354+

function parseInvokeParamsJSON(payload: unknown): Record<string, unknown> | null {

55+

const obj = payload as { paramsJSON?: unknown };

56+

const raw = typeof obj?.paramsJSON === "string" ? obj.paramsJSON : "";

57+

return raw ? (JSON.parse(raw) as Record<string, unknown>) : null;

58+

}

59+60+

function createInvokeParamCapture() {

61+

let invokeCount = 0;

62+

let lastInvokeParams: Record<string, unknown> | null = null;

63+

return {

64+

count: () => invokeCount,

65+

onInvoke: (payload: unknown) => {

66+

invokeCount += 1;

67+

lastInvokeParams = parseInvokeParamsJSON(payload);

68+

},

69+

waitForParams: async () => {

70+

await vi.waitFor(

71+

() => {

72+

if (!lastInvokeParams) {

73+

throw new Error("expected forwarded invoke params");

74+

}

75+

},

76+

{

77+

timeout: 5_000,

78+

interval: 50,

79+

},

80+

);

81+

return requireRecord(lastInvokeParams, "forwarded invoke params");

82+

},

83+

};

84+

}

85+5486

function requireNonEmptyString(value: string | null | undefined, label: string): string {

5587

if (!value) {

5688

throw new Error(`expected ${label}`);

@@ -126,6 +158,38 @@ async function requestAllowOnceApproval(

126158

return approvalId;

127159

}

128160161+

function approvedSystemRunParams(

162+

command: string[],

163+

rawCommand: string,

164+

runId: string,

165+

extra: Record<string, unknown> = {},

166+

): Record<string, unknown> {

167+

return {

168+

command,

169+

rawCommand,

170+

runId,

171+

approved: true,

172+

approvalDecision: "allow-once",

173+

...extra,

174+

};

175+

}

176+177+

function approvedChatSystemRunParams(

178+

context: ChatApprovalContext,

179+

runId: string,

180+

extra: Record<string, unknown> = {},

181+

): Record<string, unknown> {

182+

return approvedSystemRunParams(["echo", "chat"], "echo chat", runId, {

183+

agentId: context.agentId,

184+

sessionKey: context.sessionKey,

185+

turnSourceChannel: context.turnSourceChannel,

186+

turnSourceTo: context.turnSourceTo,

187+

turnSourceAccountId: context.turnSourceAccountId,

188+

turnSourceThreadId: context.turnSourceThreadId,

189+

...extra,

190+

});

191+

}

192+129193

type ChatApprovalContext = {

130194

agentId: string;

131195

sessionKey: string;

@@ -509,18 +573,8 @@ describe("node.invoke approval bypass", () => {

509573

});

510574511575

test("binds approvals to decision/device and blocks cross-device replay", async () => {

512-

let invokeCount = 0;

513-

let lastInvokeParams: Record<string, unknown> | null = null;

514-

const node = await connectLinuxNode((payload) => {

515-

invokeCount += 1;

516-

const obj = payload as { paramsJSON?: unknown };

517-

const raw = typeof obj?.paramsJSON === "string" ? obj.paramsJSON : "";

518-

if (!raw) {

519-

lastInvokeParams = null;

520-

return;

521-

}

522-

lastInvokeParams = JSON.parse(raw) as Record<string, unknown>;

523-

});

576+

const invokeCapture = createInvokeParamCapture();

577+

const node = await connectLinuxNode(invokeCapture.onInvoke);

524578525579

const wsApprover = await connectOperator(["operator.write", "operator.approvals"]);

526580

const wsCaller = await connectOperator(["operator.write"]);

@@ -534,50 +588,29 @@ describe("node.invoke approval bypass", () => {

534588

const invoke = await rpcReq(wsCaller, "node.invoke", {

535589

nodeId,

536590

command: "system.run",

537-

params: {

538-

command: ["echo", "hi"],

539-

rawCommand: "echo hi",

540-

runId: approvalId,

541-

approved: true,

591+

params: approvedSystemRunParams(["echo", "hi"], "echo hi", approvalId, {

542592

approvalDecision: "allow-always",

543593

injected: "nope",

544-

},

594+

}),

545595

idempotencyKey: crypto.randomUUID(),

546596

});

547597

expect(invoke.ok).toBe(true);

548-

await vi.waitFor(

549-

() => {

550-

if (!lastInvokeParams) {

551-

throw new Error("expected forwarded invoke params");

552-

}

553-

},

554-

{

555-

timeout: 5_000,

556-

interval: 50,

557-

},

558-

);

559-

const forwardedParams = requireRecord(lastInvokeParams, "forwarded invoke params");

598+

const forwardedParams = await invokeCapture.waitForParams();

560599

expect(forwardedParams["approved"]).toBe(true);

561600

expect(forwardedParams["approvalDecision"]).toBe("allow-once");

562601

expect(forwardedParams["injected"]).toBeUndefined();

563602564603

const replayApprovalId = await requestAllowOnceApproval(wsApprover, "echo hi", nodeId);

565-

const invokeCountBeforeReplay = invokeCount;

604+

const invokeCountBeforeReplay = invokeCapture.count();

566605

const replay = await rpcReq(wsOtherDevice, "node.invoke", {

567606

nodeId,

568607

command: "system.run",

569-

params: {

570-

command: ["echo", "hi"],

571-

rawCommand: "echo hi",

572-

runId: replayApprovalId,

573-

approved: true,

574-

approvalDecision: "allow-once",

575-

},

608+

params: approvedSystemRunParams(["echo", "hi"], "echo hi", replayApprovalId),

576609

idempotencyKey: crypto.randomUUID(),

577610

});

578611

expect(replay.ok).toBe(false);

579612

expect(replay.error?.message ?? "").toContain("not valid for this device");

580-

await expectNoForwardedInvoke(() => invokeCount > invokeCountBeforeReplay);

613+

await expectNoForwardedInvoke(() => invokeCapture.count() > invokeCountBeforeReplay);

581614

} finally {

582615

wsApprover.close();

583616

wsCaller.close();

@@ -587,14 +620,8 @@ describe("node.invoke approval bypass", () => {

587620

});

588621589622

test("bridges no-device chat approvals across backend reconnects only for the same turn source", async () => {

590-

let invokeCount = 0;

591-

let lastInvokeParams: Record<string, unknown> | null = null;

592-

const node = await connectLinuxNode((payload) => {

593-

invokeCount += 1;

594-

const obj = payload as { paramsJSON?: unknown };

595-

const raw = typeof obj?.paramsJSON === "string" ? obj.paramsJSON : "";

596-

lastInvokeParams = raw ? (JSON.parse(raw) as Record<string, unknown>) : null;

597-

});

623+

const invokeCapture = createInvokeParamCapture();

624+

const node = await connectLinuxNode(invokeCapture.onInvoke);

598625599626

const wsRequest = await connectTrustedBackend(["operator.write", "operator.approvals"]);

600627

const wsReplay = await connectTrustedBackend(["operator.write", "operator.approvals"]);

@@ -619,34 +646,11 @@ describe("node.invoke approval bypass", () => {

619646

const invoke = await rpcReq(wsReplay, "node.invoke", {

620647

nodeId,

621648

command: "system.run",

622-

params: {

623-

command: ["echo", "chat"],

624-

rawCommand: "echo chat",

625-

agentId: context.agentId,

626-

sessionKey: context.sessionKey,

627-

turnSourceChannel: context.turnSourceChannel,

628-

turnSourceTo: context.turnSourceTo,

629-

turnSourceAccountId: context.turnSourceAccountId,

630-

turnSourceThreadId: context.turnSourceThreadId,

631-

runId: approvalId,

632-

approved: true,

633-

approvalDecision: "allow-once",

634-

},

649+

params: approvedChatSystemRunParams(context, approvalId),

635650

idempotencyKey: crypto.randomUUID(),

636651

});

637652

expect(invoke.ok).toBe(true);

638-

await vi.waitFor(

639-

() => {

640-

if (!lastInvokeParams) {

641-

throw new Error("expected forwarded invoke params");

642-

}

643-

},

644-

{

645-

timeout: 5_000,

646-

interval: 50,

647-

},

648-

);

649-

const forwardedParams = requireRecord(lastInvokeParams, "forwarded invoke params");

653+

const forwardedParams = await invokeCapture.waitForParams();

650654

expect(forwardedParams["approved"]).toBe(true);

651655

expect(forwardedParams["approvalDecision"]).toBe("allow-once");

652656

expect(forwardedParams["turnSourceTo"]).toBeUndefined();

@@ -657,28 +661,18 @@ describe("node.invoke approval bypass", () => {

657661

nodeId,

658662

context,

659663

});

660-

const invokeCountBeforeMismatch = invokeCount;

664+

const invokeCountBeforeMismatch = invokeCapture.count();

661665

const mismatch = await rpcReq(wsReplay, "node.invoke", {

662666

nodeId,

663667

command: "system.run",

664-

params: {

665-

command: ["echo", "chat"],

666-

rawCommand: "echo chat",

667-

agentId: context.agentId,

668-

sessionKey: context.sessionKey,

669-

turnSourceChannel: context.turnSourceChannel,

668+

params: approvedChatSystemRunParams(context, mismatchApprovalId, {

670669

turnSourceTo: "telegram:67890",

671-

turnSourceAccountId: context.turnSourceAccountId,

672-

turnSourceThreadId: context.turnSourceThreadId,

673-

runId: mismatchApprovalId,

674-

approved: true,

675-

approvalDecision: "allow-once",

676-

},

670+

}),

677671

idempotencyKey: crypto.randomUUID(),

678672

});

679673

expect(mismatch.ok).toBe(false);

680674

expect(mismatch.error?.message ?? "").toContain("not valid for this client");

681-

await expectNoForwardedInvoke(() => invokeCount > invokeCountBeforeMismatch);

675+

await expectNoForwardedInvoke(() => invokeCapture.count() > invokeCountBeforeMismatch);

682676

} finally {

683677

wsRequest.close();

684678

wsReplay.close();