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

推荐订阅源

美团技术团队
阮一峰的网络日志
阮一峰的网络日志
T
The Blog of Author Tim Ferriss
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
宝玉的分享
宝玉的分享
L
LangChain Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Last Week in AI
Last Week in AI
博客园 - 司徒正美
M
MIT News - Artificial intelligence
人人都是产品经理
人人都是产品经理
WordPress大学
WordPress大学
B
Blog RSS Feed
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - Franky
B
Blog
V
V2EX
J
Java Code Geeks
D
Docker
博客园 - 叶小钗
The Cloudflare Blog
量子位
博客园_首页
MongoDB | Blog
MongoDB | 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
test(docker): bound live gateway setup · openclaw/opencla...
vincentkoc · 2026-05-06 · via Recent Commits to openclaw:main

@@ -11,6 +11,7 @@ import {

1111

} from "@mariozechner/pi-ai";

1212

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

1313

import { resolveAgentWorkspaceDir, resolveDefaultAgentDir } from "../agents/agent-scope.js";

14+

import { externalCliDiscoveryForProviders } from "../agents/auth-profiles/external-cli-discovery.js";

1415

import { ensureAuthProfileStore, saveAuthProfileStore } from "../agents/auth-profiles/store.js";

1516

import type { AuthProfileStore } from "../agents/auth-profiles/types.js";

1617

