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

推荐订阅源

Google DeepMind News
Google DeepMind News
aimingoo的专栏
aimingoo的专栏
爱范儿
爱范儿
D
Docker
I
InfoQ
Microsoft Security Blog
Microsoft Security Blog
G
Google Developers Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Vercel News
Vercel News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
T
Tailwind CSS Blog
D
DataBreaches.Net
月光博客
月光博客
N
Netflix TechBlog - Medium
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
Visual Studio Blog
MyScale Blog
MyScale Blog
B
Blog
阮一峰的网络日志
阮一峰的网络日志
L
LangChain Blog
Recent Announcements
Recent Announcements
Microsoft Azure Blog
Microsoft Azure Blog
WordPress大学
WordPress大学

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 model auth assertions · openclaw/openclaw@2...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -3,6 +3,38 @@ import type { OpenClawConfig } from "../../config/config.js";

33

import type { ProviderPlugin } from "../../plugins/types.js";

44

import type { RuntimeEnv } from "../../runtime.js";

556+

type AuthRunCall = {

7+

agentDir?: string;

8+

workspaceDir?: string;

9+

};

10+11+

type ResolvePluginProvidersCall = {

12+

activate?: boolean;

13+

bundledProviderAllowlistCompat?: boolean;

14+

bundledProviderVitestCompat?: boolean;

15+

config?: unknown;

16+

includeUntrustedWorkspacePlugins?: boolean;

17+

providerRefs?: string[];

18+

workspaceDir?: string;

19+

};

20+21+

type UpsertAuthProfileCall = {

22+

agentDir?: string;

23+

credential?: {

24+

provider?: string;

25+

type?: string;

26+

};

27+

profileId?: string;

28+

};

29+30+

function readMockCallArg(mock: { mock: { calls: unknown[][] } }, index = 0): unknown {

31+

const value = mock.mock.calls[index]?.[0];

32+

if (!value) {

33+

throw new Error("Expected mock call argument");

34+

}

35+

return value;

36+

}

37+638

