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

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
博客园_首页
G
Google Developers Blog
aimingoo的专栏
aimingoo的专栏
罗磊的独立博客
博客园 - 【当耐特】
M
MIT News - Artificial intelligence
D
Docker
博客园 - 三生石上(FineUI控件)
博客园 - 司徒正美
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
月光博客
月光博客
S
SegmentFault 最新的问题
Jina AI
Jina AI
Blog — PlanetScale
Blog — PlanetScale
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - Franky
L
LangChain Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Microsoft Azure Blog
Microsoft Azure Blog
阮一峰的网络日志
阮一峰的网络日志
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Last Week in AI
Last Week in AI

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(discord): cover deliver-lambda abort-skip path via p...
ubehera · 2026-05-26 · via Recent Commits to openclaw:main

@@ -5,6 +5,7 @@ import {

55

type ChannelBotLoopProtectionFacts,

66

} from "openclaw/plugin-sdk/inbound-reply-dispatch";

77

import type { ReplyPayload } from "openclaw/plugin-sdk/reply-dispatch-runtime";

8+

import * as runtimeEnvModule from "openclaw/plugin-sdk/runtime-env";

89

import { beforeAll, beforeEach, describe, expect, it, vi } from "vitest";

910

import type { DiscordMessagePreflightContext } from "./message-handler.preflight.js";

1011

@@ -211,6 +212,7 @@ let createDiscordDirectMessageContextOverrides: typeof import("./message-handler

211212

let threadBindingTesting: typeof import("./thread-bindings.js").testing;

212213

let createThreadBindingManager: typeof import("./thread-bindings.js").createThreadBindingManager;

213214

let processDiscordMessage: typeof import("./message-handler.process.js").processDiscordMessage;

215+

let formatDiscordReplySkip: typeof import("./message-handler.process.js").formatDiscordReplySkip;

214216

let notifyDiscordInboundEventOutboundSuccess: typeof import("../inbound-event-delivery.js").notifyDiscordInboundEventOutboundSuccess;

215217216218

vi.mock("openclaw/plugin-sdk/reply-runtime", () => ({

@@ -373,7 +375,8 @@ beforeAll(async () => {

373375

await import("./message-handler.test-harness.js"));

374376

({ testing: threadBindingTesting, createThreadBindingManager } =

375377

await import("./thread-bindings.js"));

376-

({ processDiscordMessage } = await import("./message-handler.process.js"));

378+

({ processDiscordMessage, formatDiscordReplySkip } =

379+

await import("./message-handler.process.js"));

377380

({ notifyDiscordInboundEventOutboundSuccess } = await import("../inbound-event-delivery.js"));

378381

});

379382

@@ -2745,3 +2748,55 @@ describe("processDiscordMessage draft streaming", () => {

27452748

expect(draftStream.update).not.toHaveBeenCalled();

27462749

});

27472750

});

2751+2752+

describe("processDiscordMessage deliver-lambda abort logging", () => {

2753+

it("emits logVerbose with formatDiscordReplySkip when deliver fires on a pre-aborted signal", async () => {

2754+

// Capture logVerbose calls via the ESM namespace binding. We rely on the

2755+

// same vi.spyOn pattern used in native-command.model-picker.test.ts so the

2756+

// production module keeps its real logVerbose import while the test still

2757+

// sees every invocation that the deliver lambda surfaces.

2758+

const verboseSpy = vi.spyOn(runtimeEnvModule, "logVerbose").mockImplementation(() => {});

2759+2760+

const abortController = new AbortController();

2761+

// Drive the dispatcher so deliver actually runs: abort the signal inside

2762+

// the dispatch mock and then queue a single block reply via the captured

2763+

// dispatcher. The mocked createReplyDispatcherWithTyping (see line ~229)

2764+

// routes sendBlockReply straight into the deliver lambda, where the very

2765+

// first gate is `if (isProcessAborted(abortSignal)) return;` — the line

2766+

// the PR added the logVerbose call to.

2767+

dispatchInboundMessage.mockImplementationOnce(async (params?: DispatchInboundParams) => {

2768+

abortController.abort();

2769+

await params?.dispatcher.sendBlockReply({ text: "post-abort block payload" });

2770+

return { queuedFinal: false, counts: { final: 0, tool: 0, block: 1 } };

2771+

});

2772+2773+

const ctx = await createAutomaticSourceDeliveryContext({

2774+

abortSignal: abortController.signal,

2775+

cfg: {

2776+

messages: {

2777+

ackReaction: "👀",

2778+

},

2779+

session: { store: "/tmp/openclaw-discord-process-test-sessions.json" },

2780+

},

2781+

});

2782+2783+

await runProcessDiscordMessage(ctx);

2784+2785+

// The base test harness routes through guild g1 / channel c1 (see

2786+

// createBaseDiscordMessageContext) so the deliver lambda receives the

2787+

// matching deliver target and session key from ctxPayload.SessionKey.

2788+

const dispatchedSessionKey = getLastDispatchCtx()?.SessionKey;

2789+

expect(dispatchedSessionKey).toBeTypeOf("string");

2790+

const expectedLog = formatDiscordReplySkip({

2791+

kind: "block",

2792+

reason: "aborted before delivery",

2793+

target: "channel:c1",

2794+

sessionKey: dispatchedSessionKey,

2795+

});

2796+

const verboseCalls = verboseSpy.mock.calls.map((call) => call[0]);

2797+

expect(verboseCalls).toContain(expectedLog);

2798+

// Restore so other tests sharing this worker (isolate=false) keep the

2799+

// real logVerbose binding.

2800+

verboseSpy.mockRestore();

2801+

});

2802+

});