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

推荐订阅源

D
DataBreaches.Net
GbyAI
GbyAI
aimingoo的专栏
aimingoo的专栏
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
大猫的无限游戏
大猫的无限游戏
M
MIT News - Artificial intelligence
腾讯CDC
博客园 - Franky
Engineering at Meta
Engineering at Meta
C
Check Point Blog
T
The Blog of Author Tim Ferriss
有赞技术团队
有赞技术团队
Microsoft Azure Blog
Microsoft Azure Blog
MyScale Blog
MyScale Blog
I
InfoQ
Blog — PlanetScale
Blog — PlanetScale
P
Proofpoint News Feed
The GitHub Blog
The GitHub Blog
N
Netflix TechBlog - Medium
Last Week in AI
Last Week in AI
S
SegmentFault 最新的问题
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
WordPress大学
WordPress大学

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(feishu): coalesce lifecycle monitor cases · openclaw...
steipete · 2026-04-23 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -85,6 +85,27 @@ export function getFeishuLifecycleTestMocks(): FeishuLifecycleTestMocks {

8585

return feishuLifecycleTestMocks;

8686

}

8787
88+

export function resetFeishuLifecycleTestMocks(): void {

89+

for (const mock of Object.values(feishuLifecycleTestMocks)) {

90+

mock.mockReset();

91+

}

92+

feishuLifecycleTestMocks.monitorWebSocketMock.mockResolvedValue(undefined);

93+

feishuLifecycleTestMocks.monitorWebhookMock.mockResolvedValue(undefined);

94+

feishuLifecycleTestMocks.createFeishuThreadBindingManagerMock.mockReturnValue({ stop: vi.fn() });

95+

feishuLifecycleTestMocks.resolveBoundConversationMock.mockReturnValue(null);

96+

feishuLifecycleTestMocks.finalizeInboundContextMock.mockImplementation((ctx) => ctx);

97+

feishuLifecycleTestMocks.getMessageFeishuMock.mockResolvedValue(null);

98+

feishuLifecycleTestMocks.listFeishuThreadMessagesMock.mockResolvedValue([]);

99+

feishuLifecycleTestMocks.sendMessageFeishuMock.mockResolvedValue({

100+

messageId: "om_sent",

101+

chatId: "chat_default",

102+

});

103+

feishuLifecycleTestMocks.sendCardFeishuMock.mockResolvedValue({

104+

messageId: "om_card",

105+

chatId: "chat_default",

106+

});

107+

}

108+
88109

const {

89110

createEventDispatcherMock,

90111

monitorWebSocketMock,

Original file line numberDiff line numberDiff line change

@@ -615,6 +615,7 @@ export type MonitorSingleAccountParams = {

615615

runtime?: RuntimeEnv;

616616

abortSignal?: AbortSignal;

617617

botOpenIdSource?: BotOpenIdSource;

618+

fireAndForget?: boolean;

618619

};

619620
620621

export async function monitorSingleAccount(params: MonitorSingleAccountParams): Promise<void> {

@@ -658,7 +659,7 @@ export async function monitorSingleAccount(params: MonitorSingleAccountParams):

658659

accountId,

659660

runtime,

660661

chatHistories,

661-

fireAndForget: true,

662+

fireAndForget: params.fireAndForget ?? true,

662663

});

663664
664665

