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

推荐订阅源

WordPress大学
WordPress大学
大猫的无限游戏
大猫的无限游戏
B
Blog
阮一峰的网络日志
阮一峰的网络日志
IT之家
IT之家
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
Jina AI
Jina AI
博客园 - 聂微东
T
The Blog of Author Tim Ferriss
宝玉的分享
宝玉的分享
L
LangChain Blog
M
MIT News - Artificial intelligence
Blog — PlanetScale
Blog — PlanetScale
腾讯CDC
酷 壳 – CoolShell
酷 壳 – CoolShell
Y
Y Combinator Blog
F
Fortinet All Blogs
H
Help Net Security
B
Blog RSS Feed
J
Java Code Geeks
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Apple Machine Learning Research
Apple Machine Learning Research
S
SegmentFault 最新的问题

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
Fix Telegram model status Codex auth label (#79135) · ope...
Patrick-Eric · 2026-05-08 · via Recent Commits to openclaw:main

@@ -3,7 +3,11 @@ import os from "node:os";

33

import path from "node:path";

44

import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";

55

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

6-

profiles: {} as Record<string, { type: "api_key"; provider: string; key: string }>,

6+

profiles: {} as Record<

7+

string,

8+

| { type: "api_key"; provider: string; key: string }

9+

| { type: "oauth"; provider: string; access: string; refresh: string; expires: number }

10+

>,

711

}));

812913

