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

推荐订阅源

A
About on SuperTechFans
G
Google Developers Blog
L
LangChain Blog
aimingoo的专栏
aimingoo的专栏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
云风的 BLOG
云风的 BLOG
小众软件
小众软件
月光博客
月光博客
Recent Announcements
Recent Announcements
人人都是产品经理
人人都是产品经理
P
Proofpoint News Feed
博客园 - 聂微东
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
雷峰网
雷峰网
The Cloudflare Blog
博客园_首页
美团技术团队
大猫的无限游戏
大猫的无限游戏
B
Blog
IT之家
IT之家
Jina AI
Jina AI
H
Hackread – Cybersecurity News, Data Breaches, AI and More
C
Check Point 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 gateway session assertions · openclaw/openc...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -83,6 +83,15 @@ function requireString(value: string | undefined, label: string): string {

8383

return value;

8484

}

858586+

function expectFields(value: unknown, expected: Record<string, unknown>): void {

87+

expect(value).toBeTypeOf("object");

88+

expect(value).not.toBeNull();

89+

const record = value as Record<string, unknown>;

90+

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

91+

expect(record[key], key).toEqual(expectedValue);

92+

}

93+

}

94+8695

describe("gateway session utils", () => {

8796

afterEach(() => {

8897

resetConfigRuntimeState();

@@ -198,21 +207,22 @@ describe("gateway session utils", () => {

198207

createModelDefaultsConfig({ primary: "openai-codex/gpt-5.5" }),

199208

);

200209201-

expect(defaults).toMatchObject({

210+

expectFields(defaults, {

202211

modelProvider: "openai-codex",

203212

model: "gpt-5.5",

204213

thinkingDefault: "adaptive",

205214

});

206-

expect(defaults.thinkingLevels).toEqual(

207-

expect.arrayContaining([

208-

{ id: "adaptive", label: "adaptive" },

209-

{ id: "xhigh", label: "xhigh" },

210-

{ id: "max", label: "maximum" },

211-

]),

212-

);

213-

expect(defaults.thinkingOptions).toEqual(

214-

expect.arrayContaining(["adaptive", "xhigh", "maximum"]),

215+

const levelLabels = Object.fromEntries(

216+

defaults.thinkingLevels?.map((level) => [level.id, level.label]) ?? [],

215217

);

218+

expectFields(levelLabels, {

219+

adaptive: "adaptive",

220+

xhigh: "xhigh",

221+

max: "maximum",

222+

});

223+

expect(defaults.thinkingOptions).toContain("adaptive");

224+

expect(defaults.thinkingOptions).toContain("xhigh");

225+

expect(defaults.thinkingOptions).toContain("maximum");

216226

});

217227218228

test("session defaults and rows use catalog reasoning metadata for provider thinking options", () => {

@@ -421,7 +431,7 @@ describe("gateway session utils", () => {

421431

},

422432

} as OpenClawConfig);

423433424-

expect(defaults).toMatchObject({

434+

expectFields(defaults, {

425435

modelProvider: "openai-codex",

426436

model: "gpt-5.5",

427437

thinkingDefault: "high",

@@ -457,7 +467,7 @@ describe("gateway session utils", () => {

457467

key: "agent:alpha:main",

458468

});

459469460-

expect(row).toMatchObject({

470+

expectFields(row, {

461471

modelProvider: "openai-codex",

462472

model: "gpt-5.5",

463473

thinkingDefault: "high",

@@ -486,7 +496,7 @@ describe("gateway session utils", () => {

486496

key: "main",

487497

});

488498489-

expect(row).toMatchObject({

499+

expectFields(row, {

490500

modelProvider: "openai-codex",

491501

model: "gpt-5.5",

492502

thinkingDefault: "max",

@@ -612,7 +622,8 @@ describe("gateway session utils", () => {

612622

} as OpenClawConfig;

613623

const target = resolveGatewaySessionStoreTarget({ cfg, key: "main" });

614624

expect(target.canonicalKey).toBe("agent:ops:main");

615-

expect(target.storeKeys).toEqual(expect.arrayContaining(["agent:ops:main", "main"]));

625+

expect(target.storeKeys).toContain("agent:ops:main");

626+

expect(target.storeKeys).toContain("main");

616627

expect(target.storePath).toBe(path.resolve(storeTemplate.replace("{agentId}", "ops")));

617628

});

618629

@@ -630,9 +641,8 @@ describe("gateway session utils", () => {

630641

} as OpenClawConfig;

631642

const target = resolveGatewaySessionStoreTarget({ cfg, key: "agent:ops:mysession" });

632643

expect(target.canonicalKey).toBe("agent:ops:mysession");

633-

expect(target.storeKeys).toEqual(

634-

expect.arrayContaining(["agent:ops:mysession", "agent:ops:MySession"]),

635-

);

644+

expect(target.storeKeys).toContain("agent:ops:mysession");

645+

expect(target.storeKeys).toContain("agent:ops:MySession");

636646

const store = JSON.parse(fs.readFileSync(storePath, "utf8"));

637647

const found = target.storeKeys.some((k) => Boolean(store[k]));

638648

expect(found).toBe(true);

@@ -654,9 +664,8 @@ describe("gateway session utils", () => {

654664

agents: { list: [{ id: "ops", default: true }] },

655665

} as OpenClawConfig;

656666

const target = resolveGatewaySessionStoreTarget({ cfg, key: "agent:ops:mysession" });

657-

expect(target.storeKeys).toEqual(

658-

expect.arrayContaining(["agent:ops:mysession", "agent:ops:MySession"]),

659-

);

667+

expect(target.storeKeys).toContain("agent:ops:mysession");

668+

expect(target.storeKeys).toContain("agent:ops:MySession");

660669

});

661670662671

test("resolveGatewaySessionStoreTarget finds legacy main alias key when mainKey is customized", () => {

@@ -673,7 +682,7 @@ describe("gateway session utils", () => {

673682

} as OpenClawConfig;

674683

const target = resolveGatewaySessionStoreTarget({ cfg, key: "agent:ops:main" });

675684

expect(target.canonicalKey).toBe("agent:ops:work");

676-

expect(target.storeKeys).toEqual(expect.arrayContaining(["agent:ops:MAIN"]));

685+

expect(target.storeKeys).toContain("agent:ops:MAIN");

677686

});

678687679688

test("resolveGatewaySessionStoreTarget preserves discovered store paths for non-round-tripping agent dirs", async () => {

@@ -1062,17 +1071,17 @@ describe("gateway session utils", () => {

10621071

} as OpenClawConfig;

1063107210641073

const result = listAgentsForGateway(cfg);

1065-

expect(result.agents[0]).toMatchObject({

1074+

expectFields(result.agents[0], {

10661075

id: "main",

10671076

workspace: "/tmp/default-workspace",

1068-

model: {

1069-

primary: "openai/gpt-5.4",

1070-

fallbacks: ["openai-codex/gpt-5.4"],

1071-

},

1072-

agentRuntime: {

1073-

id: "codex",

1074-

source: "implicit",

1075-

},

1077+

});

1078+

expect(result.agents[0]?.model).toEqual({

1079+

primary: "openai/gpt-5.4",

1080+

fallbacks: ["openai-codex/gpt-5.4"],

1081+

});

1082+

expect(result.agents[0]?.agentRuntime).toEqual({

1083+

id: "codex",

1084+

source: "implicit",

10761085

});

10771086

});

10781087

@@ -1097,12 +1106,12 @@ describe("gateway session utils", () => {

10971106

} as OpenClawConfig;

1098110710991108

const result = listAgentsForGateway(cfg);

1100-

expect(result.agents[0]).toMatchObject({

1109+

expectFields(result.agents[0], {

11011110

id: "main",

1102-

agentRuntime: {

1103-

id: "codex",

1104-

source: "provider",

1105-

},

1111+

});

1112+

expect(result.agents[0]?.agentRuntime).toEqual({

1113+

id: "codex",

1114+

source: "provider",

11061115

});

11071116

});

11081117

@@ -1320,13 +1329,11 @@ describe("listSessionsFromStore selected model display", () => {

13201329

expect(listed.count).toBe(expected.count);

13211330

expect(listed.defaults).toEqual(expected.defaults);

13221331

expect(listed.sessions).toHaveLength(expected.sessions.length);

1323-

expect(listed.sessions[0]).toEqual(

1324-

expect.objectContaining({

1325-

key: "agent:main:sess-yield-0",

1326-

derivedTitle: "title 0",

1327-

lastMessagePreview: "last 0",

1328-

}),

1329-

);

1332+

expectFields(listed.sessions[0], {

1333+

key: "agent:main:sess-yield-0",

1334+

derivedTitle: "title 0",

1335+

lastMessagePreview: "last 0",

1336+

});

13301337

expect(listed.sessions[0]?.agentRuntime).toEqual({ id: "codex", source: "implicit" });

13311338

expect(listed.sessions[0]?.thinkingLevel).toBeUndefined();

13321339

expect(listed.sessions[0]?.thinkingLevels?.length).toBeGreaterThan(0);