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

推荐订阅源

aimingoo的专栏
aimingoo的专栏
Jina AI
Jina AI
WordPress大学
WordPress大学
Recent Announcements
Recent Announcements
G
Google Developers Blog
I
InfoQ
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Google DeepMind News
Google DeepMind News
P
Proofpoint News Feed
MyScale Blog
MyScale Blog
M
MIT News - Artificial intelligence
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
C
Check Point Blog
J
Java Code Geeks
T
Tailwind CSS Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Microsoft Security Blog
Microsoft Security Blog
MongoDB | Blog
MongoDB | Blog
V
Visual Studio Blog
人人都是产品经理
人人都是产品经理
量子位
A
About on SuperTechFans
D
DataBreaches.Net
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

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: simplify status reaction call scans · openclaw/open...
steipete · 2026-05-09 · via Recent Commits to openclaw:main

@@ -60,6 +60,53 @@ function expectSetEmojiCall(calls: Array<{ method: string; emoji: string }>, emo

6060

expect(calls).toContainEqual({ method: "set", emoji });

6161

}

626263+

function collectEmojisForMethod(

64+

calls: Array<{ method: string; emoji: string }>,

65+

method: string,

66+

): string[] {

67+

const emojis: string[] = [];

68+

for (const call of calls) {

69+

if (call.method === method) {

70+

emojis.push(call.emoji);

71+

}

72+

}

73+

return emojis;

74+

}

75+76+

function countCallsForMethod(calls: Array<{ method: string; emoji: string }>, method: string) {

77+

let count = 0;

78+

for (const call of calls) {

79+

if (call.method === method) {

80+

count += 1;

81+

}

82+

}

83+

return count;

84+

}

85+86+

function countCallsForEmoji(calls: Array<{ method: string; emoji: string }>, emoji: string) {

87+

let count = 0;

88+

for (const call of calls) {

89+

if (call.emoji === emoji) {

90+

count += 1;

91+

}

92+

}

93+

return count;

94+

}

95+96+

function countCallsForMethodAndEmoji(

97+

calls: Array<{ method: string; emoji: string }>,

98+

method: string,

99+

emoji: string,

100+

) {

101+

let count = 0;

102+

for (const call of calls) {

103+

if (call.method === method && call.emoji === emoji) {

104+

count += 1;

105+

}

106+

}

107+

return count;

108+

}

109+63110

function expectArrayContainsAll(values: readonly string[], expected: readonly string[]) {

64111

expected.forEach((value) => {

65112

expect(values).toContain(value);

@@ -264,7 +311,7 @@ describe("createStatusReactionController", () => {

264311

await vi.advanceTimersByTimeAsync(DEFAULT_TIMING.debounceMs);

265312266313

// Should only have the last one (exec → display emoji)

267-

const setEmojis = calls.filter((c) => c.method === "set").map((c) => c.emoji);

314+

const setEmojis = collectEmojisForMethod(calls, "set");

268315

expect(setEmojis).toEqual(["🛠️"]);

269316

});

270317

@@ -292,7 +339,7 @@ describe("createStatusReactionController", () => {

292339

void controller.setThinking();

293340

await vi.advanceTimersByTimeAsync(DEFAULT_TIMING.debounceMs);

294341295-

const setEmojis = calls.filter((call) => call.method === "set").map((call) => call.emoji);

342+

const setEmojis = collectEmojisForMethod(calls, "set");

296343

expect(setEmojis).toEqual([DEFAULT_EMOJIS.thinking]);

297344

});

298345

@@ -325,7 +372,7 @@ describe("createStatusReactionController", () => {

325372326373

await controller.setDone();

327374328-

const removeEmojis = calls.filter((call) => call.method === "remove").map((call) => call.emoji);

375+

const removeEmojis = collectEmojisForMethod(calls, "remove");

329376

expect(removeEmojis).toEqual(expect.arrayContaining(["👀", DEFAULT_EMOJIS.thinking, "🛠️"]));

330377

expect(removeEmojis).not.toContain(DEFAULT_EMOJIS.done);

331378

});

@@ -354,10 +401,7 @@ describe("createStatusReactionController", () => {

354401

void controller.setThinking();

355402

await vi.advanceTimersByTimeAsync(DEFAULT_TIMING.debounceMs);

356403357-

const thinkingSets = calls.filter(

358-

(call) => call.method === "set" && call.emoji === DEFAULT_EMOJIS.thinking,

359-

);

360-

expect(thinkingSets).toHaveLength(1);

404+

expect(countCallsForMethodAndEmoji(calls, "set", DEFAULT_EMOJIS.thinking)).toBe(1);

361405

expect(calls).not.toContainEqual({ method: "remove", emoji: DEFAULT_EMOJIS.thinking });

362406

});

363407

@@ -371,8 +415,7 @@ describe("createStatusReactionController", () => {

371415

await vi.advanceTimersByTimeAsync(DEFAULT_TIMING.debounceMs);

372416373417

// Should only have set calls, no remove

374-

const removeCalls = calls.filter((c) => c.method === "remove");

375-

expect(removeCalls).toHaveLength(0);

418+

expect(countCallsForMethod(calls, "remove")).toBe(0);

376419

expect(calls.some((c) => c.method === "set")).toBe(true);

377420

});

378421

@@ -385,8 +428,7 @@ describe("createStatusReactionController", () => {

385428

await controller.clear();

386429387430

// Should have removed multiple emojis

388-

const removeCalls = calls.filter((c) => c.method === "remove");

389-

expect(removeCalls.length).toBeGreaterThan(0);

431+

expect(countCallsForMethod(calls, "remove")).toBeGreaterThan(0);

390432

});

391433392434

it("should handle clear gracefully when adapter lacks removeReaction", async () => {

@@ -395,8 +437,7 @@ describe("createStatusReactionController", () => {

395437

await controller.clear();

396438397439

// Should not throw, no remove calls

398-

const removeCalls = calls.filter((c) => c.method === "remove");

399-

expect(removeCalls).toHaveLength(0);

440+

expect(countCallsForMethod(calls, "remove")).toBe(0);

400441

});

401442402443

it("should restore initial emoji", async () => {

@@ -497,8 +538,7 @@ describe("createStatusReactionController", () => {

497538

await runUpdate(controller);

498539

await vi.advanceTimersByTimeAsync(DEFAULT_TIMING.stallSoftMs / 2);

499540500-

const stallCalls = calls.filter((c) => c.emoji === DEFAULT_EMOJIS.stallSoft);

501-

expect(stallCalls).toHaveLength(0);

541+

expect(countCallsForEmoji(calls, DEFAULT_EMOJIS.stallSoft)).toBe(0);

502542

});

503543504544

it("should call onError callback when adapter throws", async () => {