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

推荐订阅源

M
MIT News - Artificial intelligence
WordPress大学
WordPress大学
GbyAI
GbyAI
S
SegmentFault 最新的问题
量子位
爱范儿
爱范儿
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
MyScale Blog
MyScale Blog
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
aimingoo的专栏
aimingoo的专栏
V
Visual Studio Blog
U
Unit 42
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
The Cloudflare Blog
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
J
Java Code Geeks
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
IT之家
IT之家
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
雷峰网
雷峰网

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(test): stabilize e2e runtime imports · openclaw/openc...
vincentkoc · 2026-05-25 · via Recent Commits to openclaw:main

@@ -44,6 +44,53 @@ function downloadRequest(

4444

return request as { filePathHint?: string; url?: string };

4545

}

464647+

type ScheduledTimer = {

48+

callback: () => unknown;

49+

handle: ReturnType<typeof setTimeout>;

50+

};

51+52+

function resolveActiveScheduledTimersForDelay(

53+

setTimeoutSpy: ReturnType<typeof vi.spyOn>,

54+

clearTimeoutSpy: ReturnType<typeof vi.spyOn>,

55+

delayMs: number,

56+

): ScheduledTimer[] {

57+

const clearedHandles = new Set(

58+

(clearTimeoutSpy.mock.calls as Array<Parameters<typeof clearTimeout>>).map(

59+

([handle]) => handle,

60+

),

61+

);

62+

return (setTimeoutSpy.mock.calls as Array<Parameters<typeof setTimeout>>).flatMap(

63+

(call, index) => {

64+

if (call[1] !== delayMs) {

65+

return [];

66+

}

67+

const handle = setTimeoutSpy.mock.results[index]?.value as ReturnType<typeof setTimeout>;

68+

if (clearedHandles.has(handle) || typeof call[0] !== "function") {

69+

return [];

70+

}

71+

return [{ callback: call[0] as () => unknown, handle }];

72+

},

73+

);

74+

}

75+76+

async function flushActiveScheduledTimersForDelay(params: {

77+

setTimeoutSpy: ReturnType<typeof vi.spyOn>;

78+

clearTimeoutSpy: ReturnType<typeof vi.spyOn>;

79+

delayMs: number;

80+

expectedCount: number;

81+

}) {

82+

const timers = resolveActiveScheduledTimersForDelay(

83+

params.setTimeoutSpy,

84+

params.clearTimeoutSpy,

85+

params.delayMs,

86+

);

87+

expect(timers).toHaveLength(params.expectedCount);

88+

for (const timer of timers) {

89+

clearTimeout(timer.handle);

90+

await timer.callback();

91+

}

92+

}

93+4794

