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

推荐订阅源

月光博客
月光博客
云风的 BLOG
云风的 BLOG
小众软件
小众软件
雷峰网
雷峰网
博客园 - 【当耐特】
V
V2EX
WordPress大学
WordPress大学
IT之家
IT之家
Last Week in AI
Last Week in AI
罗磊的独立博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Apple Machine Learning Research
Apple Machine Learning Research
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
The Cloudflare Blog
Jina AI
Jina AI
博客园 - 司徒正美
阮一峰的网络日志
阮一峰的网络日志
博客园 - 聂微东
大猫的无限游戏
大猫的无限游戏
博客园 - 三生石上(FineUI控件)
让小产品的独立变现更简单 - 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: clear migration selection broad matchers · openclaw...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -120,6 +120,54 @@ function plan(items: MigrationItem[]): MigrationPlan {

120120

};

121121

}

122122123+

function expectSummaryFields(

124+

summary: MigrationPlan["summary"],

125+

fields: Partial<MigrationPlan["summary"]>,

126+

) {

127+

for (const [key, value] of Object.entries(fields)) {

128+

expect(summary[key as keyof MigrationPlan["summary"]]).toBe(value);

129+

}

130+

}

131+132+

function requireItem(items: MigrationItem[], id: string): MigrationItem {

133+

const item = items.find((candidate) => candidate.id === id);

134+

expect(item).toBeDefined();

135+

if (!item) {

136+

throw new Error(`missing migration item ${id}`);

137+

}

138+

return item;

139+

}

140+141+

function expectItemStatus(

142+

items: MigrationItem[],

143+

id: string,

144+

status: MigrationItem["status"],

145+

reason?: string,

146+

) {

147+

const item = requireItem(items, id);

148+

expect(item.status).toBe(status);

149+

if (reason !== undefined) {

150+

expect(item.reason).toBe(reason);

151+

}

152+

}

153+154+

function requireRecord(value: unknown, label: string): Record<string, unknown> {

155+

expect(typeof value).toBe("object");

156+

expect(value).not.toBeNull();

157+

if (typeof value !== "object" || value === null) {

158+

throw new Error(`${label} was not an object`);

159+

}

160+

return value as Record<string, unknown>;

161+

}

162+163+

function requireCodexPluginConfigPlugins(item: MigrationItem): Record<string, unknown> {

164+

const details = requireRecord(item.details, "config details");

165+

const value = requireRecord(details.value, "config value");

166+

const config = requireRecord(value.config, "config object");

167+

const codexPlugins = requireRecord(config.codexPlugins, "codex plugin config");

168+

return requireRecord(codexPlugins.plugins, "configured plugins");

169+

}

170+123171