if (connectionMode === "webhook") {

Original file line numberDiff line numberDiff line change

@@ -2,7 +2,10 @@ import "./lifecycle.test-support.js";

22

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

33

import { createRuntimeEnv } from "../../../test/helpers/plugins/runtime-env.js";

44

import type { ClawdbotConfig } from "../runtime-api.js";

5-

import { getFeishuLifecycleTestMocks } from "./lifecycle.test-support.js";

5+

import {

6+

getFeishuLifecycleTestMocks,

7+

resetFeishuLifecycleTestMocks,

8+

} from "./lifecycle.test-support.js";

69

import {

710

createFeishuLifecycleFixture,

811

createFeishuTextMessageEvent,

@@ -73,7 +76,7 @@ async function setupLifecycleMonitor() {

7376

describe("Feishu ACP-init failure lifecycle", () => {

7477

beforeEach(() => {

7578

vi.useRealTimers();

76-

vi.clearAllMocks();

79+

resetFeishuLifecycleTestMocks();

7780

_handlers = {};

7881

lastRuntime = null;

7982

setFeishuLifecycleStateDir("openclaw-feishu-acp-failure");

Original file line numberDiff line numberDiff line change

@@ -1,7 +1,10 @@

11

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

22

import { createRuntimeEnv } from "../../../test/helpers/plugins/runtime-env.js";

33

import "./lifecycle.test-support.js";

4-

import { getFeishuLifecycleTestMocks } from "./lifecycle.test-support.js";

4+

import {

5+

getFeishuLifecycleTestMocks,

6+

resetFeishuLifecycleTestMocks,

7+

} from "./lifecycle.test-support.js";

58

import {

69

createFeishuLifecycleConfig,

710

createFeishuLifecycleReplyDispatcher,

@@ -85,7 +88,7 @@ async function setupLifecycleMonitor() {

8588

describe("Feishu bot-menu lifecycle", () => {

8689

beforeEach(() => {

8790

vi.useRealTimers();

88-

vi.clearAllMocks();

91+

resetFeishuLifecycleTestMocks();

8992

_handlers = {};

9093

lastRuntime = null;

9194

setFeishuLifecycleStateDir("openclaw-feishu-bot-menu");

Original file line numberDiff line numberDiff line change

@@ -3,7 +3,10 @@ import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";

33

import { createNonExitingRuntimeEnv } from "../../../test/helpers/plugins/runtime-env.js";

44

import type { ClawdbotConfig, RuntimeEnv } from "../runtime-api.js";

55

import { FeishuConfigSchema } from "./config-schema.js";

6-

import { getFeishuLifecycleTestMocks } from "./lifecycle.test-support.js";

6+

import {

7+

getFeishuLifecycleTestMocks,

8+

resetFeishuLifecycleTestMocks,

9+

} from "./lifecycle.test-support.js";

710

import {

811

createFeishuTextMessageEvent,

912

createFeishuLifecycleReplyDispatcher,

@@ -132,7 +135,7 @@ async function setupLifecycleMonitor(accountId: "account-A" | "account-B") {

132135

describe("Feishu broadcast reply-once lifecycle", () => {

133136

beforeEach(() => {

134137

vi.useRealTimers();

135-

vi.clearAllMocks();

138+

resetFeishuLifecycleTestMocks();

136139

handlersByAccount = new Map();

137140

runtimesByAccount = new Map();

138141

setFeishuLifecycleStateDir("openclaw-feishu-broadcast");

Original file line numberDiff line numberDiff line change

@@ -3,7 +3,10 @@ import { createRuntimeEnv } from "../../../test/helpers/plugins/runtime-env.js";

33

import "./lifecycle.test-support.js";

44

import { resetProcessedFeishuCardActionTokensForTests } from "./card-action.js";

55

import { createFeishuCardInteractionEnvelope } from "./card-interaction.js";

6-

import { getFeishuLifecycleTestMocks } from "./lifecycle.test-support.js";

6+

import {

7+

getFeishuLifecycleTestMocks,

8+

resetFeishuLifecycleTestMocks,

9+

} from "./lifecycle.test-support.js";

710

import {

811

createFeishuLifecycleConfig,

912

createFeishuLifecycleReplyDispatcher,

@@ -112,7 +115,7 @@ async function setupLifecycleMonitor() {

112115

describe("Feishu card-action lifecycle", () => {

113116

beforeEach(() => {

114117

vi.useRealTimers();

115-

vi.clearAllMocks();

118+

resetFeishuLifecycleTestMocks();

116119

_handlers = {};

117120

lastRuntime = null;

118121

resetProcessedFeishuCardActionTokensForTests();

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,6 @@

1+

import "./monitor.acp-init-failure.lifecycle.test-support.js";

2+

import "./monitor.bot-menu.lifecycle.test-support.js";

3+

import "./monitor.broadcast.reply-once.lifecycle.test-support.js";

4+

import "./monitor.card-action.lifecycle.test-support.js";

5+

import "./monitor.reaction.lifecycle.test-support.js";

6+

import "./monitor.reply-once.lifecycle.test-support.js";

File renamed without changes.

Original file line numberDiff line numberDiff line change

@@ -1,7 +1,10 @@

11

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

22

import { createRuntimeEnv } from "../../../test/helpers/plugins/runtime-env.js";

33

import "./lifecycle.test-support.js";

4-

import { getFeishuLifecycleTestMocks } from "./lifecycle.test-support.js";

4+

import {

5+

getFeishuLifecycleTestMocks,

6+

resetFeishuLifecycleTestMocks,

7+

} from "./lifecycle.test-support.js";

58

import {

69

createFeishuLifecycleConfig,

710

createFeishuLifecycleReplyDispatcher,

@@ -62,7 +65,8 @@ async function setupLifecycleMonitor() {

6265

describe("Feishu reply-once lifecycle", () => {

6366

beforeEach(() => {

6467

vi.useRealTimers();

65-

vi.clearAllMocks();

68+

resetFeishuLifecycleTestMocks();

69+

handleMessageMock.mockReset();

6670

lastRuntime = null;

6771

setFeishuLifecycleStateDir("openclaw-feishu-lifecycle");

6872
Original file line numberDiff line numberDiff line change

@@ -452,6 +452,7 @@ export async function setupFeishuLifecycleHandler(params: {

452452

account: params.account,

453453

runtime: params.runtime,

454454

botOpenIdSource: FEISHU_PREFETCHED_BOT_OPEN_ID_SOURCE,

455+

fireAndForget: false,

455456

});

456457
457458

const handlers: Record<string, (data: unknown) => Promise<void>> = {};