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

推荐订阅源

B
Blog RSS Feed
J
Java Code Geeks
C
Check Point Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Google DeepMind News
Google DeepMind News
阮一峰的网络日志
阮一峰的网络日志
Engineering at Meta
Engineering at Meta
Blog — PlanetScale
Blog — PlanetScale
D
Docker
H
Hackread – Cybersecurity News, Data Breaches, AI and More
月光博客
月光博客
I
InfoQ
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
A
About on SuperTechFans
L
LangChain Blog
腾讯CDC
Y
Y Combinator Blog
MongoDB | Blog
MongoDB | Blog
Vercel News
Vercel News
MyScale Blog
MyScale Blog
博客园 - Franky
IT之家
IT之家
博客园_首页

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: dampen repeated device-required probes · openclaw/op...
ferminquant · 2026-05-26 · via Recent Commits to openclaw:main

@@ -180,6 +180,31 @@ function expectProbeAuthFields(

180180

}

181181

}

182182183+

let probeUrlSeq = 0;

184+185+

function nextProbeUrl(label: string): string {

186+

probeUrlSeq += 1;

187+

return `ws://127.0.0.1:18789/${label}-${probeUrlSeq}`;

188+

}

189+190+

function setDeviceRequiredProbeMode(): void {

191+

deviceIdentityState.cachedToken = null;

192+

gatewayClientState.startMode = "close";

193+

gatewayClientState.close = { code: 1008, reason: "device identity required" };

194+

}

195+196+

function lastGatewayClientOptions(): Record<string, unknown> | null {

197+

return gatewayClientState.options;

198+

}

199+200+

async function runLightweightProbe(url: string): Promise<Awaited<ReturnType<typeof probeGateway>>> {

201+

return await probeGateway({

202+

url,

203+

timeoutMs: 1_000,

204+

includeDetails: false,

205+

});

206+

}

207+183208

