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

推荐订阅源

The GitHub Blog
The GitHub Blog
阮一峰的网络日志
阮一峰的网络日志
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Apple Machine Learning Research
Apple Machine Learning Research
小众软件
小众软件
博客园 - 司徒正美
Last Week in AI
Last Week in AI
爱范儿
爱范儿
罗磊的独立博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园_首页
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Cloudflare Blog
雷峰网
雷峰网
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
Jina AI
Jina AI
人人都是产品经理
人人都是产品经理
量子位
V
V2EX
博客园 - 叶小钗
宝玉的分享
宝玉的分享
T
Tailwind CSS Blog

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: tighten telegram status assertions · openclaw/openc...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -12,6 +12,32 @@ import {

1212

resolveTelegramStatusReactionEmojis,

1313

} from "./status-reaction-variants.js";

141415+

type StatusIssue = ReturnType<typeof collectTelegramStatusIssues>[number];

16+17+

function expectIssueFields(issue: StatusIssue | undefined, expected: Partial<StatusIssue>): void {

18+

if (!issue) {

19+

throw new Error("expected status issue");

20+

}

21+

for (const [key, value] of Object.entries(expected)) {

22+

expect(issue[key as keyof StatusIssue]).toBe(value);

23+

}

24+

}

25+26+

function expectIssueListContainsFields(

27+

issues: StatusIssue[],

28+

expected: Partial<StatusIssue>,

29+

): void {

30+

expect(

31+

issues.some((issue) =>

32+

Object.entries(expected).every(([key, value]) => issue[key as keyof StatusIssue] === value),

33+

),

34+

).toBe(true);

35+

}

36+37+

function expectIssueMessageContains(issues: StatusIssue[], text: string): void {

38+

expect(issues.some((issue) => issue.message.includes(text))).toBe(true);

39+

}

40+1541

describe("collectTelegramStatusIssues", () => {

1642

it("reports privacy-mode and wildcard unmentioned-group configuration risks", () => {

1743

const issues = collectTelegramStatusIssues([

@@ -27,23 +53,14 @@ describe("collectTelegramStatusIssues", () => {

2753

} as ChannelAccountSnapshot,

2854

]);

295530-

expect(issues).toEqual(

31-

expect.arrayContaining([

32-

expect.objectContaining({

33-

channel: "telegram",

34-

accountId: "main",

35-

kind: "config",

36-

}),

37-

]),

38-

);

39-

const issueMessages = issues.map((issue) => issue.message);

40-

expect(issueMessages).toEqual(

41-

expect.arrayContaining([expect.stringContaining("privacy mode")]),

42-

);

43-

expect(issueMessages).toEqual(expect.arrayContaining([expect.stringContaining('uses "*"')]));

44-

expect(issueMessages).toEqual(

45-

expect.arrayContaining([expect.stringContaining("unresolvedGroups=2")]),

46-

);

56+

expectIssueListContainsFields(issues, {

57+

channel: "telegram",

58+

accountId: "main",

59+

kind: "config",

60+

});

61+

expectIssueMessageContains(issues, "privacy mode");

62+

expectIssueMessageContains(issues, 'uses "*"');

63+

expectIssueMessageContains(issues, "unresolvedGroups=2");

4764

});

48654966

it("reports unreachable groups with match metadata", () => {

@@ -68,7 +85,7 @@ describe("collectTelegramStatusIssues", () => {

6885

]);

69867087

expect(issues).toHaveLength(1);

71-

expect(issues[0]).toMatchObject({

88+

expectIssueFields(issues[0], {

7289

channel: "telegram",

7390

accountId: "main",

7491

kind: "runtime",

@@ -92,14 +109,13 @@ describe("collectTelegramStatusIssues", () => {

92109

} as ChannelAccountSnapshot,

93110

]);

9411195-

expect(issues).toEqual([

96-

expect.objectContaining({

97-

channel: "telegram",

98-

accountId: "main",

99-

kind: "runtime",

100-

message: expect.stringContaining("has not completed a successful getUpdates call"),

101-

}),

102-

]);

112+

expect(issues).toHaveLength(1);

113+

expectIssueFields(issues[0], {

114+

channel: "telegram",

115+

accountId: "main",

116+

kind: "runtime",

117+

});

118+

expect(issues[0]?.message).toContain("has not completed a successful getUpdates call");

103119

expect(issues[0]?.message).toContain("network timeout");

104120

expect(issues[0]?.fix).toContain("channels status --probe");

105121

});

@@ -134,14 +150,13 @@ describe("collectTelegramStatusIssues", () => {

134150

} as ChannelAccountSnapshot,

135151

]);

136152137-

expect(issues).toEqual([

138-

expect.objectContaining({

139-

channel: "telegram",

140-

accountId: "main",

141-

kind: "runtime",

142-

message: expect.stringContaining("polling transport is stale"),

143-

}),

144-

]);

153+

expect(issues).toHaveLength(1);

154+

expectIssueFields(issues[0], {

155+

channel: "telegram",

156+

accountId: "main",

157+

kind: "runtime",

158+

});

159+

expect(issues[0]?.message).toContain("polling transport is stale");

145160

});

146161147162

it("does not report inherited stale transport activity during a fresh polling lifecycle", () => {

@@ -175,14 +190,13 @@ describe("collectTelegramStatusIssues", () => {

175190

} as ChannelAccountSnapshot,

176191

]);

177192178-

expect(issues).toEqual([

179-

expect.objectContaining({

180-

channel: "telegram",

181-

accountId: "main",

182-

kind: "runtime",

183-

message: expect.stringContaining("setWebhook has not completed"),

184-

}),

185-

]);

193+

expect(issues).toHaveLength(1);

194+

expectIssueFields(issues[0], {

195+

channel: "telegram",

196+

accountId: "main",

197+

kind: "runtime",

198+

});

199+

expect(issues[0]?.message).toContain("setWebhook has not completed");

186200

expect(issues[0]?.message).toContain("fetch failed");

187201

expect(issues[0]?.fix).toContain("webhook URL");

188202

});