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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
月光博客
月光博客
Last Week in AI
Last Week in AI
腾讯CDC
The Cloudflare Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
MyScale Blog
MyScale Blog
博客园 - Franky
MongoDB | Blog
MongoDB | Blog
I
InfoQ
雷峰网
雷峰网
人人都是产品经理
人人都是产品经理
Blog — PlanetScale
Blog — PlanetScale
Y
Y Combinator Blog
H
Help Net Security
T
Tailwind CSS Blog
美团技术团队
aimingoo的专栏
aimingoo的专栏
博客园 - 三生石上(FineUI控件)
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News
P
Proofpoint News Feed

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 runtime tests · openclaw/openclaw@28...
steipete · 2026-06-05 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

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

1+

// Verifies CLI runtime alias resolution and runtime model-ref equivalence.

12

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

23

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

34

import { testing as cliBackendsTesting } from "./cli-backends.js";

@@ -12,6 +13,8 @@ function createAnthropicAuthConfig(params: {

1213

order?: string[];

1314

models?: NonNullable<NonNullable<OpenClawConfig["agents"]>["defaults"]>["models"];

1415

}): OpenClawConfig {

16+

// Auth order controls whether Anthropic execution is direct API or Claude

17+

// CLI-backed when no explicit runtime policy overrides it.

1518

return {

1619

auth: {

1720

order: params.order ? { anthropic: params.order } : undefined,

@@ -98,6 +101,8 @@ describe("resolveCliRuntimeExecutionProvider", () => {

98101

});

99102
100103

it("does not override an explicit OpenClaw model-runtime policy with CLI auth", () => {

104+

// Runtime policy is more explicit than profile order, so CLI auth cannot

105+

// force a model onto the CLI harness when config says OpenClaw.

101106

expect(

102107

resolveCliRuntimeExecutionProvider({

103108

cfg: createAnthropicAuthConfig({

@@ -187,6 +192,8 @@ describe("areRuntimeModelRefsEquivalent", () => {

187192

});

188193
189194

it("resolves one setup runtime alias without loading the full setup registry", () => {

195+

// Equivalence checks use targeted setup lookup so hot model comparisons do

196+

// not load the full plugin setup registry.

190197

cliBackendsTesting.setDepsForTest({

191198

resolvePluginSetupCliBackend: ({ backend }) =>

192199

backend === "claude-cli"

Original file line numberDiff line numberDiff line change

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

1+

// Covers model runtime policy precedence and private QA runtime overrides.

12

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

23

import type { ModelDefinitionConfig } from "../config/types.models.js";

34

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

@@ -26,6 +27,7 @@ function restoreEnv(

2627

name: "OPENCLAW_BUILD_PRIVATE_QA" | "OPENCLAW_QA_FORCE_RUNTIME",

2728

value: string | undefined,

2829

): void {

30+

// Tests mutate private QA env gates; restore exact process state after each.

2931

if (value == null) {

3032

delete process.env[name];

3133

return;

@@ -70,6 +72,8 @@ describe("resolveModelRuntimePolicy", () => {

7072

});

7173
7274

it("respects the QA force-runtime override when the private QA gate is set", () => {

75+

// The force-runtime override is intentionally gated to private QA builds so

76+

// normal users cannot accidentally change model runtime selection via env.

7377

process.env.OPENCLAW_BUILD_PRIVATE_QA = "1";

7478

process.env.OPENCLAW_QA_FORCE_RUNTIME = "openclaw";

7579

@@ -149,6 +153,8 @@ describe("resolveModelRuntimePolicy", () => {

149153

});

150154
151155

it("prefers exact agent model runtime policy entries over provider wildcards", () => {

156+

// Exact configured model refs beat provider wildcards to keep intentional

157+

// per-model runtime routing stable.

152158

const config = {

153159

agents: {

154160

defaults: {

Original file line numberDiff line numberDiff line change

@@ -1,10 +1,13 @@

1+

// Verifies OpenRouter model scan filtering, metadata normalization, and timeouts.

12

import { MAX_TIMER_TIMEOUT_MS } from "@openclaw/normalization-core/number-coercion";

23

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

34

import { withEnvAsync } from "../test-utils/env.js";

45

import { withFetchPreconnect } from "../test-utils/fetch-mock.js";

56

import { scanOpenRouterModels } from "./model-scan.js";

67
78

function createFetchFixture(payload: unknown): typeof fetch {

9+

// scanOpenRouterModels accepts an injected fetch so tests stay offline while

10+

// exercising OpenRouter's catalog response shape.

811

return withFetchPreconnect(

912

async () =>

1013

new Response(JSON.stringify(payload), {

@@ -140,6 +143,8 @@ describe("scanOpenRouterModels", () => {

140143

});

141144
142145

it("caps oversized scan timeouts before scheduling catalog aborts", async () => {

146+

// Timer APIs cannot safely schedule above the platform max; cap before

147+

// creating the catalog abort timeout.

143148

const timeoutSpy = vi

144149

.spyOn(globalThis, "setTimeout")

145150

.mockReturnValue(1 as unknown as ReturnType<typeof setTimeout>);

@@ -156,6 +161,8 @@ describe("scanOpenRouterModels", () => {

156161

});

157162
158163

it("does not match provider filters across provider id variants", async () => {

164+

// Provider filters are literal OpenRouter owner ids. Do not normalize z.ai

165+

// into z-ai here or scans will include unintended rows.

159166

const fetchImpl = createFetchFixture({

160167

data: [

161168

{

Original file line numberDiff line numberDiff line change

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

1+

// Verifies model-selection CLI provider detection from plugin metadata.

12

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

23

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

34

import {

@@ -12,6 +13,8 @@ import { testing as setupRegistryRuntimeTesting } from "../plugins/setup-registr

1213

import { isCliProvider } from "./model-selection-cli.js";

1314
1415

function setCliBackendMetadataSnapshot(cliBackends: string[]) {

16+

// Builds a minimal current plugin metadata snapshot so isCliProvider can use

17+

// descriptor metadata without loading setup runtime modules.

1518

const policyHash = resolveInstalledPluginIndexPolicyHash({});

1619

const index: InstalledPluginIndex = {

1720

version: 1,

@@ -83,6 +86,8 @@ describe("isCliProvider", () => {

8386

});

8487
8588

it("does not execute setup runtime when descriptor metadata has no matching backend", () => {

89+

// Negative checks should stay metadata-only; loading setup runtime here

90+

// would make simple provider visibility queries expensive.

8691

setupRegistryRuntimeTesting.setRuntimeModuleForTest({

8792

resolvePluginSetupCliBackend: () => {

8893

throw new Error("setup runtime should not load for CLI provider checks");

Original file line numberDiff line numberDiff line change

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

1+

// Documents persisted/runtime model selection display normalization.

12

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

23

import {

34

resolveModelDisplayName,

@@ -34,6 +35,8 @@ describe("model-selection-display", () => {

3435

});

3536
3637

it("ignores malformed persisted model values instead of throwing", () => {

38+

// Session files can contain old or malformed values; display helpers

39+

// should fall back to safe refs rather than breaking status output.

3740

expect(

3841

resolveModelDisplayRef({

3942

runtimeProvider: { provider: "openai" },

@@ -76,6 +79,8 @@ describe("model-selection-display", () => {

7679

});

7780
7881

it("keeps override ids attached to the current provider when no override provider is stored", () => {

82+

// Slash-bearing override models may be nested model ids, not providers;

83+

// preserve the known current provider when no override provider exists.

7984

expect(

8085

resolveSessionInfoModelSelection({

8186

currentProvider: "anthropic",

Original file line numberDiff line numberDiff line change

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

1+

// Verifies configured model selection uses manifest policy only in scoped contexts.

12

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

23

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

34

@@ -44,6 +45,8 @@ describe("configured model manifest workspace scope", () => {

4445

});

4546
4647

it("does not reuse workspace manifest policies without a workspace context", async () => {

48+

// Workspace plugin normalization must not leak into unscoped callers; they

49+

// can only use the current global metadata snapshot.

4750

const { buildConfiguredModelCatalog } = await import("./model-selection-shared.js");

4851

const cfg = {

4952

models: {

@@ -129,6 +132,8 @@ describe("configured model manifest workspace scope", () => {

129132

});

130133
131134

it("does not load manifest metadata for empty configured model aliases", async () => {

135+

// Alias indexing is a hot config path. Empty inputs should avoid manifest

136+

// scans entirely.

132137

const { buildModelAliasIndex } = await import("./model-selection-shared.js");

133138

const cfg = {} as unknown as OpenClawConfig;

134139