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

推荐订阅源

G
Google Developers Blog
D
Docker
Stack Overflow Blog
Stack Overflow Blog
GbyAI
GbyAI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Google DeepMind News
Google DeepMind News
M
MIT News - Artificial intelligence
H
Help Net Security
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
L
LangChain Blog
MongoDB | Blog
MongoDB | Blog
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
S
SegmentFault 最新的问题
博客园 - 司徒正美
C
Check Point Blog
B
Blog
Y
Y Combinator Blog
Microsoft Azure Blog
Microsoft Azure Blog
P
Proofpoint News Feed
F
Fortinet All Blogs
美团技术团队
D
DataBreaches.Net

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 model status broad matchers · openclaw/opencl...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -263,6 +263,56 @@ function createRuntime() {

263263

};

264264

}

265265266+

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

267+

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

268+

expect(value).not.toBeNull();

269+

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

270+

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

271+

}

272+

return value as Record<string, unknown>;

273+

}

274+275+

function expectRecordFields(record: Record<string, unknown>, fields: Record<string, unknown>) {

276+

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

277+

expect(record[key]).toEqual(value);

278+

}

279+

}

280+281+

function requireArray(value: unknown, label: string): unknown[] {

282+

expect(Array.isArray(value)).toBe(true);

283+

if (!Array.isArray(value)) {

284+

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

285+

}

286+

return value;

287+

}

288+289+

function requireProvider(providers: unknown, provider: string) {

290+

const entry = requireArray(providers, "auth providers").find(

291+

(candidate) => requireRecord(candidate, "auth provider").provider === provider,

292+

);

293+

expect(entry).toBeDefined();

294+

if (!entry) {

295+

throw new Error(`missing provider ${provider}`);

296+

}

297+

return requireRecord(entry, `provider ${provider}`);

298+

}

299+300+

function requireProfile(profiles: unknown, profileId: string) {

301+

const entry = requireArray(profiles, "auth profiles").find(

302+

(candidate) => requireRecord(candidate, "auth profile").profileId === profileId,

303+

);

304+

expect(entry).toBeDefined();

305+

if (!entry) {

306+

throw new Error(`missing profile ${profileId}`);

307+

}

308+

return requireRecord(entry, `profile ${profileId}`);

309+

}

310+311+

function expectResolveAgentDirCalledFor(agentId: string) {

312+

const hasCall = mocks.resolveAgentDir.mock.calls.some((call) => call[1] === agentId);

313+

expect(hasCall).toBe(true);

314+

}

315+266316