describe("telegram inbound media", () => {

4895

// Parallel vitest shards can make this suite slower than the standalone run.

4996

const INBOUND_MEDIA_TEST_TIMEOUT_MS = process.platform === "win32" ? 120_000 : 90_000;

@@ -346,6 +393,13 @@ describe("telegram media groups", () => {

346393

const runtimeError = vi.fn();

347394

const { handler, replySpy } = await createBotHandlerWithOptions({ runtimeError });

348395

const fetchSpy = mockTelegramPngDownload();

396+

let nextTimerHandle = 1;

397+

const setTimeoutSpy = vi.spyOn(globalThis, "setTimeout").mockImplementation(() => {

398+

const handle = nextTimerHandle;

399+

nextTimerHandle += 1;

400+

return handle as unknown as ReturnType<typeof setTimeout>;

401+

});

402+

const clearTimeoutSpy = vi.spyOn(globalThis, "clearTimeout");

349403350404

try {

351405

for (const scenario of [

@@ -354,7 +408,7 @@ describe("telegram media groups", () => {

354408

{

355409

chat: { id: 42, type: "private" as const },

356410

from: { id: 777, is_bot: false, first_name: "Ada" },

357-

message_id: 1,

411+

message_id: 101,

358412

caption: "Here are my photos",

359413

date: 1736380800,

360414

media_group_id: "album123",

@@ -364,7 +418,7 @@ describe("telegram media groups", () => {

364418

{

365419

chat: { id: 42, type: "private" as const },

366420

from: { id: 777, is_bot: false, first_name: "Ada" },

367-

message_id: 2,

421+

message_id: 102,

368422

date: 1736380801,

369423

media_group_id: "album123",

370424

photo: [{ file_id: "photo2" }],

@@ -383,7 +437,7 @@ describe("telegram media groups", () => {

383437

{

384438

chat: { id: 42, type: "private" as const },

385439

from: { id: 777, is_bot: false, first_name: "Ada" },

386-

message_id: 11,

440+

message_id: 111,

387441

caption: "Album A",

388442

date: 1736380800,

389443

media_group_id: "albumA",

@@ -393,7 +447,7 @@ describe("telegram media groups", () => {

393447

{

394448

chat: { id: 42, type: "private" as const },

395449

from: { id: 777, is_bot: false, first_name: "Ada" },

396-

message_id: 12,

450+

message_id: 112,

397451

caption: "Album B",

398452

date: 1736380801,

399453

media_group_id: "albumB",

@@ -407,6 +461,8 @@ describe("telegram media groups", () => {

407461

]) {

408462

replySpy.mockClear();

409463

runtimeError.mockClear();

464+

setTimeoutSpy.mockClear();

465+

clearTimeoutSpy.mockClear();

410466411467

await Promise.all(

412468

scenario.messages.map((message) =>

@@ -419,62 +475,65 @@ describe("telegram media groups", () => {

419475

);

420476421477

expect(replySpy).not.toHaveBeenCalled();

422-

await vi.waitFor(

423-

() => {

424-

expect(replySpy).toHaveBeenCalledTimes(scenario.expectedReplyCount);

425-

},

426-

{ timeout: MEDIA_GROUP_WAIT_TIMEOUT_MS, interval: 2 },

427-

);

478+

await flushActiveScheduledTimersForDelay({

479+

setTimeoutSpy,

480+

clearTimeoutSpy,

481+

delayMs: TELEGRAM_TEST_TIMINGS.mediaGroupFlushMs,

482+

expectedCount: scenario.expectedReplyCount,

483+

});

484+

expect(replySpy).toHaveBeenCalledTimes(scenario.expectedReplyCount);

428485429486

expect(runtimeError).not.toHaveBeenCalled();

430487

scenario.assert(replySpy);

431488

}

432489

} finally {

490+

setTimeoutSpy.mockRestore();

491+

clearTimeoutSpy.mockRestore();

433492

fetchSpy.mockRestore();

434493

}

435494

},

436495

MEDIA_GROUP_TEST_TIMEOUT_MS,

437496

);

438497439498

it(

440-

"flushes same-id forum topic media groups in parallel",

499+

"buffers same-id forum topic media groups independently",

441500

async () => {

442501

const originalLoadConfig = telegramBotDepsForTest.getRuntimeConfig;

443502

telegramBotDepsForTest.getRuntimeConfig = (() => ({

444503

channels: {

445504

telegram: {

446505

dmPolicy: "open",

447506

allowFrom: ["*"],

507+

groupAllowFrom: ["777"],

448508

groupPolicy: "open",

449-

groups: { "*": { requireMention: false } },

509+

groups: {

510+

"-10042": { allowFrom: ["777"], groupPolicy: "open", requireMention: false },

511+

},

450512

},

451513

},

452514

})) as typeof telegramBotDepsForTest.getRuntimeConfig;

453515454516

const runtimeError = vi.fn();

455517

const { handler, replySpy } = await createBotHandlerWithOptions({ runtimeError });

456518

const fetchSpy = mockTelegramPngDownload();

457-

let releaseFirstReply: (() => void) | undefined;

458-

const firstReplyStarted = new Promise<void>((resolve) => {

459-

replySpy.mockImplementationOnce(async (_ctx, opts?: { onReplyStart?: () => unknown }) => {

460-

await opts?.onReplyStart?.();

461-

resolve();

462-

await new Promise<void>((release) => {

463-

releaseFirstReply = release;

464-

});

465-

return undefined;

466-

});

519+

let nextTimerHandle = 1;

520+

const setTimeoutSpy = vi.spyOn(globalThis, "setTimeout").mockImplementation(() => {

521+

const handle = nextTimerHandle;

522+

nextTimerHandle += 1;

523+

return handle as unknown as ReturnType<typeof setTimeout>;

467524

});

525+

const clearTimeoutSpy = vi.spyOn(globalThis, "clearTimeout");

468526469527

try {

470528

await Promise.all([

471529

handler({

472530

message: {

473531

chat: { id: -10042, type: "supergroup" as const, is_forum: true },

474532

from: { id: 777, is_bot: false, first_name: "Ada" },

475-

message_id: 31,

533+

message_id: 131,

476534

message_thread_id: 101,

477-

caption: "Topic one album",

535+

is_topic_message: true,

536+

caption: "@openclaw_bot Topic one album",

478537

date: 1736380800,

479538

media_group_id: "album-shared-by-telegram",

480539

photo: [{ file_id: "topic1photo" }],

@@ -486,9 +545,10 @@ describe("telegram media groups", () => {

486545

message: {

487546

chat: { id: -10042, type: "supergroup" as const, is_forum: true },

488547

from: { id: 777, is_bot: false, first_name: "Ada" },

489-

message_id: 32,

548+

message_id: 132,

490549

message_thread_id: 202,

491-

caption: "Topic two album",

550+

is_topic_message: true,

551+

caption: "@openclaw_bot Topic two album",

492552

date: 1736380801,

493553

media_group_id: "album-shared-by-telegram",

494554

photo: [{ file_id: "topic2photo" }],

@@ -498,15 +558,17 @@ describe("telegram media groups", () => {

498558

}),

499559

]);

500560501-

await firstReplyStarted;

502-

expect(replySpy).toHaveBeenCalledTimes(1);

503-

await vi.waitFor(

504-

() => {

505-

expect(replySpy).toHaveBeenCalledTimes(2);

506-

},

507-

{ timeout: MEDIA_GROUP_WAIT_TIMEOUT_MS, interval: 2 },

561+

const timers = resolveActiveScheduledTimersForDelay(

562+

setTimeoutSpy,

563+

clearTimeoutSpy,

564+

TELEGRAM_TEST_TIMINGS.mediaGroupFlushMs,

508565

);

509-566+

expect(timers).toHaveLength(2);

567+

for (const timer of timers) {

568+

clearTimeout(timer.handle);

569+

await timer.callback();

570+

}

571+

expect(replySpy).toHaveBeenCalledTimes(2);

510572

const firstPayload = replyPayload(replySpy, 0);

511573

const secondPayload = replyPayload(replySpy, 1);

512574

expect([firstPayload.Body, secondPayload.Body]).toEqual(

@@ -519,7 +581,15 @@ describe("telegram media groups", () => {

519581

expect(secondPayload.MediaPaths).toHaveLength(1);

520582

expect(runtimeError).not.toHaveBeenCalled();

521583

} finally {

522-

releaseFirstReply?.();

584+

for (const timer of resolveActiveScheduledTimersForDelay(

585+

setTimeoutSpy,

586+

clearTimeoutSpy,

587+

TELEGRAM_TEST_TIMINGS.mediaGroupFlushMs,

588+

)) {

589+

clearTimeout(timer.handle);

590+

}

591+

setTimeoutSpy.mockRestore();

592+

clearTimeoutSpy.mockRestore();

523593

fetchSpy.mockRestore();

524594

telegramBotDepsForTest.getRuntimeConfig = originalLoadConfig;

525595

}