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

推荐订阅源

阮一峰的网络日志
阮一峰的网络日志
The GitHub Blog
The GitHub Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
雷峰网
雷峰网
U
Unit 42
Y
Y Combinator Blog
I
InfoQ
P
Proofpoint News Feed
Engineering at Meta
Engineering at Meta
量子位
Microsoft Security Blog
Microsoft Security Blog
B
Blog
The Cloudflare Blog
F
Fortinet All Blogs
Google DeepMind News
Google DeepMind News
MyScale Blog
MyScale Blog
C
Check Point Blog
S
SegmentFault 最新的问题
爱范儿
爱范儿
博客园 - 叶小钗
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Hugging Face - Blog
Hugging Face - Blog
罗磊的独立博客
T
Tailwind CSS Blog

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
docs: document model auth tests · openclaw/openclaw@3140bb6
steipete · 2026-06-05 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1,3 +1,4 @@

1+

// Verifies safe, user-facing auth labels without exposing credential values.

12

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

23

import { resolveModelAuthLabel } from "./model-auth-label.js";

34

@@ -56,6 +57,8 @@ describe("resolveModelAuthLabel", () => {

5657

});

5758
5859

it("does not include token value in label for token profiles", () => {

60+

// Labels may be shown in status output, so token-backed profiles identify

61+

// the auth mode/profile only and never echo token material or refs.

5962

mocks.ensureAuthProfileStore.mockReturnValue({

6063

version: 1,

6164

profiles: {

@@ -130,6 +133,8 @@ describe("resolveModelAuthLabel", () => {

130133

});

131134
132135

it("uses accepted provider ids before falling back to provider env auth", () => {

136+

// Accepted provider ids let aliases share a profile match before env

137+

// fallback would report a less-specific API-key label.

133138

mocks.ensureAuthProfileStore.mockReturnValue({

134139

version: 1,

135140

profiles: {

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,4 @@

1+

// Covers model auth resolution across env, profiles, CLI, and provider aliases.

12

import fs from "node:fs/promises";

23

import os from "node:os";

34

import path from "node:path";

@@ -29,6 +30,8 @@ async function expectVertexAdcEnvApiKey(params: {

2930

env?: NodeJS.ProcessEnv;

3031

tempPrefix?: string;

3132

}) {

33+

// Vertex ADC credentials are file evidence, not a raw API key. Tests create

34+

// a temporary credentials file and expect the non-secret marker to win.

3235

const tempDir = await fs.mkdtemp(path.join(os.tmpdir(), params.tempPrefix ?? "openclaw-adc-"));

3336

const credentialsPath = path.join(tempDir, "adc.json");

3437

await fs.writeFile(credentialsPath, params.credentialsJson, "utf8");

@@ -111,6 +114,8 @@ vi.mock("./provider-auth-aliases.js", () => ({

111114

}));

112115
113116

vi.mock("./model-auth-env-vars.js", () => {

117+

// Workspace-provided auth evidence is only trusted when the plugin is in the

118+

// effective allowlist, mirroring runtime plugin scoping.

114119

const hasAllowedPlugin = (config: unknown, pluginId: string): boolean => {

115120

if (!config || typeof config !== "object") {

116121

return false;

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,4 @@

1+

// Verifies provider auth resolution, synthetic auth, and auth header behavior.

12

import type { Model } from "openclaw/plugin-sdk/llm";

23

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

34

import type { ModelProviderConfig } from "../config/config.js";

@@ -48,6 +49,8 @@ vi.mock("../plugins/provider-runtime.js", async () => {

4849

shouldDeferProviderSyntheticProfileAuthWithPlugin: (params: {

4950

context?: { resolvedApiKey?: string };

5051

}) => params.context?.resolvedApiKey === "synthetic-defer",

52+

// Synthetic auth is provider-owned. Tests model local/no-key and plugin

53+

// config credentials without depending on real plugins.

5154

resolveProviderSyntheticAuthWithPlugin: (params: {

5255

provider: string;

5356

config?: {

@@ -223,6 +226,7 @@ function createCustomProviderConfig(

223226

modelId = "llama3",

224227

modelName = "Llama 3",

225228

): ModelProviderConfig {

229+

// Minimal custom OpenAI-compatible provider used across auth tests.

226230

return {

227231

baseUrl,

228232

api: "openai-completions" as const,

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,4 @@

1+

// Proves workspace plugin auth evidence participates in model auth checks.

12

import fs from "node:fs/promises";

23

import os from "node:os";

34

import path from "node:path";

@@ -14,6 +15,8 @@ import {

1415

import { hasAuthForModelProvider } from "./model-provider-auth.js";

1516
1617

async function writeWorkspaceAuthEvidencePlugin(workspaceDir: string) {

18+

// Creates a trusted workspace plugin manifest with local-file auth evidence

19+

// so runtime and picker checks exercise the same scoped metadata path.

1720

const pluginDir = path.join(workspaceDir, ".openclaw", "extensions", "workspace-cloud");

1821

await fs.mkdir(pluginDir, { recursive: true });

1922

await fs.writeFile(path.join(pluginDir, "index.ts"), "export default {}\n", "utf8");

@@ -44,6 +47,8 @@ async function writeWorkspaceAuthEvidencePlugin(workspaceDir: string) {

4447
4548

describe("workspace plugin model auth evidence", () => {

4649

it("uses trusted workspace plugin auth evidence across runtime and picker auth checks", async () => {

50+

// Without workspace scope the same env var is ignored; with scope, the

51+

// plugin-owned marker is accepted across all auth surfaces.

4752

const tempRoot = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-workspace-auth-"));

4853

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

4954

const bundledDir = path.join(tempRoot, "bundled");

Original file line numberDiff line numberDiff line change

@@ -1,9 +1,12 @@

1+

// Verifies model catalog lookup scope for custom and manifest-owned models.

12

import { describe, expect, it } from "vitest";

23

import type { OpenClawConfig } from "../config/types.openclaw.js";

34

import { resolveModelCatalogScope } from "./model-catalog-scope.js";

45
56

describe("resolveModelCatalogScope", () => {

67

it("keeps explicit custom provider models scoped to that provider", () => {

8+

// Custom provider model ids may collide with built-ins, so lookup should

9+

// not fall through to bare manifest refs.

710

const cfg = {

811

models: {

912

providers: {

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,4 @@

1+

// Covers model catalog loading, plugin manifests, normalization, and suppression.

12

import { mkdirSync, rmSync, writeFileSync } from "node:fs";

23

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

34

import type { OpenClawConfig } from "../config/config.js";

@@ -38,6 +39,8 @@ function isSuppressedModel(provider?: string, id?: string): boolean {

3839

}

3940
4041

function mockCatalogImportFailThenRecover() {

42+

// Simulates a transient discovery import failure so cache/error handling can

43+

// prove the catalog loader recovers on the next attempt.

4144

let call = 0;

4245

setModelCatalogImportForTest(async () => {

4346

call += 1;

@@ -138,6 +141,8 @@ function manifestModelCatalogSnapshot(model: {

138141

reasoning?: boolean;

139142

contextWindow?: number;

140143

}) {

144+

// Minimal plugin metadata snapshot containing a manifest-owned external

145+

// provider model catalog.

141146

return {

142147

policyHash: "policy",

143148

index: {

@@ -205,6 +210,8 @@ function requireCatalogEntry(

205210

provider: string,

206211

id: string,

207212

): ModelCatalogEntry {

213+

// Most catalog tests need a narrowed entry before checking capabilities or

214+

// normalized ids; fail loudly when the fixture model disappears.

208215

const entry = findCatalogEntry(entries, provider, id);

209216

if (!entry) {

210217

throw new Error(`expected catalog entry ${provider}/${id}`);