vi.mock("../../agents/auth-profiles.js", () => ({

@@ -25,7 +29,7 @@ vi.mock("../../agents/auth-profiles.js", () => ({

2529

.map(([profileId, profile]) => ({ profileId, profile })),

2630

replaceRuntimeAuthProfileStoreSnapshots: (

2731

snapshots: Array<{

28-

store?: { profiles?: Record<string, { type: "api_key"; provider: string; key: string }> };

32+

store?: { profiles?: Record<string, AuthProfileForTest> };

2933

}>,

3034

) => {

3135

authProfilesStoreMock.profiles = snapshots[0]?.store?.profiles ?? {};

@@ -55,7 +59,7 @@ vi.mock("../../agents/auth-profiles/store.js", () => {

5559

loadAuthProfileStoreWithoutExternalProfiles: store,

5660

replaceRuntimeAuthProfileStoreSnapshots: (

5761

snapshots: Array<{

58-

store?: { profiles?: Record<string, { type: "api_key"; provider: string; key: string }> };

62+

store?: { profiles?: Record<string, AuthProfileForTest> };

5963

}>,

6064

) => {

6165

authProfilesStoreMock.profiles = snapshots[0]?.store?.profiles ?? {};

@@ -132,11 +136,13 @@ const queueMocks = vi.hoisted(() => ({

132136133137

// Mock dependencies for directive handling persistence.

134138

vi.mock("../../agents/agent-scope.js", () => ({

139+

listAgentEntries: () => [],

135140

resolveAgentConfig: vi.fn(() => ({})),

136141

resolveAgentDir: vi.fn(() => "/tmp/agent"),

137142

resolveAgentEffectiveModelPrimary: vi.fn(() => undefined),

138143

resolveAgentModelFallbacksOverride: vi.fn(() => undefined),

139144

resolveAgentWorkspaceDir: vi.fn(() => "/tmp/workspace"),

145+

resolveSessionAgentIds: () => ({ sessionAgentId: "main" }),

140146

resolveSessionAgentId: vi.fn(() => "main"),

141147

}));

142148

@@ -173,6 +179,14 @@ const TEST_AGENT_DIR = "/tmp/agent";

173179

const OPENAI_DATE_PROFILE_ID = "20251001";

174180175181

type ApiKeyProfile = { type: "api_key"; provider: string; key: string };

182+

type OAuthProfileForTest = {

183+

type: "oauth";

184+

provider: string;

185+

access: string;

186+

refresh: string;

187+

expires: number;

188+

};

189+

type AuthProfileForTest = ApiKeyProfile | OAuthProfileForTest;

176190177191

function baseAliasIndex(): ModelAliasIndex {

178192

return { byAlias: new Map(), byKey: new Map() };

@@ -224,7 +238,7 @@ afterEach(() => {

224238

clearRuntimeAuthProfileStoreSnapshots();

225239

});

226240227-

function setAuthProfiles(profiles: Record<string, ApiKeyProfile>) {

241+

function setAuthProfiles(profiles: Record<string, AuthProfileForTest>) {

228242

replaceRuntimeAuthProfileStoreSnapshots([

229243

{

230244

agentDir: TEST_AGENT_DIR,

@@ -503,6 +517,124 @@ describe("/model chat UX", () => {

503517

expect(reply?.text).not.toContain("missing (missing)");

504518

});

505519520+

it("reports Codex runtime auth for OpenAI status rows", async () => {

521+

setAuthProfiles({

522+

"openai-codex:patrick@example.test": {

523+

type: "oauth",

524+

provider: "openai-codex",

525+

access: "access-token",

526+

refresh: "refresh-token",

527+

expires: Date.now() + 60_000,

528+

},

529+

});

530+531+

const reply = await resolveModelInfoReply({

532+

directives: parseInlineDirectives("/model status"),

533+

provider: "openai",

534+

model: "gpt-5.5",

535+

defaultProvider: "openai",

536+

defaultModel: "gpt-5.5",

537+

cfg: {

538+

commands: { text: true },

539+

agents: {

540+

defaults: {

541+

agentRuntime: { id: "codex" },

542+

model: { primary: "openai/gpt-5.5" },

543+

models: {

544+

"codex/gpt-5.5": {},

545+

"openai/gpt-5.5": {},

546+

},

547+

},

548+

},

549+

} as OpenClawConfig,

550+

allowedModelCatalog: [{ provider: "openai", id: "gpt-5.5", name: "GPT-5.5" }],

551+

});

552+553+

expect(reply?.text).toContain("[openai] endpoint: default auth:");

554+

expect(reply?.text).not.toContain("[openai] endpoint: default auth: missing");

555+

expect(reply?.text).toContain("via codex runtime / openai-codex");

556+

expect(reply?.text).toContain("openai-codex:patrick@example.test=OAuth");

557+

});

558+559+

it("keeps direct provider auth labels when OpenAI API key auth exists", async () => {

560+

setAuthProfiles({

561+

"openai:api-key": {

562+

type: "api_key",

563+

provider: "openai",

564+

key: "sk-openai-direct",

565+

},

566+

"openai-codex:patrick@example.test": {

567+

type: "oauth",

568+

provider: "openai-codex",

569+

access: "access-token",

570+

refresh: "refresh-token",

571+

expires: Date.now() + 60_000,

572+

},

573+

});

574+575+

const reply = await resolveModelInfoReply({

576+

directives: parseInlineDirectives("/model status"),

577+

provider: "openai",

578+

model: "gpt-5.5",

579+

defaultProvider: "openai",

580+

defaultModel: "gpt-5.5",

581+

cfg: {

582+

commands: { text: true },

583+

agents: {

584+

defaults: {

585+

agentRuntime: { id: "codex" },

586+

model: { primary: "openai/gpt-5.5" },

587+

models: {

588+

"openai/gpt-5.5": {},

589+

},

590+

},

591+

},

592+

} as OpenClawConfig,

593+

allowedModelCatalog: [{ provider: "openai", id: "gpt-5.5", name: "GPT-5.5" }],

594+

});

595+596+

expect(reply?.text).toContain("[openai] endpoint: default auth:");

597+

expect(reply?.text).toContain("openai:api-key=");

598+

expect(reply?.text).not.toContain("via codex runtime");

599+

});

600+601+

it("does not borrow Codex auth when OpenAI is pinned to PI runtime", async () => {

602+

setAuthProfiles({

603+

"openai-codex:patrick@example.test": {

604+

type: "oauth",

605+

provider: "openai-codex",

606+

access: "access-token",

607+

refresh: "refresh-token",

608+

expires: Date.now() + 60_000,

609+

},

610+

});

611+612+

const reply = await resolveModelInfoReply({

613+

directives: parseInlineDirectives("/model status"),

614+

provider: "openai",

615+

model: "gpt-5.5",

616+

defaultProvider: "openai",

617+

defaultModel: "gpt-5.5",

618+

cfg: {

619+

commands: { text: true },

620+

agents: {

621+

defaults: {

622+

agentRuntime: { id: "pi" },

623+

model: { primary: "openai/gpt-5.5" },

624+

models: {

625+

"openai/gpt-5.5": {},

626+

},

627+

},

628+

},

629+

} as OpenClawConfig,

630+

allowedModelCatalog: [{ provider: "openai", id: "gpt-5.5", name: "GPT-5.5" }],

631+

});

632+633+

expect(reply?.text).toContain("[openai] endpoint: default auth: missing");

634+

expect(reply?.text).not.toContain("via codex runtime");

635+

expect(reply?.text).not.toContain("openai-codex:patrick@example.test=OAuth");

636+

});

637+506638

it("uses workspace-scoped auth evidence in /model status labels", async () => {

507639

const tempRoot = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-model-status-auth-label-"));

508640

const workspaceDir = path.join(tempRoot, "workspace");