import {

@@ -75,6 +76,10 @@ const GATEWAY_LIVE_PROBE_TIMEOUT_MS = Math.max(

7576

30_000,

7677

toInt(process.env.OPENCLAW_LIVE_GATEWAY_STEP_TIMEOUT_MS, 90_000),

7778

);

79+

const GATEWAY_LIVE_SETUP_TIMEOUT_MS = Math.max(

80+

1_000,

81+

toInt(process.env.OPENCLAW_LIVE_GATEWAY_SETUP_TIMEOUT_MS, 60_000),

82+

);

7883

const GATEWAY_LIVE_MODEL_TIMEOUT_MS = resolveGatewayLiveModelTimeoutMs();

7984

const GATEWAY_LIVE_HEARTBEAT_MS = Math.max(

8085

1_000,

@@ -200,7 +205,7 @@ function isGatewayLiveModelTimeout(error: string): boolean {

200205

async function withGatewayLiveTimeout<T>(params: {

201206

operation: Promise<T>;

202207

timeoutMs: number;

203-

timeoutLabel: "probe" | "model";

208+

timeoutLabel: "setup" | "probe" | "model";

204209

context: string;

205210

}): Promise<T> {

206211

let timeoutHandle: ReturnType<typeof setTimeout> | undefined;

@@ -239,6 +244,19 @@ async function withGatewayLiveTimeout<T>(params: {

239244

}

240245

}

241246247+

async function withGatewayLiveSetupTimeout<T>(

248+

operation: Promise<T>,

249+

context: string,

250+

timeoutMs = GATEWAY_LIVE_SETUP_TIMEOUT_MS,

251+

): Promise<T> {

252+

return await withGatewayLiveTimeout({

253+

operation,

254+

timeoutMs,

255+

timeoutLabel: "setup",

256+

context,

257+

});

258+

}

259+242260

async function withGatewayLiveProbeTimeout<T>(operation: Promise<T>, context: string): Promise<T> {

243261

return await withGatewayLiveTimeout({

244262

operation,

@@ -2368,16 +2386,62 @@ describeLive("gateway live (dev agent, profile keys)", () => {

23682386

"runs meaningful prompts across models with available keys",

23692387

async () =>

23702388

await withSuppressedGatewayLiveWarnings(async () => {

2371-

logProgress("[all-models] discover candidates");

2389+

const providerList = providerFilterList();

2390+

const providerLog = providerList?.join(",") ?? "all";

2391+

logProgress(`[all-models] discover candidates providers=${providerLog}`);

2392+

logProgress("[all-models] loading config");

23722393

clearRuntimeConfigSnapshot();

2373-

const cfg = getRuntimeConfig();

2374-

await ensureOpenClawModelsJson(cfg, undefined, {

2375-

providerDiscoveryProviderIds: providerFilterList(),

2376-

});

2394+

const cfg = await withGatewayLiveSetupTimeout(

2395+

Promise.resolve().then(() => getRuntimeConfig()),

2396+

"[all-models] load config",

2397+

);

2398+

const workspaceDir = resolveAgentWorkspaceDir(cfg, DEFAULT_AGENT_ID);

2399+

logProgress("[all-models] preparing models.json");

2400+

await withGatewayLiveSetupTimeout(

2401+

ensureOpenClawModelsJson(cfg, undefined, {

2402+

workspaceDir,

2403+

...(providerList ? { providerDiscoveryProviderIds: providerList } : {}),

2404+

providerDiscoveryEntriesOnly: true,

2405+

}),

2406+

"[all-models] prepare models.json",

2407+

);

2377240823782409

const agentDir = resolveDefaultAgentDir(cfg);

2379-

const authStorage = discoverAuthStorage(agentDir);

2410+

const externalCli = providerList

2411+

? externalCliDiscoveryForProviders({ cfg, providers: providerList })

2412+

: undefined;

2413+

logProgress("[all-models] loading auth profiles");

2414+

const authProfileStore = await withGatewayLiveSetupTimeout(

2415+

Promise.resolve().then(() =>

2416+

ensureAuthProfileStore(agentDir, {

2417+

allowKeychainPrompt: false,

2418+

...(externalCli ? { externalCli } : {}),

2419+

}),

2420+

),

2421+

"[all-models] load auth profiles",

2422+

);

2423+

const authStorage = await withGatewayLiveSetupTimeout(

2424+

Promise.resolve().then(() =>

2425+

discoverAuthStorage(agentDir, {

2426+

config: cfg,

2427+

env: process.env,

2428+

...(externalCli ? { externalCli } : {}),

2429+

...(providerList

2430+

? {

2431+

skipExternalAuthProfiles: true,

2432+

syntheticAuthProviderRefs: [],

2433+

}

2434+

: {}),

2435+

}),

2436+

),

2437+

"[all-models] load auth storage",

2438+

);

2439+

logProgress("[all-models] loading model registry");

23802440

const modelRegistry = discoverModels(authStorage, agentDir);

2441+

const all = await withGatewayLiveSetupTimeout(

2442+

Promise.resolve().then(() => modelRegistry.getAll()),

2443+

"[all-models] load model registry",

2444+

);

2381244523822446

const rawModels = process.env.OPENCLAW_LIVE_GATEWAY_MODELS?.trim();

23832447

const useModern = !rawModels || rawModels === "modern" || rawModels === "all";

@@ -2399,7 +2463,6 @@ describeLive("gateway live (dev agent, profile keys)", () => {

23992463

})

24002464

: null;

24012465

if (!wanted) {

2402-

const all = modelRegistry.getAll();

24032466

wanted = filter

24042467

? all.filter((m) => targetMatcher.matchesModel(m.provider, m.id))

24052468

: all.filter(

@@ -2413,6 +2476,7 @@ describeLive("gateway live (dev agent, profile keys)", () => {

24132476

}) && isHighSignalLiveModelRef({ provider: m.provider, id: m.id }),

24142477

);

24152478

}

2479+

logProgress(`[all-models] wanted=${wanted.length} total=${all.length}`);

2416248024172481

const candidates: Array<Model<Api>> = [];

24182482

const skipped: Array<{ model: string; error: string }> = [];

@@ -2425,11 +2489,18 @@ describeLive("gateway live (dev agent, profile keys)", () => {

24252489

}

24262490

const modelRef = `${model.provider}/${model.id}`;

24272491

try {

2428-

const apiKeyInfo = await getApiKeyForModel({

2429-

model,

2430-

cfg,

2431-

credentialPrecedence: LIVE_CREDENTIAL_PRECEDENCE,

2432-

});

2492+

const apiKeyInfo = await withGatewayLiveSetupTimeout(

2493+

getApiKeyForModel({

2494+

model,

2495+

cfg,

2496+

store: authProfileStore,

2497+

agentDir,

2498+

workspaceDir,

2499+

credentialPrecedence: LIVE_CREDENTIAL_PRECEDENCE,

2500+

}),

2501+

`[all-models] auth ${modelRef}`,

2502+

GATEWAY_LIVE_PROBE_TIMEOUT_MS,

2503+

);

24332504

if (REQUIRE_PROFILE_KEYS && !apiKeyInfo.source.startsWith("profile:")) {

24342505

skipped.push({

24352506

model: modelRef,