async function withAgentScopeOverrides<T>(

267317

overrides: {

268318

primary?: string;

@@ -314,7 +364,7 @@ describe("modelsStatusCommand auth overview", () => {

314364

await modelsStatusCommand({ json: true }, runtime as never);

315365

const payload = JSON.parse(String((runtime.log as Mock).mock.calls[0]?.[0]));

316366317-

expect(mocks.resolveAgentDir).toHaveBeenCalledWith(expect.anything(), "main");

367+

expectResolveAgentDirCalledFor("main");

318368

expect(mocks.ensureAuthProfileStore).toHaveBeenCalled();

319369

expect(payload.defaultModel).toBe("anthropic/claude-opus-4-6");

320370

expect(payload.configPath).toBe("/tmp/openclaw-dev/openclaw.json");

@@ -347,17 +397,11 @@ describe("modelsStatusCommand auth overview", () => {

347397

provider.startsWith("openai "),

348398

),

349399

).toBe(false);

350-

expect(providers).toEqual(

351-

expect.arrayContaining([

352-

expect.objectContaining({

353-

provider: "minimax",

354-

effective: expect.objectContaining({ kind: "env" }),

355-

}),

356-

expect.objectContaining({

357-

provider: "fal",

358-

effective: expect.objectContaining({ kind: "env" }),

359-

}),

360-

]),

400+

expect(

401+

requireRecord(requireProvider(providers, "minimax").effective, "minimax effective").kind,

402+

).toBe("env");

403+

expect(requireRecord(requireProvider(providers, "fal").effective, "fal effective").kind).toBe(

404+

"env",

361405

);

362406363407

expect(

@@ -400,7 +444,7 @@ describe("modelsStatusCommand auth overview", () => {

400444

},

401445

async () => {

402446

await modelsStatusCommand({ json: true, agent: "Jeremiah" }, localRuntime as never);

403-

expect(mocks.resolveAgentDir).toHaveBeenCalledWith(expect.anything(), "jeremiah");

447+

expectResolveAgentDirCalledFor("jeremiah");

404448

const payload = JSON.parse(String((localRuntime.log as Mock).mock.calls[0]?.[0]));

405449

expect(payload.agentId).toBe("jeremiah");

406450

expect(payload.agentDir).toBe("/tmp/openclaw-agent-custom");

@@ -548,26 +592,11 @@ describe("modelsStatusCommand auth overview", () => {

548592

await modelsStatusCommand({ json: true, check: true }, localRuntime as never);

549593

const payload = JSON.parse(String((localRuntime.log as Mock).mock.calls[0]?.[0]));

550594

expect(payload.auth.missingProvidersInUse).toEqual([]);

551-

expect(payload.auth.oauth.profiles).toEqual(

552-

expect.arrayContaining([

553-

expect.objectContaining({

554-

profileId: "openai-codex:default",

555-

status: "expired",

556-

}),

557-

expect.objectContaining({

558-

profileId: "openai-codex:named",

559-

status: "ok",

560-

}),

561-

]),

562-

);

563-

expect(payload.auth.oauth.providers).toEqual(

564-

expect.arrayContaining([

565-

expect.objectContaining({

566-

provider: "openai-codex",

567-

status: "ok",

568-

}),

569-

]),

595+

expect(requireProfile(payload.auth.oauth.profiles, "openai-codex:default").status).toBe(

596+

"expired",

570597

);

598+

expect(requireProfile(payload.auth.oauth.profiles, "openai-codex:named").status).toBe("ok");

599+

expect(requireProvider(payload.auth.oauth.providers, "openai-codex").status).toBe("ok");

571600

expect(localRuntime.exit).not.toHaveBeenCalledWith(1);

572601

} finally {

573602

mocks.store.profiles = originalProfiles;

@@ -797,14 +826,10 @@ describe("modelsStatusCommand auth overview", () => {

797826

try {

798827

await modelsStatusCommand({ json: true, check: true }, localRuntime as never);

799828

const payload = JSON.parse(String((localRuntime.log as Mock).mock.calls[0]?.[0]));

800-

expect(payload.auth.providers).toEqual(

801-

expect.arrayContaining([

802-

expect.objectContaining({

803-

provider: "anthropic",

804-

env: expect.objectContaining({ source: "env: ANTHROPIC_OAUTH_TOKEN" }),

805-

}),

806-

]),

807-

);

829+

expect(

830+

requireRecord(requireProvider(payload.auth.providers, "anthropic").env, "anthropic env")

831+

.source,

832+

).toBe("env: ANTHROPIC_OAUTH_TOKEN");

808833

expect(localRuntime.exit).not.toHaveBeenCalledWith(1);

809834

expect(localRuntime.exit).not.toHaveBeenCalledWith(2);

810835

} finally {

@@ -907,9 +932,12 @@ describe("modelsStatusCommand auth overview", () => {

907932

await modelsStatusCommand({ json: true, check: true }, localRuntime as never);

908933

const payload = JSON.parse(String((localRuntime.log as Mock).mock.calls[0]?.[0]));

909934

expect(payload.auth.missingProvidersInUse).toEqual(["anthropic"]);

910-

expect(mocks.resolveUsableCustomProviderApiKey).toHaveBeenCalledWith(

911-

expect.objectContaining({ provider: "anthropic" }),

912-

);

935+

expect(

936+

mocks.resolveUsableCustomProviderApiKey.mock.calls.some(

937+

([params]) =>

938+

requireRecord(params, "custom provider key params").provider === "anthropic",

939+

),

940+

).toBe(true);

913941

expect(localRuntime.exit).toHaveBeenCalledWith(1);

914942

} finally {

915943

mocks.store.profiles = originalProfiles;

@@ -1117,21 +1145,15 @@ describe("modelsStatusCommand auth overview", () => {

11171145

effective?: { kind: string; detail?: string };

11181146

}>;

11191147

expect(payload.auth.missingProvidersInUse).toStrictEqual([]);

1120-

expect(providers).toEqual(

1121-

expect.arrayContaining([

1122-

expect.objectContaining({

1123-

provider: "codex",

1124-

syntheticAuth: expect.objectContaining({

1125-

value: "plugin-owned",

1126-

source: "codex-app-server",

1127-

}),

1128-

effective: {

1129-

kind: "synthetic",

1130-

detail: "codex-app-server",

1131-

},

1132-

}),

1133-

]),

1134-

);

1148+

const codexProvider = requireProvider(providers, "codex");

1149+

expectRecordFields(requireRecord(codexProvider.syntheticAuth, "codex synthetic auth"), {

1150+

value: "plugin-owned",

1151+

source: "codex-app-server",

1152+

});

1153+

expectRecordFields(requireRecord(codexProvider.effective, "codex effective auth"), {

1154+

kind: "synthetic",

1155+

detail: "codex-app-server",

1156+

});

11351157

expect(providers.map((entry) => entry.provider)).not.toContain("unused-synthetic");

11361158

} finally {

11371159

if (originalLoadConfig) {

@@ -1244,14 +1266,12 @@ describe("modelsStatusCommand auth overview", () => {

12441266

try {

12451267

await modelsStatusCommand({ json: true }, localRuntime as never);

12461268

const payload = JSON.parse(String((localRuntime.log as Mock).mock.calls[0]?.[0]));

1247-

expect(payload.auth.providers).toEqual(

1248-

expect.arrayContaining([

1249-

expect.objectContaining({

1250-

provider: "workspace-cloud",

1251-

effective: expect.objectContaining({ kind: "env" }),

1252-

env: expect.objectContaining({ source: "workspace cloud credentials" }),

1253-

}),

1254-

]),

1269+

const workspaceProvider = requireProvider(payload.auth.providers, "workspace-cloud");

1270+

expect(requireRecord(workspaceProvider.effective, "workspace effective auth").kind).toBe(

1271+

"env",

1272+

);

1273+

expect(requireRecord(workspaceProvider.env, "workspace env auth").source).toBe(

1274+

"workspace cloud credentials",

12551275

);

12561276

} finally {

12571277

if (originalKeysImpl) {