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

推荐订阅源

腾讯CDC
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 叶小钗
人人都是产品经理
人人都是产品经理
博客园 - 聂微东
The Cloudflare Blog
爱范儿
爱范儿
阮一峰的网络日志
阮一峰的网络日志
WordPress大学
WordPress大学
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
Last Week in AI
Last Week in AI
Jina AI
Jina AI
V
V2EX
罗磊的独立博客
V
Visual Studio Blog
A
About on SuperTechFans
IT之家
IT之家
P
Proofpoint News Feed
B
Blog
博客园 - Franky
Blog — PlanetScale
Blog — PlanetScale
Google DeepMind News
Google DeepMind News
Y
Y Combinator 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(gateway): harden acp bind docker smoke · openclaw/op...
steipete · 2026-04-27 · via Recent Commits to openclaw:main

@@ -36,6 +36,9 @@ const describeLive = LIVE && ACP_BIND_LIVE ? describe : describe.skip;

36363737

const CONNECT_TIMEOUT_MS = 90_000;

3838

const LIVE_TIMEOUT_MS = 240_000;

39+

const ACP_CRON_MCP_PROBE_MAX_ATTEMPTS = 2;

40+

const ACP_CRON_MCP_PROBE_VERIFY_POLLS = 5;

41+

const ACP_CRON_MCP_PROBE_VERIFY_POLL_MS = 1_000;

3942

const DEFAULT_LIVE_CODEX_MODEL = "gpt-5.5";

4043

const DEFAULT_LIVE_PARENT_MODEL = "openai/gpt-5.4";

4144

type LiveAcpAgent = "claude" | "codex" | "droid" | "gemini" | "opencode";

@@ -150,6 +153,10 @@ function shouldRequireBoundAssistantTranscript(liveAgent: LiveAcpAgent): boolean

150153

);

151154

}

152155156+

function shouldRequireCronMcpProbe(): boolean {

157+

return isTruthyEnvValue(process.env.OPENCLAW_LIVE_ACP_BIND_REQUIRE_CRON);

158+

}

159+153160