describe("applyMigrationSkillSelection", () => {

124172

it("keeps selected skills and skips unselected skill copy items", () => {

125173

const selected = applyMigrationSkillSelection(

@@ -142,23 +190,15 @@ describe("applyMigrationSkillSelection", () => {

142190

["alpha"],

143191

);

144192145-

expect(selected.summary).toMatchObject({

193+

expectSummaryFields(selected.summary, {

146194

total: 4,

147195

planned: 2,

148196

skipped: 2,

149197

conflicts: 0,

150198

});

151-

expect(selected.items).toEqual(

152-

expect.arrayContaining([

153-

expect.objectContaining({ id: "skill:alpha", status: "planned" }),

154-

expect.objectContaining({

155-

id: "skill:beta",

156-

status: "skipped",

157-

reason: MIGRATION_SKILL_NOT_SELECTED_REASON,

158-

}),

159-

expect.objectContaining({ id: "archive:config.toml", status: "planned" }),

160-

]),

161-

);

199+

expectItemStatus(selected.items, "skill:alpha", "planned");

200+

expectItemStatus(selected.items, "skill:beta", "skipped", MIGRATION_SKILL_NOT_SELECTED_REASON);

201+

expectItemStatus(selected.items, "archive:config.toml", "planned");

162202

});

163203164204

it("accepts item ids as non-interactive skill selectors", () => {

@@ -167,9 +207,8 @@ describe("applyMigrationSkillSelection", () => {

167207

["skill:alpha"],

168208

);

169209170-

expect(selected.items).toEqual([

171-

expect.objectContaining({ id: "skill:alpha", status: "planned" }),

172-

]);

210+

expect(selected.items).toHaveLength(1);

211+

expectItemStatus(selected.items, "skill:alpha", "planned");

173212

});

174213175214

it("can skip conflicting skills before apply conflict checks run", () => {

@@ -187,16 +226,8 @@ describe("applyMigrationSkillSelection", () => {

187226

);

188227189228

expect(selected.summary.conflicts).toBe(0);

190-

expect(selected.items).toEqual(

191-

expect.arrayContaining([

192-

expect.objectContaining({ id: "skill:alpha", status: "planned" }),

193-

expect.objectContaining({

194-

id: "skill:beta",

195-

status: "skipped",

196-

reason: MIGRATION_SKILL_NOT_SELECTED_REASON,

197-

}),

198-

]),

199-

);

229+

expectItemStatus(selected.items, "skill:alpha", "planned");

230+

expectItemStatus(selected.items, "skill:beta", "skipped", MIGRATION_SKILL_NOT_SELECTED_REASON);

200231

});

201232202233

it("allows interactive selection to choose no skills", () => {

@@ -208,7 +239,7 @@ describe("applyMigrationSkillSelection", () => {

208239

new Set(),

209240

);

210241211-

expect(selected.summary).toMatchObject({ planned: 0, skipped: 2 });

242+

expectSummaryFields(selected.summary, { planned: 0, skipped: 2 });

212243

expect(selected.items.map((item) => item.status)).toEqual(["skipped", "skipped"]);

213244

});

214245

@@ -381,45 +412,23 @@ describe("applyMigrationPluginSelection", () => {

381412

["google-calendar"],

382413

);

383414384-

expect(selected.summary).toMatchObject({ planned: 2, skipped: 1, conflicts: 0 });

385-

expect(selected.items).toEqual(

386-

expect.arrayContaining([

387-

expect.objectContaining({ id: "plugin:google-calendar", status: "planned" }),

388-

expect.objectContaining({

389-

id: "plugin:gmail",

390-

status: "skipped",

391-

reason: MIGRATION_PLUGIN_NOT_SELECTED_REASON,

392-

}),

393-

expect.objectContaining({ id: "config:codex-plugins", status: "planned" }),

394-

]),

415+

expectSummaryFields(selected.summary, { planned: 2, skipped: 1, conflicts: 0 });

416+

expectItemStatus(selected.items, "plugin:google-calendar", "planned");

417+

expectItemStatus(

418+

selected.items,

419+

"plugin:gmail",

420+

"skipped",

421+

MIGRATION_PLUGIN_NOT_SELECTED_REASON,

395422

);

396-

expect(

397-

selected.items.find((item) => item.id === "config:codex-plugins")?.details?.value,

398-

).toMatchObject({

399-

config: {

400-

codexPlugins: {

401-

plugins: {

402-

"google-calendar": {

403-

enabled: true,

404-

marketplaceName: "openai-curated",

405-

pluginName: "google-calendar",

406-

},

407-

},

408-

},

409-

},

423+

const configItem = requireItem(selected.items, "config:codex-plugins");

424+

expect(configItem.status).toBe("planned");

425+

const plugins = requireCodexPluginConfigPlugins(configItem);

426+

expect(requireRecord(plugins["google-calendar"], "google calendar plugin config")).toEqual({

427+

enabled: true,

428+

marketplaceName: "openai-curated",

429+

pluginName: "google-calendar",

410430

});

411-

expect(

412-

Object.keys(

413-

(

414-

(

415-

(

416-

selected.items.find((item) => item.id === "config:codex-plugins")?.details

417-

?.value as Record<string, unknown>

418-

).config as Record<string, unknown>

419-

).codexPlugins as Record<string, unknown>

420-

).plugins as Record<string, unknown>,

421-

),

422-

).toEqual(["google-calendar"]);

431+

expect(Object.keys(plugins)).toEqual(["google-calendar"]);

423432

});

424433425434

it("skips the Codex plugin config item when no plugin remains selected", () => {

@@ -432,25 +441,24 @@ describe("applyMigrationPluginSelection", () => {

432441

[],

433442

);

434443435-

expect(selected.summary).toMatchObject({ planned: 0, skipped: 3, conflicts: 0 });

436-

expect(selected.items).toEqual(

437-

expect.arrayContaining([

438-

expect.objectContaining({

439-

id: "plugin:google-calendar",

440-

status: "skipped",

441-

reason: MIGRATION_PLUGIN_NOT_SELECTED_REASON,

442-

}),

443-

expect.objectContaining({

444-

id: "plugin:gmail",

445-

status: "skipped",

446-

reason: MIGRATION_PLUGIN_NOT_SELECTED_REASON,

447-

}),

448-

expect.objectContaining({

449-

id: "config:codex-plugins",

450-

status: "skipped",

451-

reason: MIGRATION_PLUGIN_NOT_SELECTED_REASON,

452-

}),

453-

]),

444+

expectSummaryFields(selected.summary, { planned: 0, skipped: 3, conflicts: 0 });

445+

expectItemStatus(

446+

selected.items,

447+

"plugin:google-calendar",

448+

"skipped",

449+

MIGRATION_PLUGIN_NOT_SELECTED_REASON,

450+

);

451+

expectItemStatus(

452+

selected.items,

453+

"plugin:gmail",

454+

"skipped",

455+

MIGRATION_PLUGIN_NOT_SELECTED_REASON,

456+

);

457+

expectItemStatus(

458+

selected.items,

459+

"config:codex-plugins",

460+

"skipped",

461+

MIGRATION_PLUGIN_NOT_SELECTED_REASON,

454462

);

455463

});

456464

@@ -464,7 +472,7 @@ describe("applyMigrationPluginSelection", () => {

464472

new Set(),

465473

);

466474467-

expect(selected.summary).toMatchObject({ planned: 0, skipped: 3 });

475+

expectSummaryFields(selected.summary, { planned: 0, skipped: 3 });

468476

expect(selected.items.every((item) => item.status === "skipped")).toBe(true);

469477

});

470478

@@ -532,9 +540,8 @@ describe("applyMigrationPluginSelection", () => {

532540

["plugin:google-calendar"],

533541

);

534542535-

expect(selected.items).toEqual([

536-

expect.objectContaining({ id: "plugin:google-calendar", status: "planned" }),

537-

]);

543+

expect(selected.items).toHaveLength(1);

544+

expectItemStatus(selected.items, "plugin:google-calendar", "planned");

538545

});

539546540547

it("rejects unknown explicit plugin selectors with available choices", () => {