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

推荐订阅源

Hugging Face - Blog
Hugging Face - Blog
量子位
H
Help Net Security
Microsoft Azure Blog
Microsoft Azure Blog
MongoDB | Blog
MongoDB | Blog
小众软件
小众软件
爱范儿
爱范儿
博客园 - 【当耐特】
Vercel News
Vercel News
S
SegmentFault 最新的问题
M
MIT News - Artificial intelligence
F
Fortinet All Blogs
Apple Machine Learning Research
Apple Machine Learning Research
GbyAI
GbyAI
博客园 - 叶小钗
博客园_首页
V
Visual Studio Blog
宝玉的分享
宝玉的分享
B
Blog
MyScale Blog
MyScale Blog
C
Check Point Blog
博客园 - 三生石上(FineUI控件)
L
LangChain Blog
V
V2EX

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 secrets cli assertions · openclaw/openclaw@...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -119,6 +119,29 @@ function createSecretsApplyResult(options?: {

119119

};

120120

}

121121122+

function mockCall(mock: unknown, index = 0): Array<unknown> {

123+

const calls = (mock as { mock?: { calls?: Array<Array<unknown>> } }).mock?.calls ?? [];

124+

const call = calls.at(index);

125+

expect(call, `mock call ${index + 1}`).toBeDefined();

126+

return call as Array<unknown>;

127+

}

128+129+

function mockFirstObjectArg(mock: unknown): Record<string, unknown> {

130+

const [arg] = mockCall(mock);

131+

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

132+

expect(arg).not.toBeNull();

133+

return arg as Record<string, unknown>;

134+

}

135+136+

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

137+

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

138+

expect(value).not.toBeNull();

139+

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

140+

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

141+

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

142+

}

143+

}

144+122145