describe("probeGateway", () => {

184209

beforeEach(() => {

185210

deviceIdentityState.throwOnLoad = false;

@@ -536,4 +561,160 @@ describe("probeGateway", () => {

536561

close: null,

537562

});

538563

});

564+565+

it("short-circuits later unpaired probes after repeated device-required closes", async () => {

566+

setDeviceRequiredProbeMode();

567+

const url = nextProbeUrl("device-required");

568+569+

for (let i = 0; i < 3; i += 1) {

570+

gatewayClientState.options = null;

571+

const result = await runLightweightProbe(url);

572+573+

expectProbeResultFields(result, {

574+

ok: false,

575+

error: "gateway closed (1008): device identity required",

576+

close: { code: 1008, reason: "device identity required" },

577+

});

578+

expect(lastGatewayClientOptions()?.url).toBe(url);

579+

}

580+581+

const startCalls = gatewayClientState.startCalls;

582+

gatewayClientState.options = null;

583+584+

const result = await runLightweightProbe(url);

585+586+

expectProbeResultFields(result, {

587+

ok: false,

588+

connectLatencyMs: null,

589+

error: "gateway closed (1008): device identity required",

590+

close: {

591+

code: 1008,

592+

reason: "device identity required",

593+

hint: "probe short-circuited by recent device-required rejections",

594+

},

595+

health: null,

596+

status: null,

597+

presence: null,

598+

configSnapshot: null,

599+

});

600+

expectProbeAuthFields(result, {

601+

role: null,

602+

scopes: [],

603+

capability: "unknown",

604+

});

605+

expect(gatewayClientState.startCalls).toBe(startCalls);

606+

expect(lastGatewayClientOptions()).toBeNull();

607+

});

608+609+

it("does not cache other policy-close reasons", async () => {

610+

deviceIdentityState.cachedToken = null;

611+

gatewayClientState.startMode = "close";

612+

gatewayClientState.close = { code: 1008, reason: "pairing required" };

613+

const url = nextProbeUrl("pairing-required");

614+615+

for (let i = 0; i < 4; i += 1) {

616+

gatewayClientState.options = null;

617+

const result = await runLightweightProbe(url);

618+619+

expect(result.close).toEqual({ code: 1008, reason: "pairing required" });

620+

expect(lastGatewayClientOptions()?.url).toBe(url);

621+

}

622+

});

623+624+

it("keeps device-required probe cache entries per URL", async () => {

625+

setDeviceRequiredProbeMode();

626+

const firstUrl = nextProbeUrl("first-device-required");

627+

const secondUrl = nextProbeUrl("second-device-required");

628+629+

for (let i = 0; i < 3; i += 1) {

630+

await runLightweightProbe(firstUrl);

631+

}

632+633+

gatewayClientState.options = null;

634+

const result = await runLightweightProbe(secondUrl);

635+636+

expect(result.close).toEqual({ code: 1008, reason: "device identity required" });

637+

expect(result.close?.hint).toBeUndefined();

638+

expect(lastGatewayClientOptions()?.url).toBe(secondUrl);

639+

});

640+641+

it("expires device-required probe cache entries after the TTL", async () => {

642+

setDeviceRequiredProbeMode();

643+

const url = nextProbeUrl("ttl-device-required");

644+

let nowMs = 1_000_000;

645+

const dateNowSpy = vi.spyOn(Date, "now").mockImplementation(() => nowMs);

646+

try {

647+

for (let i = 0; i < 3; i += 1) {

648+

await runLightweightProbe(url);

649+

}

650+651+

nowMs += 5 * 60_000;

652+

gatewayClientState.options = null;

653+

const result = await runLightweightProbe(url);

654+655+

expect(result.close).toEqual({ code: 1008, reason: "device identity required" });

656+

expect(result.close?.hint).toBeUndefined();

657+

expect(lastGatewayClientOptions()?.url).toBe(url);

658+

} finally {

659+

dateNowSpy.mockRestore();

660+

}

661+

});

662+663+

it("lets paired probes clear prior device-required failures", async () => {

664+

setDeviceRequiredProbeMode();

665+

const url = nextProbeUrl("paired-device-required");

666+667+

for (let i = 0; i < 3; i += 1) {

668+

await runLightweightProbe(url);

669+

}

670+671+

deviceIdentityState.cachedToken = {

672+

token: "cached-operator-token",

673+

role: "operator",

674+

scopes: ["operator.read"],

675+

updatedAtMs: 1,

676+

};

677+

gatewayClientState.startMode = "hello";

678+

gatewayClientState.options = null;

679+680+

const success = await runLightweightProbe(url);

681+682+

expect(success.ok).toBe(true);

683+

expect(lastGatewayClientOptions()?.url).toBe(url);

684+

expect(lastGatewayClientOptions()?.deviceIdentity).toEqual(deviceIdentityState.value);

685+686+

setDeviceRequiredProbeMode();

687+

gatewayClientState.options = null;

688+

const afterSuccess = await runLightweightProbe(url);

689+690+

expect(afterSuccess.close).toEqual({ code: 1008, reason: "device identity required" });

691+

expect(afterSuccess.close?.hint).toBeUndefined();

692+

expect(lastGatewayClientOptions()?.url).toBe(url);

693+

});

694+695+

it("does not short-circuit explicit-auth probes after unauthenticated failures", async () => {

696+

setDeviceRequiredProbeMode();

697+

const url = nextProbeUrl("explicit-auth-device-required");

698+699+

for (let i = 0; i < 3; i += 1) {

700+

await runLightweightProbe(url);

701+

}

702+703+

gatewayClientState.startMode = "hello";

704+

gatewayClientState.helloAuth = {};

705+

gatewayClientState.options = null;

706+707+

const result = await probeGateway({

708+

url,

709+

auth: { token: "explicit-token" },

710+

timeoutMs: 1_000,

711+

includeDetails: false,

712+

});

713+714+

expect(result.ok).toBe(true);

715+

expectProbeAuthFields(result, { capability: "connected_no_operator_scope" });

716+

expect(lastGatewayClientOptions()?.url).toBe(url);

717+

expect(lastGatewayClientOptions()?.token).toBe("explicit-token");

718+

expect(lastGatewayClientOptions()?.deviceIdentity).toBeNull();

719+

});

539720

});