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

推荐订阅源

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
test: assert peak error summaries · openclaw/openclaw@c3c...
shakkernerd · 2026-05-12 · via Recent Commits to openclaw:main

@@ -76,16 +76,13 @@ describe("buildPeakErrorHours", () => {

76767777

const result = buildPeakErrorHours([session], "utc");

787879-

// All hours with errors should appear, sorted by error rate desc

80-

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

81-

expect(result.length).toBeLessThanOrEqual(5);

82-83-

// The hours present should correspond to UTC hours 0, 1, 9, 23.

84-

// formatHourLabel uses Date.setHours so labels depend on locale,

85-

// but we can verify error rates and sub info.

86-

const highestRate = result[0];

8779

// hour 0: 5/10 = 50%, hour 23: 4/8 = 50%, hour 9: 3/15 = 20%, hour 1: 2/20 = 10%

88-

expect(highestRate?.value).toMatch(/50\.00%/);

80+

expect(result.map(({ value, sub }) => ({ value, sub }))).toStrictEqual([

81+

{ value: "50.00%", sub: "5 errors · 10 msgs" },

82+

{ value: "50.00%", sub: "4 errors · 8 msgs" },

83+

{ value: "20.00%", sub: "3 errors · 15 msgs" },

84+

{ value: "10.00%", sub: "2 errors · 20 msgs" },

85+

]);

8986

});

90879188

it("aggregates multiple quarter-hour buckets into the same hour in UTC mode", () => {

@@ -99,8 +96,7 @@ describe("buildPeakErrorHours", () => {

9996

expect(result.length).toBe(1);

10097

// Aggregated: 5 errors / 15 total = 33.33%

10198

expect(result[0].value).toBe("33.33%");

102-

expect(result[0].sub).toContain("5 errors");

103-

expect(result[0].sub).toContain("15 msgs");

99+

expect(result[0].sub).toBe("5 errors · 15 msgs");

104100

});

105101106102

it("shifts UTC quarter-hour buckets to local timezone in local mode", () => {

@@ -119,10 +115,10 @@ describe("buildPeakErrorHours", () => {

119115

const result = buildPeakErrorHours([session], "local");

120116

expect(result.length).toBe(2);

121117122-

// Verify the sub info matches aggregated values

123-

const subs = result.map((r) => r.sub);

124-

expect(subs).toContain("3 errors · 10 msgs"); // local hour 5

125-

expect(subs).toContain("4 errors · 20 msgs"); // local hour 15

118+

expect(result.map(({ value, sub }) => ({ value, sub }))).toStrictEqual([

119+

{ value: "30.00%", sub: "3 errors · 10 msgs" }, // local hour 5

120+

{ value: "20.00%", sub: "4 errors · 20 msgs" }, // local hour 15

121+

]);

126122

});

127123128124

it("wraps correctly for negative local timezone (UTC-8)", () => {

@@ -139,8 +135,7 @@ describe("buildPeakErrorHours", () => {

139135

const result = buildPeakErrorHours([session], "local");

140136

expect(result.length).toBe(1);

141137

expect(result[0].value).toBe("50.00%");

142-

expect(result[0].sub).toContain("5 errors");

143-

expect(result[0].sub).toContain("10 msgs");

138+

expect(result[0].sub).toBe("5 errors · 10 msgs");

144139

});

145140146141

it("wraps correctly for positive local timezone near midnight (UTC+8, late quarter)", () => {

@@ -157,8 +152,7 @@ describe("buildPeakErrorHours", () => {

157152

const result = buildPeakErrorHours([session], "local");

158153

expect(result.length).toBe(1);

159154

expect(result[0].value).toBe("50.00%");

160-

expect(result[0].sub).toContain("6 errors");

161-

expect(result[0].sub).toContain("12 msgs");

155+

expect(result[0].sub).toBe("6 errors · 12 msgs");

162156

});

163157164158

it("returns empty array when no sessions have errors", () => {

@@ -207,10 +201,13 @@ describe("buildPeakErrorHours", () => {

207201

expect(result.length).toBe(5);

208202209203

// Should be sorted by rate descending — highest rate first

210-

const rates = result.map((r) => Number.parseFloat(r.value));

211-

for (let i = 1; i < rates.length; i++) {

212-

expect(rates[i - 1]).toBeGreaterThanOrEqual(rates[i]);

213-

}

204+

expect(result.map((r) => r.value)).toStrictEqual([

205+

"16.00%",

206+

"14.00%",

207+

"12.00%",

208+

"10.00%",

209+

"8.00%",

210+

]);

214211

});

215212216213

it("aggregates across multiple sessions", () => {

@@ -225,8 +222,7 @@ describe("buildPeakErrorHours", () => {

225222

expect(result.length).toBe(1);

226223

// quarterIndex 20 → hour 5: aggregated 10 errors / 30 msgs = 33.33%

227224

expect(result[0].value).toBe("33.33%");

228-

expect(result[0].sub).toContain("10 errors");

229-

expect(result[0].sub).toContain("30 msgs");

225+

expect(result[0].sub).toBe("10 errors · 30 msgs");

230226

});

231227232228

it("falls back to proportional allocation when utcQuarterHourMessageCounts is absent", () => {