const mocks = vi.hoisted(() => ({

739

clackCancel: vi.fn(),

840

clackConfirm: vi.fn(),

@@ -386,23 +418,19 @@ describe("modelsAuthLoginCommand", () => {

386418

runProviderAuth.mock.invocationCallOrder[0],

387419

);

388420

expect(runProviderAuth).toHaveBeenCalledOnce();

389-

expect(mocks.upsertAuthProfile).toHaveBeenCalledWith({

390-

profileId: "openai-codex:user@example.com",

391-

credential: expect.objectContaining({

392-

type: "oauth",

393-

provider: "openai-codex",

394-

}),

395-

agentDir: "/tmp/openclaw/agents/main",

396-

});

421+

const upsertCall = readMockCallArg(mocks.upsertAuthProfile) as UpsertAuthProfileCall;

422+

expect(upsertCall.profileId).toBe("openai-codex:user@example.com");

423+

expect(upsertCall.credential?.type).toBe("oauth");

424+

expect(upsertCall.credential?.provider).toBe("openai-codex");

425+

expect(upsertCall.agentDir).toBe("/tmp/openclaw/agents/main");

397426

expect(mocks.promoteAuthProfileInOrder).toHaveBeenCalledWith({

398427

agentDir: "/tmp/openclaw/agents/main",

399428

provider: "openai-codex",

400429

profileId: "openai-codex:user@example.com",

401430

});

402-

expect(lastUpdatedConfig?.auth?.profiles?.["openai-codex:user@example.com"]).toMatchObject({

403-

provider: "openai-codex",

404-

mode: "oauth",

405-

});

431+

const savedProfile = lastUpdatedConfig?.auth?.profiles?.["openai-codex:user@example.com"];

432+

expect(savedProfile?.provider).toBe("openai-codex");

433+

expect(savedProfile?.mode).toBe("oauth");

406434

expect(runtime.log).toHaveBeenCalledWith(

407435

"Auth profile: openai-codex:user@example.com (openai-codex/oauth)",

408436

);

@@ -442,14 +470,11 @@ describe("modelsAuthLoginCommand", () => {

442470

},

443471

},

444472

);

445-

expect(runProviderAuth).toHaveBeenCalledWith(

446-

expect.objectContaining({

447-

agentDir: "/tmp/openclaw/agents/coder",

448-

workspaceDir: "/tmp/openclaw/workspaces/coder",

449-

}),

450-

);

451-

expect(mocks.upsertAuthProfile).toHaveBeenCalledWith(

452-

expect.objectContaining({ agentDir: "/tmp/openclaw/agents/coder" }),

473+

const authRunCall = readMockCallArg(runProviderAuth) as AuthRunCall;

474+

expect(authRunCall.agentDir).toBe("/tmp/openclaw/agents/coder");

475+

expect(authRunCall.workspaceDir).toBe("/tmp/openclaw/workspaces/coder");

476+

expect((readMockCallArg(mocks.upsertAuthProfile) as UpsertAuthProfileCall).agentDir).toBe(

477+

"/tmp/openclaw/agents/coder",

453478

);

454479

});

455480

@@ -493,17 +518,16 @@ describe("modelsAuthLoginCommand", () => {

493518

runtime,

494519

);

495520496-

expect(mocks.resolvePluginProviders).toHaveBeenCalledWith(

497-

expect.objectContaining({

498-

config: {},

499-

workspaceDir: "/tmp/openclaw/workspace",

500-

bundledProviderAllowlistCompat: true,

501-

bundledProviderVitestCompat: true,

502-

includeUntrustedWorkspacePlugins: false,

503-

providerRefs: ["anthropic"],

504-

activate: true,

505-

}),

506-

);

521+

const providerResolutionCall = readMockCallArg(

522+

mocks.resolvePluginProviders,

523+

) as ResolvePluginProvidersCall;

524+

expect(providerResolutionCall.config).toEqual({});

525+

expect(providerResolutionCall.workspaceDir).toBe("/tmp/openclaw/workspace");

526+

expect(providerResolutionCall.bundledProviderAllowlistCompat).toBe(true);

527+

expect(providerResolutionCall.bundledProviderVitestCompat).toBe(true);

528+

expect(providerResolutionCall.includeUntrustedWorkspacePlugins).toBe(false);

529+

expect(providerResolutionCall.providerRefs).toEqual(["anthropic"]);

530+

expect(providerResolutionCall.activate).toBe(true);

507531

expect(runClaudeCliMigration).toHaveBeenCalledOnce();

508532

expect(mocks.upsertAuthProfile).not.toHaveBeenCalled();

509533

expect(lastUpdatedConfig?.agents?.defaults?.model).toEqual({

@@ -899,14 +923,11 @@ describe("modelsAuthLoginCommand", () => {

899923

await modelsAuthSetupTokenCommand({ provider: "moonshot", yes: true, agent: "coder" }, runtime);

900924901925

expect(mocks.resolveDefaultAgentId).not.toHaveBeenCalled();

902-

expect(runTokenAuth).toHaveBeenCalledWith(

903-

expect.objectContaining({

904-

agentDir: "/tmp/openclaw/agents/coder",

905-

workspaceDir: "/tmp/openclaw/workspaces/coder",

906-

}),

907-

);

908-

expect(mocks.upsertAuthProfile).toHaveBeenCalledWith(

909-

expect.objectContaining({ agentDir: "/tmp/openclaw/agents/coder" }),

926+

const tokenAuthCall = readMockCallArg(runTokenAuth) as AuthRunCall;

927+

expect(tokenAuthCall.agentDir).toBe("/tmp/openclaw/agents/coder");

928+

expect(tokenAuthCall.workspaceDir).toBe("/tmp/openclaw/workspaces/coder");

929+

expect((readMockCallArg(mocks.upsertAuthProfile) as UpsertAuthProfileCall).agentDir).toBe(

930+

"/tmp/openclaw/agents/coder",

910931

);

911932

});

912933

@@ -944,14 +965,11 @@ describe("modelsAuthLoginCommand", () => {

944965

await modelsAuthAddCommand({ agent: "coder" }, runtime);

945966946967

expect(mocks.resolveDefaultAgentId).not.toHaveBeenCalled();

947-

expect(runTokenAuth).toHaveBeenCalledWith(

948-

expect.objectContaining({

949-

agentDir: "/tmp/openclaw/agents/coder",

950-

workspaceDir: "/tmp/openclaw/workspaces/coder",

951-

}),

952-

);

953-

expect(mocks.upsertAuthProfile).toHaveBeenCalledWith(

954-

expect.objectContaining({ agentDir: "/tmp/openclaw/agents/coder" }),

968+

const tokenAuthCall = readMockCallArg(runTokenAuth) as AuthRunCall;

969+

expect(tokenAuthCall.agentDir).toBe("/tmp/openclaw/agents/coder");

970+

expect(tokenAuthCall.workspaceDir).toBe("/tmp/openclaw/workspaces/coder");

971+

expect((readMockCallArg(mocks.upsertAuthProfile) as UpsertAuthProfileCall).agentDir).toBe(

972+

"/tmp/openclaw/agents/coder",

955973

);

956974

});

957975