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

推荐订阅源

博客园 - 叶小钗
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Security Blog
Microsoft Security Blog
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
美团技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
aimingoo的专栏
aimingoo的专栏
腾讯CDC
WordPress大学
WordPress大学
Apple Machine Learning Research
Apple Machine Learning Research
F
Fortinet All Blogs
G
Google Developers Blog
MongoDB | Blog
MongoDB | Blog
Microsoft Azure Blog
Microsoft Azure Blog
小众软件
小众软件
Engineering at Meta
Engineering at Meta
博客园_首页
B
Blog RSS Feed
D
Docker
M
MIT News - Artificial intelligence
爱范儿
爱范儿
I
InfoQ

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(exec-approvals): add .catch() to expiry delivery fire...
SebTardif · 2026-05-23 · via Recent Commits to openclaw:main

@@ -10,6 +10,22 @@ import {

1010

} from "./exec-approval-forwarder.js";

1111

import type { ExecApprovalRequest } from "./exec-approvals.js";

121213+

const { mockLogError } = vi.hoisted(() => ({ mockLogError: vi.fn() }));

14+

vi.mock("../logging/subsystem.js", () => ({

15+

createSubsystemLogger: () => ({

16+

subsystem: "gateway/exec-approvals",

17+

isEnabled: () => false,

18+

trace: vi.fn(),

19+

debug: vi.fn(),

20+

info: vi.fn(),

21+

warn: vi.fn(),

22+

error: mockLogError,

23+

fatal: vi.fn(),

24+

raw: vi.fn(),

25+

child: vi.fn(),

26+

}),

27+

}));

28+1329

const baseRequest = {

1430

id: "req-1",

1531

request: {

@@ -704,4 +720,106 @@ describe("exec approval forwarder", () => {

704720705721

expect(deliver).toHaveBeenCalledTimes(1);

706722

});

723+724+

describe("expiry delivery error handling (#83106)", () => {

725+

afterEach(() => {

726+

mockLogError.mockClear();

727+

});

728+729+

it("logs per-target error when expiry delivery fails without producing unhandled rejection", async () => {

730+

vi.useFakeTimers();

731+

const deliver = vi.fn().mockResolvedValue([]);

732+

const { forwarder } = createForwarder({ cfg: TARGETS_CFG, deliver });

733+734+

await expect(forwarder.handleRequested(baseRequest)).resolves.toBe(true);

735+

await flushPendingDelivery();

736+737+

// Make the expiry delivery throw — deliverToTargets catches this

738+

// per-target and logs it, preventing an unhandled rejection.

739+

deliver.mockRejectedValue(new Error("channel delivery crashed"));

740+741+

// Trigger expiry

742+

await vi.advanceTimersByTimeAsync(baseRequest.expiresAtMs - 1000);

743+

await flushPendingDelivery();

744+745+

// deliverToTargets catches per-target errors and logs them

746+

expect(mockLogError).toHaveBeenCalledWith(expect.stringContaining("failed to deliver"));

747+

expect(mockLogError).toHaveBeenCalledWith(

748+

expect.stringContaining("channel delivery crashed"),

749+

);

750+

});

751+752+

it("cleans up pending entry after successful expiry delivery", async () => {

753+

vi.useFakeTimers();

754+

const { deliver, forwarder } = createForwarder({ cfg: TARGETS_CFG });

755+756+

await expect(forwarder.handleRequested(baseRequest)).resolves.toBe(true);

757+

await flushPendingDelivery();

758+

deliver.mockClear();

759+760+

// Trigger expiry

761+

await vi.advanceTimersByTimeAsync(baseRequest.expiresAtMs - 1000);

762+

await flushPendingDelivery();

763+764+

expect(deliver).toHaveBeenCalledTimes(1);

765+

const expiryText =

766+

(deliver.mock.calls[0]?.[0] as { payloads?: Array<{ text?: string }> }).payloads?.[0]

767+

?.text ?? "";

768+

expect(expiryText).toContain("expired");

769+770+

// After expiry, the pending entry should be cleaned up.

771+

deliver.mockClear();

772+

await forwarder.handleResolved({

773+

id: baseRequest.id,

774+

decision: "allow-once",

775+

resolvedBy: "slack:U123",

776+

ts: 7000,

777+

});

778+

// No delivery because pending entry was already deleted before delivery

779+

expect(deliver).not.toHaveBeenCalled();

780+

});

781+782+

it("deletes pending entry before starting expiry delivery", async () => {

783+

vi.useFakeTimers();

784+

let pendingDeletedDuringDelivery = false;

785+786+

const deliver = vi

787+

.fn()

788+

.mockImplementation(async (deliveryParams: { payloads?: Array<{ text?: string }> }) => {

789+

const text = deliveryParams.payloads?.[0]?.text ?? "";

790+

if (text.includes("expired")) {

791+

// During expiry delivery, try to resolve the same request.

792+

// If pending.delete happened before delivery, handleResolved

793+

// will not find the entry and will not deliver a resolved notice.

794+

const resolveResult = await forwarder.handleResolved({

795+

id: baseRequest.id,

796+

decision: "allow-once",

797+

resolvedBy: "slack:U123",

798+

ts: 7000,

799+

});

800+

// handleResolved returns void, but if it tried to deliver,

801+

// deliver would be called again. We track that below.

802+

pendingDeletedDuringDelivery = true;

803+

}

804+

return [];

805+

});

806+807+

const { forwarder } = createForwarder({ cfg: TARGETS_CFG, deliver });

808+

await expect(forwarder.handleRequested(baseRequest)).resolves.toBe(true);

809+

await flushPendingDelivery();

810+

deliver.mockClear();

811+812+

// Trigger expiry

813+

await vi.advanceTimersByTimeAsync(baseRequest.expiresAtMs - 1000);

814+

for (let i = 0; i < 5; i += 1) {

815+

await flushPendingDelivery();

816+

}

817+818+

expect(pendingDeletedDuringDelivery).toBe(true);

819+

// Only 1 delivery call (the expiry notification itself).

820+

// handleResolved during delivery found no pending entry because

821+

// pending.delete ran before deliverToTargets, so no resolved notice.

822+

expect(deliver).toHaveBeenCalledTimes(1);

823+

});

824+

});

707825

});