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

推荐订阅源

J
Java Code Geeks
F
Fortinet All Blogs
云风的 BLOG
云风的 BLOG
MyScale Blog
MyScale Blog
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog
A
About on SuperTechFans
Google DeepMind News
Google DeepMind News
Microsoft Security Blog
Microsoft Security Blog
腾讯CDC
The GitHub Blog
The GitHub Blog
Jina AI
Jina AI
B
Blog RSS Feed
I
InfoQ
N
Netflix TechBlog - Medium
T
The Blog of Author Tim Ferriss
Microsoft Azure Blog
Microsoft Azure Blog
Recent Announcements
Recent Announcements
GbyAI
GbyAI
H
Help Net Security
L
LangChain Blog
M
MIT News - Artificial intelligence
Y
Y Combinator Blog
aimingoo的专栏
aimingoo的专栏

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: clear telegram polling broad matchers · openclaw/op...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -37,6 +37,52 @@ type TelegramApiMiddleware = (

3737

payload: unknown,

3838

) => Promise<unknown>;

3939

type AsyncVoidFn = () => Promise<void>;

40+

type MockCallSource = { mock: { calls: Array<Array<unknown>> } };

41+42+

function mockObjectArg(

43+

source: MockCallSource,

44+

label: string,

45+

callIndex = 0,

46+

argIndex = 0,

47+

): Record<string, unknown> {

48+

const call = source.mock.calls[callIndex];

49+

if (!call) {

50+

throw new Error(`Expected ${label} call ${callIndex} to exist`);

51+

}

52+

const value = call[argIndex];

53+

if (!value || typeof value !== "object") {

54+

throw new Error(`Expected ${label} call ${callIndex} argument ${argIndex} to be an object`);

55+

}

56+

return value as Record<string, unknown>;

57+

}

58+59+

function logContains(source: MockCallSource, text: string): boolean {

60+

return source.mock.calls.some((call) => String(call[0]).includes(text));

61+

}

62+63+

function expectLogIncludes(source: MockCallSource, text: string): void {

64+

expect(logContains(source, text), `Expected log to include ${text}`).toBe(true);

65+

}

66+67+

function expectLogExcludes(source: MockCallSource, text: string): void {

68+

expect(logContains(source, text), `Expected log not to include ${text}`).toBe(false);

69+

}

70+71+

function statusPatches(source: MockCallSource): Record<string, unknown>[] {

72+

return source.mock.calls.map((call, index) => {

73+

const patch = call[0];

74+

if (!patch || typeof patch !== "object") {

75+

throw new Error(`Expected status patch call ${index} to be an object`);

76+

}

77+

return patch as Record<string, unknown>;

78+

});

79+

}

80+81+

function expectPollingConnectedPatch(patch: Record<string, unknown> | undefined): void {

82+

expect(patch).toBeDefined();

83+

expect(patch?.connected).toBe(true);

84+

expect(patch?.mode).toBe("polling");

85+

}

40864187