function normalizeOpenAiModelRef(value: string): string {

154161

const trimmed = value.trim();

155162

if (!trimmed) {

@@ -287,24 +294,30 @@ async function bindConversationAndWait(params: {

287294

doctor?: () => Promise<{ message?: string; details?: string[] }>;

288295

}

289296

| undefined;

290-

if (runtime?.probeAvailability) {

291-

await runtime.probeAvailability().catch(() => {});

292-

}

293-

if (!(backend?.healthy?.() ?? false)) {

294-

if (runtime?.doctor && (attempt === 1 || attempt % 6 === 0)) {

295-

const report = await runtime.doctor().catch((error) => ({

296-

message: error instanceof Error ? error.message : String(error),

297-

details: [],

298-

}));

299-

logLiveStep(

300-

`acpx doctor before bind attempt ${attempt}: ${report.message ?? "unknown"}${

301-

report.details?.length ? ` (${report.details.join("; ")})` : ""

302-

}`,

303-

);

297+

const backendUnavailable = !backend || (backend.healthy && !backend.healthy());

298+

if (backendUnavailable) {

299+

if (runtime?.probeAvailability) {

300+

await runtime.probeAvailability().catch(() => {});

301+

}

302+

const backendReadyAfterProbe = backend && (!backend.healthy || backend.healthy());

303+

if (backendReadyAfterProbe) {

304+

logLiveStep(`acpx backend became healthy before bind attempt ${attempt}`);

305+

} else {

306+

if (runtime?.doctor && (attempt === 1 || attempt % 6 === 0)) {

307+

const report = await runtime.doctor().catch((error) => ({

308+

message: error instanceof Error ? error.message : String(error),

309+

details: [],

310+

}));

311+

logLiveStep(

312+

`acpx doctor before bind attempt ${attempt}: ${report.message ?? "unknown"}${

313+

report.details?.length ? ` (${report.details.join("; ")})` : ""

314+

}`,

315+

);

316+

}

317+

logLiveStep(`acpx backend still unhealthy before bind attempt ${attempt}`);

318+

await sleep(5_000);

319+

continue;

304320

}

305-

logLiveStep(`acpx backend still unhealthy before bind attempt ${attempt}`);

306-

await sleep(5_000);

307-

continue;

308321

}

309322310323

await sendChatAndWait({

@@ -463,6 +476,25 @@ async function waitForAssistantTurn(params: {

463476

);

464477

}

465478479+

async function pollCronJobVisibleViaCli(params: {

480+

port: number;

481+

token: string;

482+

env: NodeJS.ProcessEnv;

483+

expectedName: string;

484+

expectedMessage: string;

485+

}): Promise<{ job?: Awaited<ReturnType<typeof assertCronJobVisibleViaCli>>; pollsUsed: number }> {

486+

for (let verifyAttempt = 0; verifyAttempt < ACP_CRON_MCP_PROBE_VERIFY_POLLS; verifyAttempt += 1) {

487+

const job = await assertCronJobVisibleViaCli(params);

488+

if (job) {

489+

return { job, pollsUsed: verifyAttempt + 1 };

490+

}

491+

if (verifyAttempt < ACP_CRON_MCP_PROBE_VERIFY_POLLS - 1) {

492+

await sleep(ACP_CRON_MCP_PROBE_VERIFY_POLL_MS);

493+

}

494+

}

495+

return { pollsUsed: ACP_CRON_MCP_PROBE_VERIFY_POLLS };

496+

}

497+466498

describeLive("gateway live (ACP bind)", () => {

467499

it(

468500

"binds a synthetic Slack DM conversation to a live ACP session and reroutes the next turn",

@@ -852,9 +884,10 @@ describeLive("gateway live (ACP bind)", () => {

852884

agentId: liveAgent,

853885

sessionKey: spawnedSessionKey,

854886

});

887+

const requireCronMcpProbe = shouldRequireCronMcpProbe();

855888

let cronJobId: string | undefined;

856889

let lastCronAssistantText = "";

857-

for (let attempt = 0; attempt < 2; attempt += 1) {

890+

for (let attempt = 0; attempt < ACP_CRON_MCP_PROBE_MAX_ATTEMPTS; attempt += 1) {

858891

await sendChatAndWait({

859892

client,

860893

sessionKey: originalSessionKey,

@@ -876,7 +909,7 @@ describeLive("gateway live (ACP bind)", () => {

876909

cronHistory = await waitForAssistantText({

877910

client,

878911

sessionKey: spawnedSessionKey,

879-

timeoutMs: liveAgent === "claude" ? 90_000 : 45_000,

912+

timeoutMs: 20_000,

880913

contains: cronProbe.name,

881914

});

882915

} catch {

@@ -885,13 +918,14 @@ describeLive("gateway live (ACP bind)", () => {

885918

if (cronHistory) {

886919

lastCronAssistantText = cronHistory.lastAssistantText;

887920

}

888-

const createdJob = await assertCronJobVisibleViaCli({

921+

const verifyResult = await pollCronJobVisibleViaCli({

889922

port,

890923

token,

891924

env: process.env,

892925

expectedName: cronProbe.name,

893926

expectedMessage: cronProbe.message,

894927

});

928+

const createdJob = verifyResult.job;

895929

if (createdJob) {

896930

assertCronJobMatches({

897931

job: createdJob,

@@ -906,10 +940,15 @@ describeLive("gateway live (ACP bind)", () => {

906940

}

907941

break;

908942

}

909-

if (attempt === 1) {

910-

if (liveAgent !== "claude") {

943+

logLiveStep(

944+

`cron mcp job not observed after attempt ${String(

945+

attempt + 1,

946+

)}; polls=${String(verifyResult.pollsUsed)}`,

947+

);

948+

if (attempt === ACP_CRON_MCP_PROBE_MAX_ATTEMPTS - 1) {

949+

if (!requireCronMcpProbe) {

911950

logLiveStep(

912-

`cron mcp job ${cronProbe.name} not observed for ${liveAgent}; continuing after bind/image verification`,

951+

`cron mcp job ${cronProbe.name} not observed; continuing after bind/image verification`,

913952

);

914953

break;

915954

}

@@ -921,7 +960,7 @@ describeLive("gateway live (ACP bind)", () => {

921960

}

922961

}

923962

if (!cronJobId) {

924-

if (liveAgent !== "claude") {

963+

if (!requireCronMcpProbe) {

925964

return;

926965

}

927966

throw new Error(`acp cron cli verify did not create job ${cronProbe.name}`);