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

推荐订阅源

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: avoid line count filter allocations · openclaw/open...
steipete · 2026-05-09 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -14,6 +14,16 @@ import {

1414

repairBrokenSessionTranscriptFile,

1515

} from "./doctor-session-transcripts.js";

1616
17+

function countNonEmptyLines(value: string): number {

18+

let count = 0;

19+

for (const line of value.split(/\r?\n/)) {

20+

if (line) {

21+

count += 1;

22+

}

23+

}

24+

return count;

25+

}

26+
1727

describe("doctor session transcript repair", () => {

1828

let root: string;

1929

@@ -129,7 +139,7 @@ describe("doctor session transcript repair", () => {

129139

expect(title).toBe("Session transcripts");

130140

expect(message).toContain("duplicated prompt-rewrite branches");

131141

expect(message).toContain('Run "openclaw doctor --fix"');

132-

expect((await fs.readFile(filePath, "utf-8")).split(/\r?\n/).filter(Boolean)).toHaveLength(3);

142+

expect(countNonEmptyLines(await fs.readFile(filePath, "utf-8"))).toBe(3);

133143

});

134144
135145

it("ignores ordinary branch history without internal runtime context", async () => {

@@ -152,6 +162,6 @@ describe("doctor session transcript repair", () => {

152162

const result = await repairBrokenSessionTranscriptFile({ filePath, shouldRepair: true });

153163
154164

expect(result.broken).toBe(false);

155-

expect((await fs.readFile(filePath, "utf-8")).split(/\r?\n/).filter(Boolean)).toHaveLength(3);

165+

expect(countNonEmptyLines(await fs.readFile(filePath, "utf-8"))).toBe(3);

156166

});

157167

});

Original file line numberDiff line numberDiff line change

@@ -31,6 +31,16 @@ vi.mock("../../commands/status.js", () => ({

3131

getStatusSummary: vi.fn().mockResolvedValue({ ok: true }),

3232

}));

3333
34+

function countMatching<T>(items: readonly T[], predicate: (item: T) => boolean): number {

35+

let count = 0;

36+

for (const item of items) {

37+

if (predicate(item)) {

38+

count += 1;

39+

}

40+

}

41+

return count;

42+

}

43+
3444

describe("waitForAgentJob", () => {

3545

async function runLifecycleScenario(params: {

3646

runIdPrefix: string;

@@ -1212,7 +1222,7 @@ describe("exec approval handlers", () => {

12121222
12131223

expect(firstResolveRespond).toHaveBeenCalledWith(true, { ok: true }, undefined);

12141224

expect(repeatResolveRespond).toHaveBeenCalledWith(true, { ok: true }, undefined);

1215-

expect(broadcasts.filter((entry) => entry.event === "exec.approval.resolved")).toHaveLength(

1225+

expect(countMatching(broadcasts, (entry) => entry.event === "exec.approval.resolved")).toBe(

12161226

resolvedBroadcastCount,

12171227

);

12181228

expect(conflictingResolveRespond).toHaveBeenCalledWith(

Original file line numberDiff line numberDiff line change

@@ -4282,7 +4282,7 @@ module.exports = { id: "throws-after-import", register() {} };`,

42824282

},

42834283

});

42844284
4285-

expect(registry.services.filter((entry) => entry.service.id === "shared-service")).toHaveLength(

4285+

expect(countMatching(registry.services, (entry) => entry.service.id === "shared-service")).toBe(

42864286

1,

42874287

);

42884288

expectNoDiagnosticContaining({

Original file line numberDiff line numberDiff line change

@@ -18,6 +18,16 @@ type AuditFixture = {

1818

const OPENAI_API_KEY_MARKER = "OPENAI_API_KEY"; // pragma: allowlist secret

1919

const MAX_AUDIT_MODELS_JSON_BYTES = 5 * 1024 * 1024;

2020
21+

function countNonEmptyLines(value: string): number {

22+

let count = 0;

23+

for (const line of value.split("\n")) {

24+

if (line.trim().length > 0) {

25+

count += 1;

26+

}

27+

}

28+

return count;

29+

}

30+
2131

async function writeJsonFile(filePath: string, value: unknown): Promise<void> {

2232

await fs.writeFile(filePath, `${JSON.stringify(value, null, 2)}\n`, "utf8");

2333

}

@@ -334,7 +344,7 @@ describe("secrets audit", () => {

334344

expect(report.summary.unresolvedRefCount).toBe(0);

335345
336346

const callLog = await fs.readFile(execLogPath, "utf8");

337-

const callCount = callLog.split("\n").filter((line) => line.trim().length > 0).length;

347+

const callCount = countNonEmptyLines(callLog);

338348

expect(callCount).toBe(1);

339349

});

340350

@@ -398,7 +408,7 @@ describe("secrets audit", () => {

398408

expect(report.summary.unresolvedRefCount).toBeGreaterThanOrEqual(2);

399409
400410

const callLog = await fs.readFile(execLogPath, "utf8");

401-

const callCount = callLog.split("\n").filter((line) => line.trim().length > 0).length;

411+

const callCount = countNonEmptyLines(callLog);

402412

expect(callCount).toBe(1);

403413

});

404414
Original file line numberDiff line numberDiff line change

@@ -35,6 +35,16 @@ const TS_PATHS = {

3535
3636

const OS_TS_PATHS = [TS_PATHS.linux, TS_PATHS.macos, TS_PATHS.windows];

3737
38+

function countNonEmptyLines(value: string): number {

39+

let count = 0;

40+

for (const line of value.split("\n")) {

41+

if (line) {

42+

count += 1;

43+

}

44+

}

45+

return count;

46+

}

47+
3848

function runTsEval(source: string, env: Record<string, string> = {}) {

3949

return execFileSync("node", ["--import", "tsx", "--input-type=module", "--eval", source], {

4050

encoding: "utf8",

@@ -79,7 +89,7 @@ describe("Parallels smoke model selection", () => {

7989

} else {

8090

expect(wrapper, wrapperPath).toContain(TS_PATHS[platform as "linux" | "macos" | "windows"]);

8191

}

82-

expect(wrapper.split("\n").filter(Boolean).length).toBeLessThanOrEqual(5);

92+

expect(countNonEmptyLines(wrapper)).toBeLessThanOrEqual(5);

8393

}

8494

});

8595
Original file line numberDiff line numberDiff line change

@@ -20,6 +20,16 @@ function requireTestConfig<T extends { test?: unknown }>(config: T): NonNullable

2020

return config.test as NonNullable<T["test"]>;

2121

}

2222
23+

function countMatching<T>(items: readonly T[], predicate: (item: T) => boolean): number {

24+

let count = 0;

25+

for (const item of items) {

26+

if (predicate(item)) {

27+

count += 1;

28+

}

29+

}

30+

return count;

31+

}

32+
2333

describe("unit-fast vitest lane", () => {

2434

it("runs cache-friendly tests without the reset-heavy runner or runtime setup", () => {

2535

const config = createUnitFastVitestConfig({});

@@ -122,7 +132,7 @@ describe("unit-fast vitest lane", () => {

122132
123133

expect(currentCandidates.length).toBeGreaterThanOrEqual(unitFastTestFiles.length);

124134

expect(broadCandidates.length).toBeGreaterThan(currentCandidates.length);

125-

expect(broadAnalysis.filter((entry) => entry.unitFast).length).toBeGreaterThan(

135+

expect(countMatching(broadAnalysis, (entry) => entry.unitFast)).toBeGreaterThan(

126136

unitFastTestFiles.length,

127137

);

128138

});