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

推荐订阅源

U
Unit 42
Google DeepMind News
Google DeepMind News
Stack Overflow Blog
Stack Overflow Blog
H
Help Net Security
MongoDB | Blog
MongoDB | Blog
I
InfoQ
N
Netflix TechBlog - Medium
T
Tailwind CSS Blog
量子位
博客园 - 叶小钗
月光博客
月光博客
IT之家
IT之家
G
Google Developers Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
S
SegmentFault 最新的问题
Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
aimingoo的专栏
aimingoo的专栏
云风的 BLOG
云风的 BLOG
Vercel News
Vercel News
爱范儿
爱范儿
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享

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: clarify config legacy issue assertions · openclaw/o...
steipete · 2026-05-08 · via Recent Commits to openclaw:main

@@ -39,6 +39,14 @@ const nonBooleanConfigCases = [

3939

},

4040

];

414142+

function issuePaths(issues: Array<{ path: string }>): string[] {

43+

return issues.map((issue) => issue.path);

44+

}

45+46+

function issueMessages(issues: Array<{ message: string }>): string[] {

47+

return issues.map((issue) => issue.message);

48+

}

49+4250

describe("boolean config validation", () => {

4351

it.each(nonBooleanConfigCases)("rejects non-boolean values for $name", ({ config }) => {

4452

const result = OpenClawSchema.safeParse(config);

@@ -986,8 +994,10 @@ describe("config strict validation", () => {

986994

const snap = await readConfigFileSnapshot();

987995988996

expect(snap.valid).toBe(false);

989-

expect(snap.issues.some((issue) => issue.message.includes('"memorySearch"'))).toBe(true);

990-

expect(snap.legacyIssues.some((issue) => issue.path === "memorySearch")).toBe(true);

997+

expect(issueMessages(snap.issues)).toEqual(

998+

expect.arrayContaining([expect.stringContaining('"memorySearch"')]),

999+

);

1000+

expect(issuePaths(snap.legacyIssues)).toContain("memorySearch");

9911001

expect((snap.sourceConfig as { memorySearch?: unknown }).memorySearch).toMatchObject({

9921002

provider: "local",

9931003

fallback: "none",

@@ -1009,8 +1019,10 @@ describe("config strict validation", () => {

10091019

const snap = await readConfigFileSnapshot();

1010102010111021

expect(snap.valid).toBe(false);

1012-

expect(snap.issues.some((issue) => issue.message.includes('"heartbeat"'))).toBe(true);

1013-

expect(snap.legacyIssues.some((issue) => issue.path === "heartbeat")).toBe(true);

1022+

expect(issueMessages(snap.issues)).toEqual(

1023+

expect.arrayContaining([expect.stringContaining('"heartbeat"')]),

1024+

);

1025+

expect(issuePaths(snap.legacyIssues)).toContain("heartbeat");

10141026

expect((snap.sourceConfig as { heartbeat?: unknown }).heartbeat).toMatchObject({

10151027

every: "30m",

10161028

model: "anthropic/claude-3-5-haiku-20241022",

@@ -1032,8 +1044,10 @@ describe("config strict validation", () => {

10321044

const snap = await readConfigFileSnapshot();

1033104510341046

expect(snap.valid).toBe(false);

1035-

expect(snap.issues.some((issue) => issue.message.includes('"heartbeat"'))).toBe(true);

1036-

expect(snap.legacyIssues.some((issue) => issue.path === "heartbeat")).toBe(true);

1047+

expect(issueMessages(snap.issues)).toEqual(

1048+

expect.arrayContaining([expect.stringContaining('"heartbeat"')]),

1049+

);

1050+

expect(issuePaths(snap.legacyIssues)).toContain("heartbeat");

10371051

expect((snap.sourceConfig as { heartbeat?: unknown }).heartbeat).toMatchObject({

10381052

showOk: true,

10391053

showAlerts: false,

@@ -1057,7 +1071,7 @@ describe("config strict validation", () => {

10571071

};

10581072

const issues = findLegacyConfigIssues(raw);

105910731060-

expect(issues.some((issue) => issue.path === "messages.tts")).toBe(true);

1074+

expect(issuePaths(issues)).toContain("messages.tts");

10611075

expect(raw.messages.tts.elevenlabs).toEqual({

10621076

apiKey: "test-key",

10631077

voiceId: "voice-1",

@@ -1088,12 +1102,12 @@ describe("config strict validation", () => {

10881102

const snap = await readConfigFileSnapshot();

1089110310901104

expect(snap.valid).toBe(false);

1091-

expect(snap.issues.some((issue) => issue.path === "agents.defaults.sandbox")).toBe(true);

1092-

expect(snap.issues.some((issue) => issue.path === "agents.list.0.sandbox")).toBe(true);

1093-

expect(snap.legacyIssues.some((issue) => issue.path === "agents.defaults.sandbox")).toBe(

1094-

true,

1105+

expect(issuePaths(snap.issues)).toEqual(

1106+

expect.arrayContaining(["agents.defaults.sandbox", "agents.list.0.sandbox"]),

1107+

);

1108+

expect(issuePaths(snap.legacyIssues)).toEqual(

1109+

expect.arrayContaining(["agents.defaults.sandbox", "agents.list"]),

10951110

);

1096-

expect(snap.legacyIssues.some((issue) => issue.path === "agents.list")).toBe(true);

10971111

expect(snap.sourceConfig.agents?.defaults?.sandbox).toEqual({ perSession: true });

10981112

expect(snap.sourceConfig.agents?.list?.[0]?.sandbox).toEqual({ perSession: false });

10991113

});

@@ -1111,7 +1125,7 @@ describe("config strict validation", () => {

11111125

const snap = await readConfigFileSnapshot();

11121126

expect(snap.valid).toBe(false);

11131127

expect(snap.legacyIssues).toHaveLength(0);

1114-

expect(snap.issues.some((issue) => issue.path === "gateway.bind")).toBe(true);

1128+

expect(issuePaths(snap.issues)).toContain("gateway.bind");

11151129

} finally {

11161130

if (prev === undefined) {

11171131

delete process.env.OPENCLAW_BIND;

@@ -1130,8 +1144,8 @@ describe("config strict validation", () => {

1130114411311145

const snap = await readConfigFileSnapshot();

11321146

expect(snap.valid).toBe(false);

1133-

expect(snap.issues.some((issue) => issue.path === "gateway.bind")).toBe(true);

1134-

expect(snap.legacyIssues.some((issue) => issue.path === "gateway.bind")).toBe(true);

1147+

expect(issuePaths(snap.issues)).toContain("gateway.bind");

1148+

expect(issuePaths(snap.legacyIssues)).toContain("gateway.bind");

11351149

});

11361150

});

11371151

});