function makeBot() {

4288

return {

@@ -276,9 +322,9 @@ describe("TelegramPollingSession", () => {

276322

await session.runUntilAbort();

277323278324

expect(runMock).toHaveBeenCalledTimes(2);

279-

expect(createTelegramBotMock).toHaveBeenCalledWith(

280-

expect.objectContaining({ minimumClientTimeoutSeconds: 45 }),

281-

);

325+

expect(

326+

mockObjectArg(createTelegramBotMock, "createTelegramBot").minimumClientTimeoutSeconds,

327+

).toBe(45);

282328

expect(computeBackoffMock).toHaveBeenCalledTimes(1);

283329

expect(sleepWithAbortMock).toHaveBeenCalledTimes(1);

284330

});

@@ -383,8 +429,8 @@ describe("TelegramPollingSession", () => {

383429

expect(runMock).toHaveBeenCalledTimes(2);

384430

expect(firstRunnerStop).toHaveBeenCalledTimes(1);

385431

expect(botStop).toHaveBeenCalled();

386-

expect(log).toHaveBeenCalledWith(expect.stringContaining("Polling stall detected"));

387-

expect(log).toHaveBeenCalledWith(expect.stringContaining("polling stall detected"));

432+

expectLogIncludes(log, "Polling stall detected");

433+

expectLogIncludes(log, "polling stall detected");

388434

} finally {

389435

watchdogHarness.restore();

390436

}

@@ -438,7 +484,7 @@ describe("TelegramPollingSession", () => {

438484439485

expect(runMock).toHaveBeenCalledTimes(2);

440486

expect(firstRunnerStop).toHaveBeenCalledTimes(1);

441-

expect(log).toHaveBeenCalledWith(expect.stringContaining("Polling stall detected"));

487+

expectLogIncludes(log, "Polling stall detected");

442488

} finally {

443489

watchdogHarness.restore();

444490

}

@@ -466,7 +512,7 @@ describe("TelegramPollingSession", () => {

466512467513

expect(runnerStop).not.toHaveBeenCalled();

468514

expect(botStop).not.toHaveBeenCalled();

469-

expect(log).not.toHaveBeenCalledWith(expect.stringContaining("Polling stall detected"));

515+

expectLogExcludes(log, "Polling stall detected");

470516471517

abort.abort();

472518

resolveFirstTask();

@@ -629,7 +675,7 @@ describe("TelegramPollingSession", () => {

629675630676

expect(runnerStop).not.toHaveBeenCalled();

631677

expect(botStop).not.toHaveBeenCalled();

632-

expect(log).not.toHaveBeenCalledWith(expect.stringContaining("Polling stall detected"));

678+

expectLogExcludes(log, "Polling stall detected");

633679634680

abort.abort();

635681

resolveFirstTask();

@@ -665,17 +711,12 @@ describe("TelegramPollingSession", () => {

665711

lastEventAt: null,

666712

lastTransportActivityAt: null,

667713

});

668-

const connectedPatch = setStatus.mock.calls.find(

669-

([patch]) => (patch as Record<string, unknown>).connected === true,

670-

)?.[0] as Record<string, unknown> | undefined;

671-

expect(connectedPatch).toMatchObject({

672-

connected: true,

673-

mode: "polling",

674-

lastConnectedAt: expect.any(Number),

675-

lastEventAt: expect.any(Number),

676-

lastTransportActivityAt: expect.any(Number),

677-

lastError: null,

678-

});

714+

const connectedPatch = statusPatches(setStatus).find((patch) => patch.connected === true);

715+

expectPollingConnectedPatch(connectedPatch);

716+

expect(connectedPatch?.lastConnectedAt).toBeTypeOf("number");

717+

expect(connectedPatch?.lastEventAt).toBeTypeOf("number");

718+

expect(connectedPatch?.lastTransportActivityAt).toBeTypeOf("number");

719+

expect(connectedPatch?.lastError).toBeNull();

679720

expect(connectedPatch?.lastConnectedAt).toBe(connectedPatch?.lastEventAt);

680721

expect(connectedPatch?.lastTransportActivityAt).toBe(connectedPatch?.lastEventAt);

681722

@@ -746,20 +787,16 @@ describe("TelegramPollingSession", () => {

746787

await session.runUntilAbort();

747788748789

expect(runMock).toHaveBeenCalledTimes(2);

749-

expect(setStatus).toHaveBeenCalledWith(

750-

expect.objectContaining({ connected: true, mode: "polling" }),

751-

);

752-

const disconnectedPatches = setStatus.mock.calls.filter(

753-

([patch]) => (patch as Record<string, unknown>).connected === false,

790+

expectPollingConnectedPatch(statusPatches(setStatus).find((patch) => patch.connected === true));

791+

const disconnectedPatches = statusPatches(setStatus).filter(

792+

(patch) => patch.connected === false,

754793

);

755794

expect(disconnectedPatches).toHaveLength(2);

756-

expect(disconnectedPatches[0]?.[0]).toMatchObject({

757-

mode: "polling",

758-

lastConnectedAt: null,

759-

lastEventAt: null,

760-

lastTransportActivityAt: null,

761-

});

762-

expect(disconnectedPatches[1]?.[0]).toEqual({

795+

expect(disconnectedPatches[0]?.mode).toBe("polling");

796+

expect(disconnectedPatches[0]?.lastConnectedAt).toBeNull();

797+

expect(disconnectedPatches[0]?.lastEventAt).toBeNull();

798+

expect(disconnectedPatches[0]?.lastTransportActivityAt).toBeNull();

799+

expect(disconnectedPatches[1]).toEqual({

763800

mode: "polling",

764801

connected: false,

765802

});

@@ -802,7 +839,7 @@ describe("TelegramPollingSession", () => {

802839

// The watchdog should NOT have triggered a restart

803840

expect(runnerStop).not.toHaveBeenCalled();

804841

expect(botStop).not.toHaveBeenCalled();

805-

expect(log).not.toHaveBeenCalledWith(expect.stringContaining("Polling stall detected"));

842+

expectLogExcludes(log, "Polling stall detected");

806843807844

// Clean up: abort to end the session

808845

abort.abort();

@@ -854,7 +891,7 @@ describe("TelegramPollingSession", () => {

854891

// The watchdog should NOT have triggered a restart

855892

expect(runnerStop).not.toHaveBeenCalled();

856893

expect(botStop).not.toHaveBeenCalled();

857-

expect(log).not.toHaveBeenCalledWith(expect.stringContaining("Polling stall detected"));

894+

expectLogExcludes(log, "Polling stall detected");

858895859896

// Resolve the in-flight call to clean up

860897

resolveSendMessage?.({ ok: true });

@@ -906,7 +943,7 @@ describe("TelegramPollingSession", () => {

906943907944

expect(runnerStop).toHaveBeenCalledTimes(1);

908945

expect(botStop).toHaveBeenCalledTimes(1);

909-

expect(log).toHaveBeenCalledWith(expect.stringContaining("Polling stall detected"));

946+

expectLogIncludes(log, "Polling stall detected");

910947911948

resolveSendMessage?.({ ok: true });

912949

await sendPromise;

@@ -971,7 +1008,7 @@ describe("TelegramPollingSession", () => {

97110089721009

expect(runnerStop).not.toHaveBeenCalled();

9731010

expect(botStop).not.toHaveBeenCalled();

974-

expect(log).not.toHaveBeenCalledWith(expect.stringContaining("Polling stall detected"));

1011+

expectLogExcludes(log, "Polling stall detected");

97510129761013

resolveFirstSend?.({ ok: true });

9771014

resolveSecondSend?.({ ok: true });

@@ -1047,9 +1084,7 @@ describe("TelegramPollingSession", () => {

1047108410481085

await session.runUntilAbort();

104910861050-

expect(log).toHaveBeenCalledWith(

1051-

expect.stringContaining("Another OpenClaw gateway, script, or Telegram poller"),

1052-

);

1087+

expectLogIncludes(log, "Another OpenClaw gateway, script, or Telegram poller");

10531088

});

1054108910551090

it("closes the transport once when runUntilAbort exits normally", async () => {