async function withPlanFile(run: (planPath: string) => Promise<void>) {

123146

const planPath = path.join(

124147

os.tmpdir(),

@@ -159,12 +182,11 @@ describe("secrets CLI", () => {

159182

it("calls secrets.reload and prints human output", async () => {

160183

callGatewayFromCli.mockResolvedValue({ ok: true, warningCount: 1 });

161184

await createProgram().parseAsync(["secrets", "reload"], { from: "user" });

162-

expect(callGatewayFromCli).toHaveBeenCalledWith(

163-

"secrets.reload",

164-

expect.anything(),

165-

undefined,

166-

expect.objectContaining({ expectFinal: false }),

167-

);

185+

const reloadCall = mockCall(callGatewayFromCli);

186+

expect(reloadCall[0]).toBe("secrets.reload");

187+

expect(reloadCall[1]).toBeDefined();

188+

expect(reloadCall[2]).toBeUndefined();

189+

expectObjectFields(reloadCall[3], { expectFinal: false });

168190

expect(runtimeLogs.at(-1)).toBe("Secrets reloaded with 1 warning(s).");

169191

expect(runtimeErrors).toHaveLength(0);

170192

});

@@ -217,12 +239,10 @@ describe("secrets CLI", () => {

217239

await expect(

218240

createProgram().parseAsync(["secrets", "audit", "--check"], { from: "user" }),

219241

).rejects.toThrow("__exit__:2");

220-

expect(runSecretsAudit).toHaveBeenCalledWith(

221-

expect.objectContaining({

222-

allowExec: false,

223-

}),

224-

);

225-

expect(resolveSecretsAuditExitCode).toHaveBeenCalledWith(expect.anything(), true);

242+

expect(mockFirstObjectArg(runSecretsAudit).allowExec).toBe(false);

243+

const exitCodeCall = mockCall(resolveSecretsAuditExitCode);

244+

expect(exitCodeCall[0]).toBeDefined();

245+

expect(exitCodeCall[1]).toBe(true);

226246

});

227247228248

it("forwards --allow-exec to secrets audit", async () => {

@@ -246,11 +266,7 @@ describe("secrets CLI", () => {

246266

resolveSecretsAuditExitCode.mockReturnValue(0);

247267248268

await createProgram().parseAsync(["secrets", "audit", "--allow-exec"], { from: "user" });

249-

expect(runSecretsAudit).toHaveBeenCalledWith(

250-

expect.objectContaining({

251-

allowExec: true,

252-

}),

253-

);

269+

expect(mockFirstObjectArg(runSecretsAudit).allowExec).toBe(true);

254270

});

255271256272

it("runs secrets configure then apply when confirmed", async () => {

@@ -276,19 +292,17 @@ describe("secrets CLI", () => {

276292277293

await createProgram().parseAsync(["secrets", "configure"], { from: "user" });

278294

expect(runSecretsConfigureInteractive).toHaveBeenCalled();

279-

expect(runSecretsApply).toHaveBeenCalledWith(

280-

expect.objectContaining({

281-

write: true,

282-

plan: expect.objectContaining({

283-

targets: expect.arrayContaining([

284-

expect.objectContaining({

285-

type: "skills.entries.apiKey",

286-

path: "skills.entries.qa-secret-test.apiKey",

287-

}),

288-

]),

289-

}),

290-

}),

291-

);

295+

const applyArgs = mockFirstObjectArg(runSecretsApply);

296+

expect(applyArgs.write).toBe(true);

297+

expect(applyArgs.plan).toBeTypeOf("object");

298+

expect(applyArgs.plan).not.toBeNull();

299+

const applyPlan = applyArgs.plan as { targets?: unknown[] };

300+

expect(Array.isArray(applyPlan.targets)).toBe(true);

301+

const [target] = applyPlan.targets ?? [];

302+

expectObjectFields(target, {

303+

type: "skills.entries.apiKey",

304+

path: "skills.entries.qa-secret-test.apiKey",

305+

});

292306

expect(runtimeLogs.at(-1)).toContain("Secrets applied");

293307

});

294308

@@ -297,12 +311,10 @@ describe("secrets CLI", () => {

297311

confirm.mockResolvedValue(false);

298312299313

await createProgram().parseAsync(["secrets", "configure", "--agent", "ops"], { from: "user" });

300-

expect(runSecretsConfigureInteractive).toHaveBeenCalledWith(

301-

expect.objectContaining({

302-

agentId: "ops",

303-

allowExecInPreflight: false,

304-

}),

305-

);

314+

expectObjectFields(mockFirstObjectArg(runSecretsConfigureInteractive), {

315+

agentId: "ops",

316+

allowExecInPreflight: false,

317+

});

306318

});

307319308320

it("forwards --allow-exec to secrets apply dry-run", async () => {

@@ -315,12 +327,10 @@ describe("secrets CLI", () => {

315327

from: "user",

316328

},

317329

);

318-

expect(runSecretsApply).toHaveBeenCalledWith(

319-

expect.objectContaining({

320-

write: false,

321-

allowExec: true,

322-

}),

323-

);

330+

expectObjectFields(mockFirstObjectArg(runSecretsApply), {

331+

write: false,

332+

allowExec: true,

333+

});

324334

});

325335

});

326336

@@ -331,12 +341,10 @@ describe("secrets CLI", () => {

331341

await createProgram().parseAsync(["secrets", "apply", "--from", planPath, "--allow-exec"], {

332342

from: "user",

333343

});

334-

expect(runSecretsApply).toHaveBeenCalledWith(

335-

expect.objectContaining({

336-

write: true,

337-

allowExec: true,

338-

}),

339-

);

344+

expectObjectFields(mockFirstObjectArg(runSecretsApply), {

345+

write: true,

346+

allowExec: true,

347+

});

340348

});

341349

});

342350

@@ -374,16 +382,10 @@ describe("secrets CLI", () => {

374382

await createProgram().parseAsync(["secrets", "configure", "--apply", "--yes", "--allow-exec"], {

375383

from: "user",

376384

});

377-

expect(runSecretsConfigureInteractive).toHaveBeenCalledWith(

378-

expect.objectContaining({

379-

allowExecInPreflight: true,

380-

}),

381-

);

382-

expect(runSecretsApply).toHaveBeenCalledWith(

383-

expect.objectContaining({

384-

write: true,

385-

allowExec: true,

386-

}),

387-

);

385+

expect(mockFirstObjectArg(runSecretsConfigureInteractive).allowExecInPreflight).toBe(true);

386+

expectObjectFields(mockFirstObjectArg(runSecretsApply), {

387+

write: true,

388+

allowExec: true,

389+

});

388390

});

389391

});